Skip to content

Instantly share code, notes, and snippets.

@jalapic
Last active March 6, 2016 20:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jalapic/e39d109a33295fb4152b to your computer and use it in GitHub Desktop.
Save jalapic/e39d109a33295fb4152b to your computer and use it in GitHub Desktop.
small multiple lines
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 14px sans-serif;
}
.axis path,
.axis line {
fill: none;
stroke: #e5e5e5;
shape-rendering: crispEdges;
}
.axis path {
display: none;
}
.line {
fill: none;
stroke-width: 1px;
opacity: 1;
}
</style>
<body>
<p> Work in Progress !!!!!</p>
<div style="width: 1800px; padding-left: 0.75cm">
<div class="container" id="chart-a" style="float: left; width: 360px; height: 500px;margin-top: 25px;"><h2 style="text-align: center;padding-left: 70px;">Cohort A</h2></div>
<div class="container" id="chart-b" style="float: left; width: 360px; height: 500px;margin-top: 25px;"><h2 style="text-align: center;padding-left: 70px;">Cohort B</h2></div>
<div class="container" id="chart-c" style="float: left; width: 360px; height: 500px;margin-top: 25px;"><h2 style="text-align: center;padding-left: 70px;">Cohort C</h2></div>
<div class="container" id="chart-d" style="float: left; width: 360px; height: 500px;margin-top: 25px;"><h2 style="text-align: center;padding-left: 70px;">Cohort D</h2></div>
<div class="container" id="chart-e" style="float: left; width: 360px; height: 500px;margin-top: 25px;"><h2 style="text-align: center;padding-left: 70px;">Cohort E</h2></div>
</div>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var margin1 = {top: 60, right: 80, bottom: 60, left: 80},
width1 = 360,
height1 = 410 - margin1.top - margin1.bottom;
var y = d3.scale.linear()
.range([height1, 0])
.domain([1500,3000]);
var color = d3.scale.ordinal() .range(["#910727","#CF1D1D", "#D93B2A", "#E35938", "#ED7746", "#F4AA64", "#F1C075", "#EED585","#EBEB96", "#E6E7A9","#E1E3BC", "#DDE0D0"])
.domain(["A","B","C","D","E","F","G","H","I","J","K","L"]);
var idsnos = [1,2,3,4,5,6,7,8,9,10,11,12];
var x = d3.scale.linear()
.range([0, width1-margin1.right*1.3])
.domain([0, 100]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom")
.ticks(2)
.tickFormat(function(d) { return parseInt(d, 10) + "%"; });
var yAxis = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(5)
.tickSize(-width1, 0, 0);
var yAxisnotext = d3.svg.axis()
.scale(y)
.orient("left")
.ticks(5)
.tickSize(-width1, 0, 0)
.tickFormat("");
var line = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.eventtime); })
.y(function(d) { return y(d.code); });
var svga = d3.select("body").select("div#chart-a").append("svg")
.attr("width", width1)
.attr("height", height1 + margin1.top + margin1.bottom)
.append("g")
.attr("transform", "translate(" + margin1.left + "," + margin1.top + ")");
var svgb = d3.select("body").select("div#chart-b").append("svg")
.attr("width", width1)
.attr("height", height1 + margin1.top + margin1.bottom)
.append("g")
.attr("transform", "translate(" + margin1.left + "," + margin1.top + ")");
var svgc = d3.select("body").select("div#chart-c").append("svg")
.attr("width", width1)
.attr("height", height1 + margin1.top + margin1.bottom)
.append("g")
.attr("transform", "translate(" + margin1.left + "," + margin1.top + ")");
var svgd = d3.select("body").select("div#chart-d").append("svg")
.attr("width", width1)
.attr("height", height1 + margin1.top + margin1.bottom)
.append("g")
.attr("transform", "translate(" + margin1.left + "," + margin1.top + ")");
var svge = d3.select("body").select("div#chart-e").append("svg")
.attr("width", width1)
.attr("height", height1 + margin1.top + margin1.bottom)
.append("g")
.attr("transform", "translate(" + margin1.left + "," + margin1.top + ")");
// Cohort A
d3.csv("ratesA2.txt", function(error, data) {
if (error) throw error;
data.forEach(function (d,i) {
d.eventtime = +d.eventtime;
d.A = +d.A;
d.B = +d.B;
d.C = +d.C;
d.D = +d.D;
d.E = +d.E;
d.F = +d.F;
d.G = +d.G;
d.H = +d.H;
d.I = +d.I;
d.J = +d.J;
d.K = +d.K;
d.L = +d.L;
})
var keys = d3.keys(data[0]).filter(function(key) { return key !== "eventtime"; });
var cohortLines = keys.map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {
eventtime: d.eventtime,
code: d[name]};
})
};
});
//Append axes
svga.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height1 + ")")
.call(xAxis);
svga.append("g")
.attr("class", "y axis")
.call(yAxis);
var linethis = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.eventtime); })
.y(function(d) { return y(d.code); });
//Append the lines
var lines = svga.selectAll(".lines")
.data(cohortLines)
.enter().append("g")
;
//Actual full opacity thin line
lines.append("path")
.attr("class", "line")
.classed("mainline", true)
.attr("d", function(d) { return linethis(d.values); })
.style("stroke", function(d) { return color(d.name); })
.style("stroke-width", 1.5);
// Fading and Selecting Lines
doHover();
// Y-axis label
d3.select("body").select("div#chart-a").select("svg").append("text")
.attr("text-anchor", "middle")
.attr("font-size", "18px")
.attr("transform", "translate("
+ (margin1.left/3) +","
+((height1 + margin1.top + margin1.bottom)/2)+")rotate(-90)")
.text("Glicko Rating");
});
// Cohort B
d3.csv("ratesB2.txt", function(error, data) {
if (error) throw error;
data.forEach(function (d,i) {
d.eventtime = +d.eventtime;
d.A = +d.A;
d.B = +d.B;
d.C = +d.C;
d.D = +d.D;
d.E = +d.E;
d.F = +d.F;
d.G = +d.G;
d.H = +d.H;
d.I = +d.I;
d.J = +d.J;
d.K = +d.K;
d.L = +d.L;
})
var keys = d3.keys(data[0]).filter(function(key) { return key !== "eventtime"; });
var cohortLines = keys.map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {
eventtime: d.eventtime,
code: d[name]};
})
};
});
svgb.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height1 + ")")
.call(xAxis);
svgb.append("g")
.attr("class", "y axis")
.call(yAxisnotext);
var linethis = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.eventtime); })
.y(function(d) { return y(d.code); });
//Append the lines
var lines = svgb.selectAll(".lines")
.data(cohortLines)
.enter().append("g")
;
//Actual full opacity thin line
lines.append("path")
.attr("class", "line")
.classed("mainline", true)
.attr("d", function(d) { return linethis(d.values); })
.style("stroke", function(d) { return color(d.name); })
.style("stroke-width", 1.5);
// Fading and Selecting Lines
doHover();
});
// Cohort C
d3.csv("ratesC2.txt", function(error, data) {
if (error) throw error;
data.forEach(function (d,i) {
d.eventtime = +d.eventtime;
d.A = +d.A;
d.B = +d.B;
d.C = +d.C;
d.D = +d.D;
d.E = +d.E;
d.F = +d.F;
d.G = +d.G;
d.H = +d.H;
d.I = +d.I;
d.J = +d.J;
d.K = +d.K;
d.L = +d.L;
})
var keys = d3.keys(data[0]).filter(function(key) { return key !== "eventtime"; });
var cohortLines = keys.map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {
eventtime: d.eventtime,
code: d[name]};
})
};
});
//Append axes
svgc.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height1 + ")")
.call(xAxis);
svgc.append("g")
.attr("class", "y axis")
.call(yAxisnotext);
var linethis = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.eventtime); })
.y(function(d) { return y(d.code); });
//Append the lines
var lines = svgc.selectAll(".lines")
.data(cohortLines)
.enter().append("g")
;
//Actual full opacity thin line
lines.append("path")
.attr("class", "line")
.classed("mainline", true)
.attr("d", function(d) { return linethis(d.values); })
.style("stroke", function(d) { return color(d.name); })
.style("stroke-width", 1.5);
// Fading and Selecting Lines
doHover();
});
// Cohort D
d3.csv("ratesD2.txt", function(error, data) {
if (error) throw error;
data.forEach(function (d,i) {
d.eventtime = +d.eventtime;
d.A = +d.A;
d.B = +d.B;
d.C = +d.C;
d.D = +d.D;
d.E = +d.E;
d.F = +d.F;
d.G = +d.G;
d.H = +d.H;
d.I = +d.I;
d.J = +d.J;
d.K = +d.K;
d.L = +d.L;
})
var keys = d3.keys(data[0]).filter(function(key) { return key !== "eventtime"; });
var cohortLines = keys.map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {
eventtime: d.eventtime,
code: d[name]};
})
};
});
//Append axes
svgd.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height1 + ")")
.call(xAxis);
svgd.append("g")
.attr("class", "y axis")
.call(yAxisnotext);
var linethis = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.eventtime); })
.y(function(d) { return y(d.code); });
//Append the lines
var lines = svgd.selectAll(".lines")
.data(cohortLines)
.enter().append("g")
;
//Actual full opacity thin line
lines.append("path")
.attr("class", "line")
.classed("mainline", true)
.attr("d", function(d) { return linethis(d.values); })
.style("stroke", function(d) { return color(d.name); })
.style("stroke-width", 1.5);
// Fading and Selecting Lines
doHover();
});
// Cohort E
d3.csv("ratesE2.txt", function(error, data) {
if (error) throw error;
data.forEach(function (d,i) {
d.eventtime = +d.eventtime;
d.A = +d.A;
d.B = +d.B;
d.C = +d.C;
d.D = +d.D;
d.E = +d.E;
d.F = +d.F;
d.G = +d.G;
d.H = +d.H;
d.I = +d.I;
d.J = +d.J;
d.K = +d.K;
d.L = +d.L;
})
var keys = d3.keys(data[0]).filter(function(key) { return key !== "eventtime"; });
var cohortLines = keys.map(function(name) {
return {
name: name,
values: data.map(function(d) {
return {
eventtime: d.eventtime,
code: d[name]};
})
};
});
//Append axes
svge.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + height1 + ")")
.call(xAxis);
svge.append("g")
.attr("class", "y axis")
.call(yAxisnotext);
var linethis = d3.svg.line()
.interpolate("basis")
.x(function(d) { return x(d.eventtime); })
.y(function(d) { return y(d.code); });
//Append the lines
var lines = svge.selectAll(".lines")
.data(cohortLines)
.enter().append("g")
;
//Actual full opacity thin line
lines.append("path")
.attr("class", "line")
.classed("mainline", true)
.attr("d", function(d) { return linethis(d.values); })
.style("stroke", function(d) { return color(d.name); })
.style("stroke-width", 1.5);
// Fading and Selecting Lines
doHover();
});
// Function
function doHover() {
d3.selectAll('path.line')//register this to all paths
.on("mouseover", function(d,i) {
//first make all lines vanish
d3.selectAll('path.line')
.style("opacity", 0.2)
.style("stroke-width", 1)
//only show lines which have same name.
d3.selectAll('path.line').filter(function(d1) {
return d.name == d1.name
})
.style("opacity", 1)
.style("stroke-width", 2.5);
d3.select("div#chart-a.container svg")
.append("text")
.attr("id", "cohorttext")
.text("" + d.name +"-" + idsnos[i%idsnos.length])
.attr("x", (width1-margin1.right/2))
.attr("y", margin1.top/2)
.style("fill", color(d.name))
.style("font-weight", "bold")
.style("font-size", "18px");
d3.select("div#chart-b.container svg")
.append("text")
.attr("id", "cohorttext")
.text("" + d.name +"-" + idsnos[i%idsnos.length])
.attr("x", (width1-margin1.right/2))
.attr("y", margin1.top/2)
.style("fill", color(d.name))
.style("font-weight", "bold")
.style("font-size", "18px");
d3.select("div#chart-c.container svg")
.append("text")
.attr("id", "cohorttext")
.text("" + d.name +"-" + idsnos[i%idsnos.length])
.attr("x", (width1-margin1.right/2))
.attr("y", margin1.top/2)
.style("fill", color(d.name))
.style("font-weight", "bold")
.style("font-size", "18px");
d3.select("div#chart-d.container svg")
.append("text")
.attr("id", "cohorttext")
.text("" + d.name +"-" + idsnos[i%idsnos.length])
.attr("x", (width1-margin1.right/2))
.attr("y", margin1.top/2)
.style("fill", color(d.name))
.style("font-weight", "bold")
.style("font-size", "18px");
d3.select("div#chart-e.container svg")
.append("text")
.attr("id", "cohorttext")
.text("" + d.name +"-" + idsnos[i%idsnos.length])
.attr("x", (width1-margin1.right/2))
.attr("y", margin1.top/2)
.style("fill", color(d.name))
.style("font-weight", "bold")
.style("font-size", "18px");
})
.on("mouseout", function() {
d3.selectAll('path.line')
.style("opacity", 1)
.style("stroke-width", 1.5);
d3.selectAll("#cohorttext").remove()
// d3.selectAll("#cohorttextx").remove()
})
}
</script>
"eventtime","A","B","C","D","E","F","G","H","I","J","K","L"
0.0914913083257091,2200,2200,2200,2200,2200,2200,2200,2200,2200,2200,2200,2200
0.182982616651418,2200,2200,2200,2200,2200,2200,2200,2200,2200,2200,2200,2200
0.274473924977127,2290.26491005599,2200,2200,2200,2200,2200,2200,2200,2088.10710947312,2200,2200,2200
0.365965233302836,2348.7793392855,2200,2200,2200,2200,2200,2200,2200,2088.10710947312,2200,2200,2086.18759804321
0.457456541628545,2329.76220184469,2200,2200,2200,2253.07841852412,2200,2200,2200,2088.10710947312,2200,2200,2086.18759804321
0.548947849954254,2379.26465518258,2200,2200,2200,2162.90236804142,2200,2200,2200,2088.10710947312,2200,2200,2086.18759804321
0.640439158279963,2379.26465518258,2200,2200,2200,2091.43841338108,2200,2200,2200,2088.10710947312,2200,2329.90352666228,2086.18759804321
0.731930466605673,2379.26465518258,2200,2200,2200,2054.15119715168,2200,2200,2200,2088.10710947312,2200,2384.8570173223,2086.18759804321
0.823421774931381,2379.26465518258,2200,2200,2200,2099.73657872209,2200,2200,2200,2088.10710947312,2200,2315.69953494174,2086.18759804321
0.914913083257091,2379.26465518258,2200,2200,2200,2129.94180732565,2200,2200,2200,2088.10710947312,2200,2272.80025545155,2086.18759804321
1.0064043915828,2379.26465518258,2200,2200,2200,2149.17701917779,2200,2200,2200,2088.10710947312,2200,2247.18467623593,2086.18759804321
1.09789569990851,2379.26465518258,2200,2200,2200,2149.17701917779,2200,2200,2200,2088.10710947312,2071.97270516479,2294.94911367956,2086.18759804321
1.18938700823422,2379.26465518258,2200,2200,2200,2167.67495772824,2200,2200,2200,2088.10710947312,2071.97270516479,2274.20018311556,2086.18759804321
1.28087831655993,2379.26465518258,2200,2200,2200,2167.67495772824,2200,2200,2021.36430515545,2088.10710947312,2071.97270516479,2274.20018311556,2209.67040000098
1.37236962488564,2379.26465518258,2061.66635954061,2200,2200,2167.67495772824,2200,2200,2021.36430515545,2088.10710947312,2071.97270516479,2274.20018311556,2290.87738414349
1.46386093321135,2379.26465518258,2061.66635954061,2200,2200,2167.67495772824,2080.58355223927,2200,2021.36430515545,2088.10710947312,2071.97270516479,2309.92481783459,2290.87738414349
1.55535224153705,2379.26465518258,2061.66635954061,2200,2200,2167.67495772824,2080.58355223927,2200,2105.16903527197,2088.10710947312,2071.97270516479,2285.52125191634,2290.87738414349
1.64684354986276,2364.8427623049,2061.66635954061,2200,2200,2167.67495772824,2080.58355223927,2200,2105.16903527197,2088.10710947312,2071.97270516479,2295.72790190332,2290.87738414349
1.73833485818847,2364.8427623049,2061.66635954061,2200,2200,2167.67495772824,2080.58355223927,2200,2105.16903527197,2088.10710947312,2016.82448783613,2314.93245558805,2290.87738414349
1.82982616651418,2364.8427623049,2135.49318018658,2200,2200,2167.67495772824,2080.58355223927,2200,2105.16903527197,2088.10710947312,2016.82448783613,2297.24125045476,2290.87738414349
1.92131747483989,2364.8427623049,2129.27352867624,2200,2200,2167.67495772824,2080.58355223927,2200,2111.82521495485,2088.10710947312,2016.82448783613,2297.24125045476,2290.87738414349
2.0128087831656,2364.8427623049,2129.27352867624,2087.9770295545,2200,2167.67495772824,2080.58355223927,2200,2111.82521495485,2088.10710947312,2016.82448783613,2320.78927302177,2290.87738414349
2.10430009149131,2364.8427623049,2129.27352867624,2087.9770295545,2200,2167.67495772824,2080.58355223927,2200,2111.82521495485,2088.10710947312,1983.63996015812,2332.98414795174,2290.87738414349
2.19579139981702,2364.8427623049,2129.27352867624,2087.9770295545,2121.32317363908,2167.67495772824,2080.58355223927,2200,2111.82521495485,2088.10710947312,1983.63996015812,2353.25215441159,2290.87738414349
2.28728270814273,2364.8427623049,2129.27352867624,2087.9770295545,2121.32317363908,2167.67495772824,2080.58355223927,2200,2074.00881563996,2088.10710947312,1983.63996015812,2367.06993317598,2290.87738414349
2.37877401646844,2364.8427623049,2177.96447112226,2087.9770295545,2121.32317363908,2167.67495772824,2080.58355223927,2200,2074.00881563996,2088.10710947312,1983.63996015812,2352.33008340336,2290.87738414349
2.47026532479414,2364.8427623049,2137.6987274806,2087.9770295545,2121.32317363908,2167.67495772824,2080.58355223927,2200,2074.00881563996,2088.10710947312,1983.63996015812,2368.27552137,2290.87738414349
2.56175663311985,2364.8427623049,2137.6987274806,2087.9770295545,2080.20459401825,2167.67495772824,2080.58355223927,2200,2074.00881563996,2088.10710947312,1983.63996015812,2379.9021790043,2290.87738414349
2.65324794144556,2364.8427623049,2137.6987274806,2087.9770295545,2080.20459401825,2202.83767165302,2080.58355223927,2200,2074.00881563996,2012.15007728694,1983.63996015812,2379.9021790043,2290.87738414349
2.74473924977127,2364.8427623049,2137.6987274806,2087.9770295545,2080.20459401825,2223.89553617517,2080.58355223927,2200,2074.00881563996,2012.15007728694,1943.5121568155,2379.9021790043,2290.87738414349
2.83623055809698,2364.8427623049,2137.6987274806,2087.9770295545,2080.20459401825,2223.89553617517,2080.58355223927,2200,2048.91761168151,2012.15007728694,1943.5121568155,2388.80940735955,2290.87738414349
2.92772186642269,2364.8427623049,2137.6987274806,2087.9770295545,2080.20459401825,2223.89553617517,2080.58355223927,2115.11054943246,2048.91761168151,2012.15007728694,1943.5121568155,2401.38912229046,2290.87738414349
3.0192131747484,2364.8427623049,2137.6987274806,2087.9770295545,2155.8991720873,2223.89553617517,2080.58355223927,1998.64815457387,2048.91761168151,2012.15007728694,1943.5121568155,2401.38912229046,2290.87738414349
3.11070448307411,2364.8427623049,2137.6987274806,2087.9770295545,2155.8991720873,2244.0138487698,2080.58355223927,1998.64815457387,2048.91761168151,1972.23184531866,1943.5121568155,2401.38912229046,2290.87738414349
3.20219579139982,2364.8427623049,2184.31401263864,2087.9770295545,2155.8991720873,2244.0138487698,1989.43958487397,1998.64815457387,2048.91761168151,1972.23184531866,1943.5121568155,2401.38912229046,2290.87738414349
3.29368709972553,2364.8427623049,2184.31401263864,2087.9770295545,2155.8991720873,2244.0138487698,2062.95547257095,1998.64815457387,2048.91761168151,1972.23184531866,1885.73133149212,2401.38912229046,2290.87738414349
3.38517840805124,2364.8427623049,2184.31401263864,2087.9770295545,2155.8991720873,2244.0138487698,2204.11247996012,1998.64815457387,2048.91761168151,1972.23184531866,1885.73133149212,2361.88198674134,2290.87738414349
3.47666971637694,2364.8427623049,2184.31401263864,2000.69101545133,2207.57168768404,2244.0138487698,2204.11247996012,1998.64815457387,2048.91761168151,1972.23184531866,1885.73133149212,2361.88198674134,2290.87738414349
3.56816102470265,2364.8427623049,2247.40599730282,2000.69101545133,2207.57168768404,2244.0138487698,2204.11247996012,1998.64815457387,2048.91761168151,1972.23184531866,1885.73133149212,2361.88198674134,2185.66663500654
3.65965233302836,2364.8427623049,2288.64906609751,2000.69101545133,2207.57168768404,2244.0138487698,2146.64649785678,1998.64815457387,2048.91761168151,1972.23184531866,1885.73133149212,2361.88198674134,2185.66663500654
3.75114364135407,2406.68815677651,2254.40909309379,2000.69101545133,2207.57168768404,2244.0138487698,2146.64649785678,1998.64815457387,2048.91761168151,1972.23184531866,1885.73133149212,2361.88198674134,2185.66663500654
3.84263494967978,2406.68815677651,2264.95518313309,2000.69101545133,2207.57168768404,2244.0138487698,2146.64649785678,1998.64815457387,2048.91761168151,1972.23184531866,1869.42847000844,2361.88198674134,2185.66663500654
3.93412625800549,2406.68815677651,2300.47979314257,2000.69101545133,2207.57168768404,2208.23901312128,2146.64649785678,1998.64815457387,2048.91761168151,1972.23184531866,1869.42847000844,2361.88198674134,2185.66663500654
4.0256175663312,2416.3059566272,2300.47979314257,2000.69101545133,2207.57168768404,2208.23901312128,2146.64649785678,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2185.66663500654
4.11710887465691,2416.3059566272,2300.47979314257,2000.69101545133,2267.81348350609,2175.00800909546,2146.64649785678,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2185.66663500654
4.20860018298262,2416.3059566272,2323.98282271577,2000.69101545133,2267.81348350609,2175.00800909546,2146.64649785678,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2135.73868976405
4.30009149130833,2416.3059566272,2323.98282271577,2000.69101545133,2267.81348350609,2175.00800909546,2199.71242560772,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2079.36333377923
4.39158279963404,2416.3059566272,2334.46438356294,1971.62723716272,2267.81348350609,2175.00800909546,2199.71242560772,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2079.36333377923
4.48307410795974,2416.3059566272,2353.14081358253,1971.62723716272,2267.81348350609,2155.63309895166,2199.71242560772,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2079.36333377923
4.57456541628545,2416.3059566272,2353.14081358253,1971.62723716272,2267.81348350609,2179.01371295896,2199.71242560772,1998.64815457387,2048.91761168151,1958.28355985814,1869.42847000844,2361.88198674134,2037.30177104851
4.66605672461116,2416.3059566272,2353.14081358253,1971.62723716272,2267.81348350609,2179.01371295896,2199.71242560772,1998.64815457387,2048.91761168151,2006.86347685872,1826.67300733185,2361.88198674134,2037.30177104851
4.75754803293687,2428.56627713572,2353.14081358253,1971.62723716272,2267.81348350609,2179.01371295896,2199.71242560772,1998.64815457387,2031.09720970782,2006.86347685872,1826.67300733185,2361.88198674134,2037.30177104851
4.84903934126258,2438.76100326391,2353.14081358253,1971.62723716272,2267.81348350609,2179.01371295896,2199.71242560772,1998.64815457387,2031.09720970782,2006.86347685872,1826.67300733185,2361.88198674134,2026.36041594219
4.94053064958829,2438.76100326391,2353.14081358253,1971.62723716272,2277.94938919229,2179.01371295896,2199.71242560772,1998.64815457387,2031.09720970782,2006.86347685872,1816.81590003524,2361.88198674134,2026.36041594219
5.032021957914,2438.76100326391,2353.14081358253,1971.62723716272,2297.9573096199,2179.01371295896,2199.71242560772,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2361.88198674134,2026.36041594219
5.12351326623971,2438.76100326391,2353.14081358253,1971.62723716272,2332.00257355705,2179.01371295896,2162.73235253187,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2361.88198674134,2026.36041594219
5.21500457456542,2438.76100326391,2353.14081358253,1971.62723716272,2377.82374831,2179.01371295896,2162.73235253187,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2336.1771727235,2026.36041594219
5.30649588289113,2438.76100326391,2353.14081358253,1971.62723716272,2411.55937709711,2179.01371295896,2162.73235253187,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2316.0761106826,2026.36041594219
5.39798719121683,2438.76100326391,2353.14081358253,1971.62723716272,2437.37037252055,2179.01371295896,2162.73235253187,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2299.95218934472,2026.36041594219
5.48947849954254,2438.76100326391,2353.14081358253,1971.62723716272,2457.86465274305,2179.01371295896,2162.73235253187,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2286.6673017207,2026.36041594219
5.58096980786825,2438.76100326391,2353.14081358253,1971.62723716272,2474.65431306645,2179.01371295896,2162.73235253187,1998.64815457387,2031.09720970782,1984.33724951478,1816.81590003524,2275.45889030283,2026.36041594219
5.67246111619396,2438.76100326391,2353.14081358253,1971.62723716272,2425.6125513187,2179.01371295896,2162.73235253187,1998.64815457387,2158.62176578779,1984.33724951478,1816.81590003524,2275.45889030283,2026.36041594219
5.76395242451967,2438.76100326391,2353.14081358253,1971.62723716272,2442.30808472965,2179.01371295896,2162.73235253187,1998.64815457387,2158.62176578779,1984.33724951478,1816.81590003524,2263.79309643192,2026.36041594219
5.85544373284538,2438.76100326391,2353.14081358253,1971.62723716272,2456.39347788644,2179.01371295896,2162.73235253187,1998.64815457387,2158.62176578779,1984.33724951478,1816.81590003524,2253.74254288591,2026.36041594219
5.94693504117109,2438.76100326391,2353.14081358253,1971.62723716272,2418.19623719109,2179.01371295896,2162.73235253187,1998.64815457387,2264.65372929267,1984.33724951478,1816.81590003524,2253.74254288591,2026.36041594219
6.0384263494968,2438.76100326391,2353.14081358253,1971.62723716272,2431.83147342171,2179.01371295896,2162.73235253187,1998.64815457387,2264.65372929267,1984.33724951478,1816.81590003524,2243.50318266093,2026.36041594219
6.12991765782251,2438.76100326391,2353.14081358253,1971.62723716272,2433.54246962816,2179.01371295896,2162.73235253187,1998.64815457387,2264.65372929267,1984.33724951478,1813.16611319964,2243.50318266093,2026.36041594219
6.22140896614822,2380.61240394745,2353.14081358253,1971.62723716272,2433.54246962816,2179.01371295896,2162.73235253187,1998.64815457387,2342.07471608672,1984.33724951478,1813.16611319964,2243.50318266093,2026.36041594219
6.31290027447393,2380.61240394745,2353.14081358253,1971.62723716272,2428.56171369635,2179.01371295896,2162.73235253187,1998.64815457387,2354.21669801506,1984.33724951478,1813.16611319964,2243.50318266093,2026.36041594219
6.40439158279963,2389.41153244797,2353.14081358253,1953.65076990438,2428.56171369635,2179.01371295896,2162.73235253187,1998.64815457387,2354.21669801506,1984.33724951478,1813.16611319964,2243.50318266093,2026.36041594219
6.49588289112534,2396.89801279888,2353.14081358253,1939.02731254999,2428.56171369635,2179.01371295896,2162.73235253187,1998.64815457387,2354.21669801506,1984.33724951478,1813.16611319964,2243.50318266093,2026.36041594219
6.58737419945105,2403.41453579941,2353.14081358253,1926.73758153171,2428.56171369635,2179.01371295896,2162.73235253187,1998.64815457387,2354.21669801506,1984.33724951478,1813.16611319964,2243.50318266093,2026.36041594219
6.67886550777676,2403.41453579941,2353.14081358253,1926.73758153171,2439.88685571719,2179.01371295896,2162.73235253187,1998.64815457387,2354.21669801506,1984.33724951478,1813.16611319964,2234.32546780849,2026.36041594219
6.77035681610247,2403.41453579941,2353.14081358253,1926.73758153171,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2354.21669801506,1984.33724951478,1813.16611319964,2226.16864821012,2026.36041594219
6.86184812442818,2403.41453579941,2353.14081358253,1926.73758153171,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2383.34382770712,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
6.95333943275389,2409.19651289162,2353.14081358253,1916.14932956412,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2383.34382770712,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.0448307410796,2373.04301292182,2353.14081358253,1916.14932956412,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2424.43911634593,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.13632204940531,2373.04301292182,2329.19314894025,1916.14932956412,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2452.9084669247,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.22781335773102,2379.75218754641,2329.19314894025,1916.14932956412,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.31930466605672,2384.74830542743,2329.19314894025,1905.59974416258,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.41079597438243,2389.26642461191,2329.19314894025,1896.3200145187,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.50228728270814,2412.86459619129,2305.87920405265,1896.3200145187,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.59377859103385,2431.75557165548,2287.19675317974,1896.3200145187,2449.85732780529,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2215.7231307554,2026.36041594219
7.68526989935956,2431.75557165548,2287.19675317974,1896.3200145187,2458.44036040025,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2208.87456356422,2026.36041594219
7.77676120768527,2447.30615158544,2271.80519897977,1896.3200145187,2458.44036040025,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2208.87456356422,2026.36041594219
7.86825251601098,2460.39716064413,2258.83956046938,1896.3200145187,2458.44036040025,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2208.87456356422,2026.36041594219
7.95974382433669,2448.90876971933,2270.21695678433,1896.3200145187,2458.44036040025,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1984.33724951478,1813.16611319964,2208.87456356422,2026.36041594219
8.0512351326624,2448.90876971933,2270.21695678433,1896.3200145187,2461.35397409551,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1976.35640837848,1813.16611319964,2208.87456356422,2026.36041594219
8.14272644098811,2471.20728339769,2270.21695678433,1896.3200145187,2441.92532626407,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1976.35640837848,1813.16611319964,2208.87456356422,2026.36041594219
8.23421774931382,2489.9436753996,2270.21695678433,1896.3200145187,2425.45694709126,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1976.35640837848,1813.16611319964,2208.87456356422,2026.36041594219
8.32570905763952,2479.3544912276,2282.07391202684,1896.3200145187,2425.45694709126,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1976.35640837848,1813.16611319964,2208.87456356422,2026.36041594219
8.41720036596523,2480.44399390533,2282.07391202684,1896.3200145187,2425.45694709126,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1976.35640837848,1810.45372357946,2208.87456356422,2026.36041594219
8.50869167429094,2480.44399390533,2282.07391202684,1896.3200145187,2433.49964419233,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1976.35640837848,1810.45372357946,2201.61428446881,2026.36041594219
8.60018298261665,2480.44399390533,2282.07391202684,1896.3200145187,2436.22353095665,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1968.05061993232,1810.45372357946,2201.61428446881,2026.36041594219
8.69167429094236,2480.44399390533,2282.07391202684,1896.3200145187,2438.76707447083,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1960.51498745105,1810.45372357946,2201.61428446881,2026.36041594219
8.78316559926807,2496.98092154546,2282.07391202684,1896.3200145187,2424.34714983205,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1960.51498745105,1810.45372357946,2201.61428446881,2026.36041594219
8.87465690759378,2511.25760215113,2282.07391202684,1896.3200145187,2411.80686019908,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1960.51498745105,1810.45372357946,2201.61428446881,2026.36041594219
8.96614821591949,2513.65296741486,2282.07391202684,1896.3200145187,2411.80686019908,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1960.51498745105,1810.45372357946,2201.61428446881,2019.98091645359
9.0576395242452,2514.46014873119,2282.07391202684,1896.3200145187,2411.80686019908,2179.01371295896,2162.73235253187,1998.64815457387,2446.04707238819,1960.51498745105,1808.27728506507,2201.61428446881,2019.98091645359
9.14913083257091,2518.87417171987,2282.07391202684,1896.3200145187,2411.80686019908,2179.01371295896,2150.33151513912,1998.64815457387,2446.04707238819,1960.51498745105,1808.27728506507,2201.61428446881,2019.98091645359
9.24062214089662,2518.87417171987,2282.07391202684,1896.3200145187,2414.31539895459,2179.01371295896,2150.33151513912,1998.64815457387,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.33211344922232,2530.7638941806,2282.07391202684,1896.3200145187,2403.54829975301,2179.01371295896,2150.33151513912,1998.64815457387,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.42360475754803,2532.81095743862,2282.07391202684,1896.3200145187,2403.54829975301,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.51509606587374,2543.18256056894,2282.07391202684,1896.3200145187,2394.02883144339,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.60658737419945,2552.45978302496,2282.07391202684,1896.3200145187,2385.48393197892,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.69807868252516,2557.87237179115,2274.30677825001,1896.3200145187,2385.48393197892,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.78956999085087,2562.85926483483,2267.23275261123,1896.3200145187,2385.48393197892,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.88106129917658,2570.54766598176,2267.23275261123,1896.3200145187,2378.03921915226,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
9.97255260750229,2571.33614141259,2267.23275261123,1893.23824920566,2378.03921915226,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
10.064043915828,2578.32004913474,2267.23275261123,1893.23824920566,2371.24290787591,2179.01371295896,2150.33151513912,1987.36158997052,2446.04707238819,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
10.1555352241537,2586.83219631021,2267.23275261123,1893.23824920566,2371.24290787591,2179.01371295896,2150.33151513912,1987.36158997052,2425.72300029701,1952.63169311897,1808.27728506507,2201.61428446881,2019.98091645359
10.2470265324794,2586.83219631021,2267.23275261123,1893.23824920566,2378.53490641582,2179.01371295896,2150.33151513912,1987.36158997052,2425.72300029701,1952.63169311897,1808.27728506507,2192.82398785924,2019.98091645359
10.3385178408051,2593.0474556881,2267.23275261123,1893.23824920566,2372.47098287192,2179.01371295896,2150.33151513912,1987.36158997052,2425.72300029701,1952.63169311897,1808.27728506507,2192.82398785924,2019.98091645359
10.4300091491308,2593.0474556881,2267.23275261123,1893.23824920566,2372.47098287192,2179.01371295896,2150.33151513912,1987.36158997052,2425.72300029701,1891.29124685746,1873.16999747996,2192.82398785924,2019.98091645359
10.5215004574565,2593.0474556881,2267.23275261123,1893.23824920566,2372.47098287192,2179.01371295896,2077.73581322213,1987.36158997052,2425.72300029701,1891.29124685746,1945.33099904756,2192.82398785924,2019.98091645359
10.6129917657823,2598.82554882015,2267.23275261123,1893.23824920566,2366.8290086034,2179.01371295896,2077.73581322213,1987.36158997052,2425.72300029701,1891.29124685746,1945.33099904756,2192.82398785924,2019.98091645359
10.704483074108,2598.82554882015,2267.23275261123,1893.23824920566,2380.55050376334,2179.01371295896,2077.73581322213,1987.36158997052,2391.71443737578,1891.29124685746,1945.33099904756,2192.82398785924,2019.98091645359
10.7959743824337,2600.2539124298,2267.23275261123,1893.23824920566,2380.55050376334,2179.01371295896,2073.04712338202,1987.36158997052,2391.71443737578,1891.29124685746,1945.33099904756,2192.82398785924,2019.98091645359
10.8874656907594,2600.2539124298,2267.23275261123,1893.23824920566,2386.3469187569,2163.88104636145,2073.04712338202,1987.36158997052,2391.71443737578,1891.29124685746,1945.33099904756,2192.82398785924,2019.98091645359
10.9789569990851,2600.97587345492,2267.23275261123,1893.23824920566,2386.3469187569,2163.88104636145,2073.04712338202,1987.36158997052,2391.71443737578,1891.29124685746,1943.0438379063,2192.82398785924,2019.98091645359
11.0704483074108,2606.75104399602,2267.23275261123,1893.23824920566,2380.94417136096,2163.88104636145,2073.04712338202,1987.36158997052,2391.71443737578,1891.29124685746,1943.0438379063,2192.82398785924,2019.98091645359
11.1619396157365,2607.31913740323,2267.23275261123,1890.79882447455,2380.94417136096,2163.88104636145,2073.04712338202,1987.36158997052,2391.71443737578,1891.29124685746,1943.0438379063,2192.82398785924,2019.98091645359
11.2534309240622,2607.31913740323,2267.23275261123,1890.79882447455,2380.94417136096,2163.88104636145,2073.04712338202,1987.36158997052,2391.71443737578,1937.95152101682,1897.98831381266,2192.82398785924,2019.98091645359
11.3449222323879,2607.31913740323,2267.23275261123,1890.79882447455,2380.94417136096,2163.88104636145,2019.06479366965,1987.36158997052,2391.71443737578,1988.35621412251,1897.98831381266,2192.82398785924,2019.98091645359
11.4364135407136,2609.53906626378,2267.23275261123,1890.79882447455,2380.94417136096,2163.88104636145,2019.06479366965,1987.36158997052,2391.71443737578,1988.35621412251,1897.98831381266,2190.01046388607,2019.98091645359
11.5279048490393,2611.68248592149,2267.23275261123,1890.79882447455,2380.94417136096,2163.88104636145,2019.06479366965,1987.36158997052,2391.71443737578,1988.35621412251,1897.98831381266,2187.30332415741,2019.98091645359
11.6193961573651,2612.67180133886,2267.23275261123,1890.79882447455,2380.94417136096,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2187.30332415741,2019.98091645359
11.7108874656908,2617.82574704434,2267.23275261123,1890.79882447455,2375.96796881123,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2187.30332415741,2019.98091645359
11.8023787740165,2619.78807123338,2267.23275261123,1890.79882447455,2375.96796881123,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2184.76899907751,2019.98091645359
11.8938700823422,2622.67912893012,2262.16181216411,1890.79882447455,2375.96796881123,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2184.76899907751,2019.98091645359
11.9853613906679,2623.16643726179,2262.16181216411,1888.62288008304,2375.96796881123,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2184.76899907751,2019.98091645359
12.0768526989936,2623.64560522044,2262.16181216411,1886.50333502847,2375.96796881123,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2184.76899907751,2019.98091645359
12.1683440073193,2625.48758310183,2262.16181216411,1886.50333502847,2375.96796881123,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1988.35621412251,1897.98831381266,2182.35832555519,2019.98091645359
12.259835315645,2625.48758310183,2262.16181216411,1886.50333502847,2378.43160370828,2163.88104636145,2019.06479366965,1980.81607546431,2391.71443737578,1980.61006489524,1897.98831381266,2182.35832555519,2019.98091645359
12.3513266239707,2625.48758310183,2262.16181216411,1886.50333502847,2380.96097987978,2163.88104636145,2019.06479366965,1961.15186404425,2391.71443737578,1980.61006489524,1897.98831381266,2182.35832555519,2019.98091645359
12.4428179322964,2625.48758310183,2262.16181216411,1886.50333502847,2386.53678815751,2163.88104636145,2019.06479366965,1961.15186404425,2391.71443737578,1980.61006489524,1897.98831381266,2174.92590984588,2019.98091645359
12.5343092406221,2625.48758310183,2262.16181216411,1886.50333502847,2391.70716577644,2163.88104636145,2019.06479366965,1961.15186404425,2391.71443737578,1980.61006489524,1897.98831381266,2168.09329456854,2019.98091645359
12.6258005489479,2625.48758310183,2262.16181216411,1886.50333502847,2393.77297671072,2163.88104636145,2019.06479366965,1945.8743796544,2391.71443737578,1980.61006489524,1897.98831381266,2168.09329456854,2019.98091645359
12.7172918572736,2625.48758310183,2262.16181216411,1886.50333502847,2395.65437279604,2163.88104636145,2019.06479366965,1932.86477191333,2391.71443737578,1980.61006489524,1897.98831381266,2168.09329456854,2019.98091645359
12.8087831655993,2625.48758310183,2262.16181216411,1886.50333502847,2397.65988552353,2163.88104636145,2019.06479366965,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
12.900274473925,2625.95850597301,2262.16181216411,1884.45111513517,2397.65988552353,2163.88104636145,2019.06479366965,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
12.9917657822507,2626.421983553,2262.16181216411,1882.44921263512,2397.65988552353,2163.88104636145,2019.06479366965,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.0832570905764,2626.87831160436,2262.16181216411,1880.49523993595,2397.65988552353,2163.88104636145,2019.06479366965,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.1747483989021,2629.58872372463,2257.42352026966,1880.49523993595,2397.65988552353,2163.88104636145,2019.06479366965,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.2662397072278,2629.58872372463,2257.42352026966,1880.49523993595,2397.65988552353,2125.16582061805,2070.9142739773,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.3577310155535,2629.58872372463,2257.42352026966,1880.49523993595,2397.65988552353,2094.85666581183,2110.33795384757,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.4492223238792,2629.58872372463,2257.42352026966,1880.49523993595,2397.65988552353,2071.05249161968,2140.51792067271,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.5407136322049,2629.58872372463,2257.42352026966,1873.9781423376,2398.96096771386,2071.05249161968,2140.51792067271,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.6322049405307,2629.58872372463,2244.99956362596,1873.9781423376,2405.59956128905,2071.05249161968,2140.51792067271,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.7236962488564,2632.04235447677,2240.97312959594,1873.9781423376,2405.59956128905,2071.05249161968,2140.51792067271,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.8151875571821,2632.04235447677,2245.55770161486,1860.50598008047,2405.59956128905,2071.05249161968,2140.51792067271,1932.86477191333,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.9066788655078,2632.04235447677,2251.32366950833,1860.50598008047,2405.59956128905,2071.05249161968,2140.51792067271,1909.70897806777,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
13.9981701738335,2632.42500302868,2251.32366950833,1859.00283681957,2405.59956128905,2071.05249161968,2140.51792067271,1909.70897806777,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.0896614821592,2634.90272368345,2247.46308565307,1859.00283681957,2405.59956128905,2071.05249161968,2140.51792067271,1909.70897806777,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.1811527904849,2634.90272368345,2247.46308565307,1859.00283681957,2405.59956128905,2071.05249161968,2153.68276718316,1880.25392420699,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.2726440988106,2637.2838709771,2243.78453506571,1859.00283681957,2405.59956128905,2071.05249161968,2153.68276718316,1880.25392420699,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.3641354071363,2638.24512445798,2243.78453506571,1859.00283681957,2405.59956128905,2069.01864645937,2153.68276718316,1880.25392420699,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.455626715462,2643.07698283261,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2153.68276718316,1880.25392420699,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.5471180237877,2643.47693775781,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2153.68276718316,1878.43316990205,2391.71443737578,1974.08754479228,1897.98831381266,2168.09329456854,2019.98091645359
14.6386093321134,2643.8681623349,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2153.68276718316,1878.43316990205,2391.71443737578,1974.08754479228,1896.73355238939,2168.09329456854,2019.98091645359
14.7301006404392,2644.63066389689,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2153.68276718316,1878.43316990205,2391.71443737578,1974.08754479228,1896.73355238939,2168.09329456854,2016.97952124292
14.8215919487649,2645.37542695938,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2153.68276718316,1878.43316990205,2391.71443737578,1974.08754479228,1896.73355238939,2168.09329456854,2014.08491464122
14.9130832570906,2645.37542695938,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1974.08754479228,1896.73355238939,2181.81081674819,2014.08491464122
15.0045745654163,2645.93992441095,2243.78453506571,1859.00283681957,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1896.73355238939,2181.81081674819,2014.08491464122
15.096065873742,2645.93992441095,2243.78453506571,1927.67851991898,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1896.73355238939,2181.81081674819,1954.3630713199
15.1875571820677,2647.49307562955,2243.78453506571,1927.67851991898,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1896.73355238939,2179.81701314034,1954.3630713199
15.2790484903934,2648.01236215895,2243.78453506571,1927.67851991898,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1896.73355238939,2179.81701314034,1952.55298352569
15.3705397987191,2648.38953095474,2243.78453506571,1927.67851991898,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1895.52143878849,2179.81701314034,1952.55298352569
15.4620311070448,2648.85120182889,2243.78453506571,1925.91606671506,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1895.52143878849,2179.81701314034,1952.55298352569
15.5535224153705,2648.85120182889,2248.4031082668,1925.91606671506,2401.02784723214,2069.01864645937,2126.37380511618,1878.43316990205,2391.71443737578,1972.42789042677,1885.45328639941,2179.81701314034,1952.55298352569
15.6450137236962,2648.85120182889,2248.4031082668,1925.91606671506,2401.02784723214,2069.01864645937,2142.13792749167,1878.43316990205,2391.71443737578,1952.1392953726,1885.45328639941,2179.81701314034,1952.55298352569
15.736505032022,2651.01010852637,2245.02041735715,1925.91606671506,2401.02784723214,2069.01864645937,2142.13792749167,1878.43316990205,2391.71443737578,1952.1392953726,1885.45328639941,2179.81701314034,1952.55298352569
15.8279963403477,2651.01010852637,2245.02041735715,1925.91606671506,2401.02784723214,2069.01864645937,2142.13792749167,1878.43316990205,2391.71443737578,1952.1392953726,1949.40485018578,2156.81757009914,1952.55298352569
15.9194876486734,2633.13745043626,2245.02041735715,1925.91606671506,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2391.71443737578,1952.1392953726,1949.40485018578,2156.81757009914,1952.55298352569
16.0109789569991,2637.59997625453,2245.02041735715,1925.91606671506,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2379.84807005169,1952.1392953726,1949.40485018578,2156.81757009914,1952.55298352569
16.1024702653248,2641.68959634367,2245.02041735715,1925.91606671506,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2369.35009443673,1952.1392953726,1949.40485018578,2156.81757009914,1952.55298352569
16.1939615736505,2645.46491141717,2245.02041735715,1925.91606671506,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1952.1392953726,1949.40485018578,2156.81757009914,1952.55298352569
16.2854528819762,2645.46491141717,2245.02041735715,1925.91606671506,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1952.1392953726,2003.486771138,2136.24104789624,1952.55298352569
16.3769441903019,2645.46491141717,2250.18876719355,1911.91816712688,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1952.1392953726,2003.486771138,2136.24104789624,1952.55298352569
16.4684354986276,2645.46491141717,2250.18876719355,1964.26006582797,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1952.1392953726,1965.07719786184,2136.24104789624,1952.55298352569
16.5599268069533,2645.46491141717,2250.18876719355,1964.26006582797,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1952.1392953726,2009.29382086136,2116.97167663864,1952.55298352569
16.651418115279,2647.5462523493,2246.81050193548,1964.26006582797,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1952.1392953726,2009.29382086136,2116.97167663864,1952.55298352569
16.7429094236048,2648.00422258155,2246.81050193548,1964.26006582797,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1950.79674466672,2009.29382086136,2116.97167663864,1952.55298352569
16.8344007319305,2648.00422258155,2246.81050193548,1964.26006582797,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2359.95634883187,1981.16077700534,2009.29382086136,2116.97167663864,1912.42289161482
16.9258920402562,2651.48438905176,2246.81050193548,1964.26006582797,2418.66519813888,2069.01864645937,2142.13792749167,1878.43316990205,2351.51367406618,1981.16077700534,2009.29382086136,2116.97167663864,1912.42289161482
17.0173833485819,2652.28060767134,2246.81050193548,1964.26006582797,2418.66519813888,2067.13112091369,2142.13792749167,1878.43316990205,2351.51367406618,1981.16077700534,2009.29382086136,2116.97167663864,1912.42289161482
17.1088746569076,2652.28060767134,2246.81050193548,1964.26006582797,2419.98672043107,2067.13112091369,2142.13792749167,1878.43316990205,2351.51367406618,1981.16077700534,2009.29382086136,2116.97167663864,1908.01084610334
17.2003659652333,2652.28060767134,2246.81050193548,1964.26006582797,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2351.51367406618,1981.16077700534,2009.29382086136,2116.97167663864,1903.82564599124
17.291857273559,2652.77069486948,2246.81050193548,1962.50605233775,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2351.51367406618,1981.16077700534,2009.29382086136,2116.97167663864,1903.82564599124
17.3833485818847,2653.25423352906,2246.81050193548,1960.78919244384,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2351.51367406618,1981.16077700534,2009.29382086136,2116.97167663864,1903.82564599124
17.4748398902104,2656.48816870926,2246.81050193548,1960.78919244384,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2343.84827045898,1981.16077700534,2009.29382086136,2116.97167663864,1903.82564599124
17.5663311985361,2656.8265764725,2246.81050193548,1960.78919244384,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2343.84827045898,1981.16077700534,2009.29382086136,2116.97167663864,1902.71524025342
17.6578225068618,2657.28950235409,2246.81050193548,1959.13971147385,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2343.84827045898,1981.16077700534,2009.29382086136,2116.97167663864,1902.71524025342
17.7493138151876,2657.74666354623,2246.81050193548,1957.52309399227,2421.26216609152,2067.13112091369,2142.13792749167,1878.43316990205,2343.84827045898,1981.16077700534,2009.29382086136,2116.97167663864,1902.71524025342
17.8408051235133,2658.86878286133,2246.81050193548,1957.52309399227,2421.26216609152,2067.13112091369,2139.32102099659,1878.43316990205,2343.84827045898,1981.16077700534,2009.29382086136,2116.97167663864,1902.71524025342
17.932296431839,2658.86878286133,2246.81050193548,1957.52309399227,2421.26216609152,2067.13112091369,2163.0312801908,1878.43316990205,2343.84827045898,1981.16077700534,2009.29382086136,2104.38314482958,1902.71524025342
18.0237877401647,2658.86878286133,2246.81050193548,1957.52309399227,2423.08007536546,2067.13112091369,2163.0312801908,1878.43316990205,2343.84827045898,1976.30684460158,2009.29382086136,2104.38314482958,1902.71524025342
18.1152790484904,2658.86878286133,2246.81050193548,1957.52309399227,2426.25597985245,2067.13112091369,2163.0312801908,1878.43316990205,2343.84827045898,1976.30684460158,2009.29382086136,2100.52924836282,1902.71524025342
18.2067703568161,2658.86878286133,2246.81050193548,1957.52309399227,2426.25597985245,2067.13112091369,2163.0312801908,1878.43316990205,2302.22953013567,2028.96672451743,2009.29382086136,2100.52924836282,1902.71524025342
18.2982616651418,2658.86878286133,2246.81050193548,1957.52309399227,2428.45316657701,2067.13112091369,2163.0312801908,1878.43316990205,2302.22953013567,2023.27639230095,2009.29382086136,2100.52924836282,1902.71524025342
18.3897529734675,2658.86878286133,2246.81050193548,1957.52309399227,2431.43407380281,2067.13112091369,2163.0312801908,1878.43316990205,2302.22953013567,2023.27639230095,2009.29382086136,2096.89026400177,1902.71524025342
18.4812442817932,2659.43824188279,2246.81050193548,1957.52309399227,2431.43407380281,2067.13112091369,2163.0312801908,1878.43316990205,2302.22953013567,2023.27639230095,2007.75317919026,2096.89026400177,1902.71524025342
18.5727355901189,2659.43824188279,2246.81050193548,1957.52309399227,2431.43407380281,2067.13112091369,2195.31456634194,1878.43316990205,2271.30361044157,2023.27639230095,2007.75317919026,2096.89026400177,1902.71524025342
18.6642268984446,2659.43824188279,2246.81050193548,1941.03741470841,2431.43407380281,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2007.75317919026,2096.89026400177,1902.71524025342
18.7557182067704,2660.00331766564,2246.81050193548,1941.03741470841,2431.43407380281,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2006.23904942001,2096.89026400177,1902.71524025342
18.8472095150961,2660.41378866044,2246.81050193548,1939.69979139335,2431.43407380281,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2006.23904942001,2096.89026400177,1902.71524025342
18.9387008234218,2660.97079776208,2246.81050193548,1939.69979139335,2431.43407380281,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.0301921317475,2662.83924686531,2243.68013138027,1939.69979139335,2431.43407380281,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.1216834400732,2663.23744209301,2243.68013138027,1938.40029586905,2431.43407380281,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.2131747483989,2667.61916901115,2243.68013138027,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1878.43316990205,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.3046660567246,2667.61916901115,2247.91217705238,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.3961573650503,2669.39595952358,2244.95778852858,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.487648673376,2671.11855482296,2242.11361024288,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2023.27639230095,2004.75536185513,2096.89026400177,1902.71524025342
19.5791399817017,2671.11855482296,2249.5580271877,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2010.51382813738,2004.75536185513,2096.89026400177,1902.71524025342
19.6706312900274,2672.85725883698,2246.79335217608,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2010.51382813738,2004.75536185513,2096.89026400177,1902.71524025342
19.7621225983532,2673.15921682202,2246.79335217608,1938.40029586905,2426.77564336568,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2010.51382813738,2004.75536185513,2096.89026400177,1901.69964410038
19.8536139066789,2677.14526235322,2246.79335217608,1938.40029586905,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,2010.51382813738,2004.75536185513,2096.89026400177,1901.69964410038
19.9451052150046,2677.14526235322,2253.45260590466,1938.40029586905,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2004.75536185513,2096.89026400177,1901.69964410038
20.0365965233303,2678.83174982639,2250.8176062367,1938.40029586905,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2004.75536185513,2096.89026400177,1901.69964410038
20.128087831656,2679.17763006193,2250.8176062367,1937.222608184,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2004.75536185513,2096.89026400177,1901.69964410038
20.2195791399817,2679.4628779086,2250.8176062367,1937.222608184,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2004.75536185513,2096.89026400177,1900.72802152375
20.3110704483074,2681.09978852475,2248.27143262716,1937.222608184,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2004.75536185513,2096.89026400177,1900.72802152375
20.4025617566331,2681.56579414609,2248.27143262716,1937.222608184,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2003.43882602763,2096.89026400177,1900.72802152375
20.4940530649588,2682.0270469872,2248.27143262716,1937.222608184,2422.42907115491,2067.13112091369,2204.94508940288,1863.71897567621,2271.30361044157,1999.23623555671,2002.14349859673,2096.89026400177,1900.72802152375
20.5855443732845,2682.0270469872,2248.27143262716,1937.222608184,2422.42907115491,2037.74323832518,2204.94508940288,1863.71897567621,2271.30361044157,2028.54431588142,2002.14349859673,2096.89026400177,1900.72802152375
20.6770356816102,2683.83974506202,2248.27143262716,1937.222608184,2422.42907115491,2037.74323832518,2204.94508940288,1863.71897567621,2267.14277258622,2028.54431588142,2002.14349859673,2096.89026400177,1900.72802152375
20.768526989936,2687.46694200294,2248.27143262716,1937.222608184,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2267.14277258622,2028.54431588142,2002.14349859673,2096.89026400177,1900.72802152375
20.8600182982617,2687.95780619562,2248.27143262716,1937.222608184,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2267.14277258622,2027.35293425092,2002.14349859673,2096.89026400177,1900.72802152375
20.9515096065874,2687.95780619562,2252.92576834828,1926.144012796,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2267.14277258622,2027.35293425092,2002.14349859673,2096.89026400177,1900.72802152375
21.0430009149131,2687.95780619562,2259.50810889726,1926.144012796,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2267.14277258622,2016.76732137702,2002.14349859673,2096.89026400177,1900.72802152375
21.1344922232388,2689.65395558535,2259.50810889726,1926.144012796,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2263.25292328124,2016.76732137702,2002.14349859673,2096.89026400177,1900.72802152375
21.2259835315645,2689.65395558535,2263.52882176066,1916.63980173282,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2263.25292328124,2016.76732137702,2002.14349859673,2096.89026400177,1900.72802152375
21.3174748398902,2691.27277494081,2261.10860287109,1916.63980173282,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2263.25292328124,2016.76732137702,2002.14349859673,2096.89026400177,1900.72802152375
21.4089661482159,2691.5320394956,2261.10860287109,1916.63980173282,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2263.25292328124,2016.76732137702,2002.14349859673,2096.89026400177,1899.82338831263
21.5004574565416,2691.80813044534,2261.10860287109,1915.75874439217,2418.35466758939,2037.74323832518,2204.94508940288,1863.71897567621,2263.25292328124,2016.76732137702,2002.14349859673,2096.89026400177,1899.82338831263
21.5919487648673,2691.80813044534,2261.10860287109,1915.75874439217,2418.35466758939,2037.74323832518,2215.96688114741,1863.71897567621,2263.25292328124,2016.76732137702,1988.13519944892,2096.89026400177,1899.82338831263
21.683440073193,2691.80813044534,2267.44870284109,1915.75874439217,2418.35466758939,2026.89410717627,2215.96688114741,1863.71897567621,2263.25292328124,2016.76732137702,1988.13519944892,2096.89026400177,1899.82338831263
21.7749313815188,2693.44303357452,2265.08088094918,1915.75874439217,2418.35466758939,2026.89410717627,2215.96688114741,1863.71897567621,2263.25292328124,2016.76732137702,1988.13519944892,2096.89026400177,1899.82338831263
21.8664226898445,2693.69844912218,2265.08088094918,1915.75874439217,2418.35466758939,2026.89410717627,2215.96688114741,1863.71897567621,2263.25292328124,2016.76732137702,1988.13519944892,2096.89026400177,1898.93570724703
21.9579139981702,2694.08660458102,2265.08088094918,1915.75874439217,2418.35466758939,2026.89410717627,2215.96688114741,1863.71897567621,2263.25292328124,2016.76732137702,1987.08072022944,2096.89026400177,1898.93570724703
22.0494053064959,2697.43554106543,2265.08088094918,1915.75874439217,2414.48991191247,2026.89410717627,2215.96688114741,1863.71897567621,2263.25292328124,2016.76732137702,1987.08072022944,2096.89026400177,1898.93570724703
22.1408966148216,2698.99190402608,2265.08088094918,1915.75874439217,2414.48991191247,2026.89410717627,2215.96688114741,1863.71897567621,2259.6502550501,2016.76732137702,1987.08072022944,2096.89026400177,1898.93570724703
22.2323879231473,2700.19894399087,2265.08088094918,1915.75874439217,2414.48991191247,2026.89410717627,2213.18147094344,1863.71897567621,2259.6502550501,2016.76732137702,1987.08072022944,2096.89026400177,1898.93570724703
22.323879231473,2700.19894399087,2278.43791219297,1915.75874439217,2414.48991191247,2026.89410717627,2213.18147094344,1863.71897567621,2238.63655506528,2016.76732137702,1987.08072022944,2096.89026400177,1898.93570724703
22.4153705397987,2701.81595775738,2276.12805501484,1915.75874439217,2414.48991191247,2026.89410717627,2213.18147094344,1863.71897567621,2238.63655506528,2016.76732137702,1987.08072022944,2096.89026400177,1898.93570724703
22.5068618481244,2702.05352876355,2276.12805501484,1915.75874439217,2414.48991191247,2026.89410717627,2213.18147094344,1863.71897567621,2238.63655506528,2016.76732137702,1987.08072022944,2096.89026400177,1898.09424433597
22.5983531564501,2702.05352876355,2276.12805501484,1915.75874439217,2419.82273789841,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2016.76732137702,1987.08072022944,2096.89026400177,1898.09424433597
22.6898444647758,2702.05352876355,2276.12805501484,1915.75874439217,2421.90576047946,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1987.08072022944,2096.89026400177,1898.09424433597
22.7813357731016,2702.30943691648,2276.12805501484,1914.92850432786,2421.90576047946,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1987.08072022944,2096.89026400177,1898.09424433597
22.8728270814273,2705.53194902387,2276.12805501484,1914.92850432786,2418.23575288523,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1987.08072022944,2096.89026400177,1898.09424433597
22.964318389753,2705.88404072668,2276.12805501484,1914.92850432786,2418.23575288523,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1986.09655828359,2096.89026400177,1898.09424433597
23.0558096980787,2705.88404072668,2276.12805501484,1914.92850432786,2420.02086870962,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1981.53043311832,2096.89026400177,1898.09424433597
23.1473010064044,2706.48302370755,2276.12805501484,1914.92850432786,2420.02086870962,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.2387923147301,2708.01952865552,2273.90843863169,1914.92850432786,2420.02086870962,2026.89410717627,2202.56936119381,1863.71897567621,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.3302836230558,2708.01952865552,2276.57374409511,1914.92850432786,2420.02086870962,2026.89410717627,2202.56936119381,1852.53313008929,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.4217749313815,2711.09273758568,2276.57374409511,1914.92850432786,2416.52096451504,2026.89410717627,2202.56936119381,1852.53313008929,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.5132662397072,2711.09273758568,2279.76444889533,1906.93562518092,2416.52096451504,2026.89410717627,2202.56936119381,1852.53313008929,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.6047575480329,2711.09273758568,2282.16267249403,1906.93562518092,2416.52096451504,2026.89410717627,2202.56936119381,1842.79275670432,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.6962488563586,2711.31973829849,2282.16267249403,1906.21275547891,2416.52096451504,2026.89410717627,2202.56936119381,1842.79275670432,2238.63655506528,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.7877401646844,2712.56895060277,2282.16267249403,1906.21275547891,2416.52096451504,2026.89410717627,2202.56936119381,1842.79275670432,2235.85447142016,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.8792314730101,2712.79267381709,2282.16267249403,1905.50063622069,2416.52096451504,2026.89410717627,2202.56936119381,1842.79275670432,2235.85447142016,2012.2774707634,1981.53043311832,2095.98388250268,1898.09424433597
23.9707227813358,2712.79267381709,2282.16267249403,1935.12355453611,2416.52096451504,2026.89410717627,2202.56936119381,1842.79275670432,2235.85447142016,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.0622140896615,2714.31466141737,2280.019143333,1935.12355453611,2416.52096451504,2026.89410717627,2202.56936119381,1842.79275670432,2235.85447142016,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.1537053979872,2714.31466141737,2280.019143333,1931.27300622831,2417.92671525701,2026.89410717627,2202.56936119381,1842.79275670432,2235.85447142016,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.2451967063129,2715.80429634895,2277.93124004134,1931.27300622831,2417.92671525701,2026.89410717627,2202.56936119381,1842.79275670432,2235.85447142016,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.3366880146386,2716.99872946045,2277.93124004134,1931.27300622831,2417.92671525701,2026.89410717627,2202.56936119381,1842.79275670432,2233.19716509064,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.4281793229643,2718.43972470858,2275.90886201316,1931.27300622831,2417.92671525701,2026.89410717627,2202.56936119381,1842.79275670432,2233.19716509064,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.51967063129,2718.68053400774,2275.90886201316,1930.55873629645,2417.92671525701,2026.89410717627,2202.56936119381,1842.79275670432,2233.19716509064,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.6111619396157,2721.52181795894,2275.90886201316,1930.55873629645,2414.60902412282,2026.89410717627,2202.56936119381,1842.79275670432,2233.19716509064,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.7026532479414,2721.75544858471,2275.90886201316,1929.86144274423,2414.60902412282,2026.89410717627,2202.56936119381,1842.79275670432,2233.19716509064,2012.2774707634,1981.53043311832,2095.98388250268,1863.68834359331
24.7941445562672,2721.75544858471,2275.90886201316,1929.86144274423,2414.60902412282,2026.89410717627,2202.56936119381,1842.79275670432,2233.19716509064,1994.56548137726,1981.53043311832,2106.97807242053,1863.68834359331
24.8856358645929,2721.75544858471,2275.90886201316,1929.86144274423,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2233.19716509064,1994.56548137726,1981.53043311832,2106.97807242053,1923.47352621199
24.9771271729186,2721.75544858471,2275.90886201316,1961.70135867265,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2233.19716509064,1994.56548137726,1951.76001414068,2106.97807242053,1923.47352621199
25.0686184812443,2722.0140315116,2275.90886201316,1961.70135867265,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2233.19716509064,1994.56548137726,1951.07921854617,2106.97807242053,1923.47352621199
25.16010978957,2722.0140315116,2275.90886201316,1998.86478039748,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2233.19716509064,1994.56548137726,1951.07921854617,2088.00413193954,1923.47352621199
25.2516010978957,2722.0140315116,2275.90886201316,1998.86478039748,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2200.98806447876,2029.25989354559,1951.07921854617,2088.00413193954,1923.47352621199
25.3430924062214,2722.0140315116,2275.90886201316,1998.86478039748,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2200.98806447876,2029.25989354559,1935.11565181012,2096.59278415815,1923.47352621199
25.4345837145471,2722.0140315116,2275.90886201316,1998.86478039748,2414.60902412282,2026.89410717627,2166.41263567976,1842.79275670432,2200.98806447876,2044.71488475279,1917.69912925364,2096.59278415815,1923.47352621199
25.5260750228728,2722.0140315116,2275.90886201316,1998.86478039748,2414.60902412282,2026.89410717627,2174.80452314005,1842.79275670432,2200.98806447876,2044.71488475279,1908.65158107705,2096.59278415815,1923.47352621199
25.6175663311985,2722.0140315116,2275.90886201316,1998.86478039748,2417.04318567033,2026.89410717627,2174.80452314005,1842.79275670432,2200.98806447876,2040.13528005578,1908.65158107705,2096.59278415815,1923.47352621199
25.7090576395242,2722.0140315116,2275.90886201316,1998.86478039748,2417.04318567033,2026.89410717627,2174.80452314005,1842.79275670432,2200.98806447876,2040.13528005578,1940.95480724631,2077.06328902244,1923.47352621199
25.80054894785,2722.0140315116,2275.90886201316,1998.86478039748,2417.04318567033,2026.89410717627,2183.45333064677,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2077.06328902244,1923.47352621199
25.8920402561757,2724.85975100123,2275.90886201316,1998.86478039748,2413.77577068394,2026.89410717627,2183.45333064677,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2077.06328902244,1923.47352621199
25.9835315645014,2727.59376603779,2275.90886201316,1998.86478039748,2410.64413184411,2026.89410717627,2183.45333064677,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2077.06328902244,1923.47352621199
26.0750228728271,2728.44001954325,2275.90886201316,1998.86478039748,2410.64413184411,2026.89410717627,2181.65933428465,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2077.06328902244,1923.47352621199
26.1665141811528,2728.44001954325,2275.90886201316,1998.86478039748,2410.64413184411,2026.89410717627,2156.83395301,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2093.67836060067,1923.47352621199
26.2580054894785,2728.44001954325,2275.90886201316,1998.86478039748,2412.87472546137,2021.72361106489,2156.83395301,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2093.67836060067,1923.47352621199
26.3494967978042,2728.44001954325,2275.90886201316,1998.86478039748,2412.87472546137,2006.71341309707,2168.52409047738,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2093.67836060067,1923.47352621199
26.4409881061299,2728.44001954325,2275.90886201316,1998.86478039748,2394.92187590175,2006.71341309707,2168.52409047738,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2116.0148295234,1923.47352621199
26.5324794144556,2728.44001954325,2275.90886201316,1998.86478039748,2394.92187590175,1993.83496924883,2178.69406616742,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2116.0148295234,1923.47352621199
26.6239707227813,2728.44001954325,2275.90886201316,1998.86478039748,2399.630413355,1993.83496924883,2170.80860230155,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2116.0148295234,1923.47352621199
26.715462031107,2728.44001954325,2275.90886201316,2018.5282156428,2399.630413355,1993.83496924883,2170.80860230155,1842.79275670432,2200.98806447876,2040.13528005578,1932.07611157922,2116.0148295234,1898.18024422768
26.8069533394328,2728.44001954325,2275.90886201316,2018.5282156428,2402.04722384181,1993.83496924883,2170.80860230155,1842.79275670432,2200.98806447876,2035.35531290961,1932.07611157922,2116.0148295234,1898.18024422768
26.8984446477585,2728.44001954325,2275.90886201316,2018.5282156428,2403.93705717995,1989.80753581204,2170.80860230155,1842.79275670432,2200.98806447876,2035.35531290961,1932.07611157922,2116.0148295234,1898.18024422768
26.9899359560842,2728.44001954325,2275.90886201316,2018.5282156428,2403.93705717995,1989.80753581204,2175.6226315262,1827.64316117156,2200.98806447876,2035.35531290961,1932.07611157922,2116.0148295234,1898.18024422768
27.0814272644099,2728.44001954325,2275.90886201316,2018.5282156428,2403.93705717995,1989.80753581204,2179.93099165071,1814.75763155305,2200.98806447876,2035.35531290961,1932.07611157922,2116.0148295234,1898.18024422768
27.1729185727356,2728.44001954325,2275.90886201316,2018.5282156428,2403.93705717995,1989.80753581204,2193.0594414745,1814.75763155305,2200.98806447876,2035.35531290961,1932.07611157922,2105.61987115848,1898.18024422768
27.2644098810613,2728.44001954325,2275.90886201316,2018.5282156428,2408.6397220544,1989.80753581204,2185.80879182176,1814.75763155305,2200.98806447876,2035.35531290961,1932.07611157922,2105.61987115848,1898.18024422768
27.355901189387,2728.80813103166,2275.90886201316,2017.61806224644,2408.6397220544,1989.80753581204,2185.80879182176,1814.75763155305,2200.98806447876,2035.35531290961,1932.07611157922,2105.61987115848,1898.18024422768
27.4473924977127,2729.17377428649,2275.90886201316,2016.71796032669,2408.6397220544,1989.80753581204,2185.80879182176,1814.75763155305,2200.98806447876,2035.35531290961,1932.07611157922,2105.61987115848,1898.18024422768
27.5388838060384,2729.17377428649,2275.90886201316,2016.71796032669,2408.6397220544,1989.80753581204,2185.80879182176,1814.75763155305,2200.98806447876,2049.36337370654,1917.59238634533,2105.61987115848,1898.18024422768
27.6303751143641,2729.17377428649,2275.90886201316,2034.04717228386,2408.6397220544,1989.80753581204,2185.80879182176,1814.75763155305,2200.98806447876,2049.36337370654,1903.66378512138,2105.61987115848,1898.18024422768
27.7218664226898,2729.57191009341,2275.90886201316,2033.12483338564,2408.6397220544,1989.80753581204,2185.80879182176,1814.75763155305,2200.98806447876,2049.36337370654,1903.66378512138,2105.61987115848,1898.18024422768
27.8133577310156,2729.57191009341,2275.90886201316,2033.12483338564,2408.6397220544,1972.34025972919,2185.80879182176,1814.75763155305,2200.98806447876,2064.83860571169,1903.66378512138,2105.61987115848,1898.18024422768
27.9048490393413,2729.57191009341,2275.90886201316,2033.12483338564,2408.6397220544,1972.34025972919,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1903.66378512138,2105.61987115848,1898.18024422768
27.996340347667,2729.57191009341,2275.90886201316,2033.12483338564,2410.2767887499,1969.06617897306,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1903.66378512138,2105.61987115848,1898.18024422768
28.0878316559927,2732.29829338183,2275.90886201316,2033.12483338564,2407.42342066014,1969.06617897306,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1903.66378512138,2105.61987115848,1898.18024422768
28.1793229643184,2732.48559520718,2275.90886201316,2033.12483338564,2407.42342066014,1969.06617897306,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1903.3065418849,2105.61987115848,1898.18024422768
28.2708142726441,2732.48559520718,2275.90886201316,2033.12483338564,2408.55711010603,1969.06617897306,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1901.18591109217,2105.61987115848,1898.18024422768
28.3623055809698,2732.48559520718,2275.90886201316,2047.71947833453,2408.55711010603,1969.06617897306,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1889.37565650062,2105.61987115848,1898.18024422768
28.4537968892955,2732.48559520718,2275.90886201316,2064.37099164098,2408.55711010603,1953.70702876157,2195.89687539379,1814.75763155305,2200.98806447876,2052.78465869817,1889.37565650062,2105.61987115848,1898.18024422768
28.5452881976212,2732.6275068071,2275.90886201316,2064.37099164098,2408.55711010603,1953.70702876157,2195.89687539379,1814.17908668074,2200.98806447876,2052.78465869817,1889.37565650062,2105.61987115848,1898.18024422768
28.6367795059469,2732.6275068071,2275.90886201316,2064.37099164098,2408.55711010603,1953.70702876157,2195.89687539379,1814.17908668074,2200.98806447876,2062.96808899201,1889.37565650062,2105.61987115848,1880.09169278918
28.7282708142726,2732.87764565188,2275.90886201316,2064.37099164098,2408.55711010603,1953.2252961969,2195.89687539379,1814.17908668074,2200.98806447876,2062.96808899201,1889.37565650062,2105.61987115848,1880.09169278918
28.8197621225984,2734.26067625721,2273.91556186122,2064.37099164098,2408.55711010603,1953.2252961969,2195.89687539379,1814.17908668074,2200.98806447876,2062.96808899201,1889.37565650062,2105.61987115848,1880.09169278918
28.9112534309241,2734.26067625721,2273.91556186122,2064.37099164098,2408.55711010603,1953.2252961969,2199.23333525415,1803.80012243182,2200.98806447876,2062.96808899201,1889.37565650062,2105.61987115848,1880.09169278918
29.0027447392498,2735.61665142247,2271.97060820851,2064.37099164098,2408.55711010603,1953.2252961969,2199.23333525415,1803.80012243182,2200.98806447876,2062.96808899201,1889.37565650062,2105.61987115848,1880.09169278918
29.0942360475755,2736.06764499564,2271.97060820851,2063.42072280719,2408.55711010603,1953.2252961969,2199.23333525415,1803.80012243182,2200.98806447876,2062.96808899201,1889.37565650062,2105.61987115848,1880.09169278918
29.1857273559012,2736.06764499564,2271.97060820851,2063.42072280719,2408.55711010603,1953.2252961969,2203.68505631411,1803.80012243182,2200.98806447876,2062.96808899201,1883.93936739757,2105.61987115848,1880.09169278918
29.2772186642269,2736.51634990042,2271.97060820851,2062.4803818836,2408.55711010603,1953.2252961969,2203.68505631411,1803.80012243182,2200.98806447876,2062.96808899201,1883.93936739757,2105.61987115848,1880.09169278918
29.3687099725526,2737.84087288778,2270.07380412061,2062.4803818836,2408.55711010603,1953.2252961969,2203.68505631411,1803.80012243182,2200.98806447876,2062.96808899201,1883.93936739757,2105.61987115848,1880.09169278918
29.4602012808783,2737.84087288778,2270.07380412061,2062.4803818836,2408.55711010603,1953.2252961969,2207.83920686886,1803.80012243182,2200.98806447876,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
29.551692589204,2738.28228505665,2270.07380412061,2061.55561666464,2408.55711010603,1953.2252961969,2207.83920686886,1803.80012243182,2200.98806447876,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
29.6431838975297,2738.28228505665,2270.07380412061,2061.55561666464,2403.36283543117,1953.2252961969,2215.2024740133,1803.80012243182,2200.98806447876,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
29.7346752058554,2738.28228505665,2270.07380412061,2061.55561666464,2403.36283543117,1953.2252961969,2228.23109606905,1803.80012243182,2181.13262589974,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
29.8261665141812,2738.28228505665,2270.07380412061,2061.55561666464,2403.36283543117,1953.2252961969,2239.65166624932,1803.80012243182,2164.10961767931,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
29.9176578225069,2738.28228505665,2270.07380412061,2061.55561666464,2403.36283543117,1953.2252961969,2249.74526444794,1803.80012243182,2149.35675289838,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
30.0091491308326,2738.28228505665,2270.07380412061,2061.55561666464,2403.36283543117,1986.30150615083,2228.77406340909,1803.80012243182,2149.35675289838,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
30.1006404391583,2739.33608260603,2270.07380412061,2061.55561666464,2403.36283543117,1986.30150615083,2227.43158346315,1803.80012243182,2149.35675289838,2062.96808899201,1883.93936739757,2105.61987115848,1871.79286555674
30.192131747484,2739.77232518254,2270.07380412061,2061.55561666464,2403.36283543117,1986.30150615083,2227.43158346315,1803.80012243182,2149.35675289838,2062.20381398878,1883.93936739757,2105.61987115848,1871.79286555674
30.2836230558097,2739.77232518254,2270.07380412061,2061.55561666464,2403.36283543117,1986.30150615083,2227.43158346315,1786.38062127212,2149.35675289838,2068.83008968437,1883.93936739757,2105.61987115848,1871.79286555674
30.3751143641354,2739.77232518254,2270.07380412061,2061.55561666464,2403.36283543117,1986.30150615083,2227.43158346315,1771.82137592502,2149.35675289838,2074.65655866021,1883.93936739757,2105.61987115848,1871.79286555674
30.4666056724611,2739.77232518254,2270.07380412061,2061.55561666464,2403.36283543117,1986.30150615083,2229.34832067491,1765.88352253973,2149.35675289838,2074.65655866021,1883.93936739757,2105.61987115848,1871.79286555674
30.5580969807868,2739.77232518254,2270.07380412061,2061.55561666464,2406.17965991787,1986.30150615083,2229.34832067491,1765.88352253973,2149.35675289838,2070.1520514799,1883.93936739757,2105.61987115848,1871.79286555674
30.6495882891125,2739.77232518254,2270.07380412061,2061.55561666464,2406.17965991787,1999.80456063147,2229.34832067491,1765.88352253973,2149.35675289838,2070.1520514799,1871.22857101575,2105.61987115848,1871.79286555674
30.7410795974382,2739.77232518254,2276.91759933785,2061.55561666464,2406.17965991787,1999.80456063147,2229.34832067491,1765.88352253973,2149.35675289838,2062.25897322783,1871.22857101575,2105.61987115848,1871.79286555674
30.832570905764,2739.77232518254,2283.18374881099,2061.55561666464,2406.17965991787,1999.80456063147,2229.34832067491,1765.88352253973,2149.35675289838,2055.06686623739,1871.22857101575,2105.61987115848,1871.79286555674
30.9240622140897,2739.77232518254,2283.18374881099,2061.55561666464,2406.17965991787,1999.80456063147,2232.31096063537,1765.88352253973,2149.35675289838,2055.06686623739,1867.11312883644,2105.61987115848,1871.79286555674
31.0155535224154,2739.77232518254,2283.18374881099,2061.55561666464,2408.70105439647,1999.80456063147,2232.31096063537,1765.88352253973,2149.35675289838,2051.33041806044,1867.11312883644,2105.61987115848,1871.79286555674
31.1070448307411,2739.77232518254,2283.18374881099,2086.97908707694,2408.70105439647,1999.80456063147,2232.31096063537,1765.88352253973,2127.25679495796,2051.33041806044,1867.11312883644,2105.61987115848,1871.79286555674
31.1985361390668,2739.77232518254,2289.81418024161,2077.08402901505,2408.70105439647,1999.80456063147,2232.31096063537,1765.88352253973,2127.25679495796,2051.33041806044,1867.11312883644,2105.61987115848,1871.79286555674
31.2900274473925,2739.77232518254,2289.81418024161,2077.08402901505,2411.13367876513,1999.80456063147,2232.31096063537,1765.88352253973,2127.25679495796,2047.75590636456,1867.11312883644,2105.61987115848,1871.79286555674
31.3815187557182,2739.77232518254,2292.18929985872,2077.08402901505,2411.13367876513,1999.80456063147,2232.31096063537,1765.88352253973,2127.25679495796,2047.75590636456,1867.11312883644,2105.61987115848,1866.66914920044
31.4730100640439,2742.49013932843,2292.18929985872,2077.08402901505,2408.37351464946,1999.80456063147,2232.31096063537,1765.88352253973,2127.25679495796,2047.75590636456,1867.11312883644,2105.61987115848,1866.66914920044
31.5645013723696,2742.49013932843,2298.13247303591,2068.26059693407,2408.37351464946,1999.80456063147,2232.31096063537,1765.88352253973,2127.25679495796,2047.75590636456,1867.11312883644,2105.61987115848,1866.66914920044
31.6559926806953,2742.49013932843,2298.13247303591,2068.26059693407,2408.37351464946,1991.93810709142,2237.5986169757,1765.88352253973,2127.25679495796,2047.75590636456,1867.11312883644,2105.61987115848,1866.66914920044
31.747483989021,2742.49013932843,2314.58868516846,2068.26059693407,2395.37532332769,1991.93810709142,2237.5986169757,1765.88352253973,2127.25679495796,2047.75590636456,1867.11312883644,2105.61987115848,1866.66914920044
31.8389752973468,2742.49013932843,2319.09174070734,2068.26059693407,2395.37532332769,1991.93810709142,2237.5986169757,1765.88352253973,2127.25679495796,2042.30581084061,1867.11312883644,2105.61987115848,1866.66914920044
31.9304666056725,2742.49013932843,2320.94031770381,2068.26059693407,2395.37532332769,1991.93810709142,2237.5986169757,1765.88352253973,2127.25679495796,2042.30581084061,1867.11312883644,2105.61987115848,1862.46363431641
32.0219579139982,2744.20862432051,2318.87865333719,2068.26059693407,2395.37532332769,1991.93810709142,2237.5986169757,1765.88352253973,2127.25679495796,2042.30581084061,1867.11312883644,2105.61987115848,1862.46363431641
32.1134492223239,2744.20862432051,2320.65845174859,2068.26059693407,2395.37532332769,1991.93810709142,2237.5986169757,1765.88352253973,2127.25679495796,2042.30581084061,1864.55105899173,2105.61987115848,1862.46363431641
32.2049405306496,2744.20862432051,2326.58912632513,2068.26059693407,2395.37532332769,1991.93810709142,2237.5986169757,1765.88352253973,2118.32467658892,2042.30581084061,1864.55105899173,2105.61987115848,1862.46363431641
32.2964318389753,2746.67183268326,2326.58912632513,2068.26059693407,2392.91549583761,1991.93810709142,2237.5986169757,1765.88352253973,2118.32467658892,2042.30581084061,1864.55105899173,2105.61987115848,1862.46363431641
32.387923147301,2746.67183268326,2328.25625825788,2068.26059693407,2392.91549583761,1991.93810709142,2237.5986169757,1765.88352253973,2118.32467658892,2042.30581084061,1864.55105899173,2105.61987115848,1858.57704364984
32.4794144556267,2746.67183268326,2328.25625825788,2068.26059693407,2393.5553202292,1991.93810709142,2237.5986169757,1763.54189458753,2118.32467658892,2042.30581084061,1864.55105899173,2105.61987115848,1858.57704364984
32.5709057639524,2746.67183268326,2328.25625825788,2068.26059693407,2395.98224202892,1991.93810709142,2237.5986169757,1763.54189458753,2118.32467658892,2038.69565282974,1864.55105899173,2105.61987115848,1858.57704364984
32.6623970722781,2746.67183268326,2333.39013674591,2068.26059693407,2395.98224202892,1991.93810709142,2237.5986169757,1763.54189458753,2118.32467658892,2038.69565282974,1864.55105899173,2099.46731715542,1858.57704364984
32.7538883806038,2746.67183268326,2334.94070032096,2068.26059693407,2395.98224202892,1991.93810709142,2237.5986169757,1763.54189458753,2118.32467658892,2038.69565282974,1862.21736984567,2099.46731715542,1858.57704364984
32.8453796889296,2746.67183268326,2340.07335533699,2068.26059693407,2395.98224202892,1991.93810709142,2237.5986169757,1763.54189458753,2110.43777926941,2038.69565282974,1862.21736984567,2099.46731715542,1858.57704364984
32.9368709972553,2746.67183268326,2340.07335533699,2068.26059693407,2398.33381583774,1991.93810709142,2237.5986169757,1763.54189458753,2110.43777926941,2035.2297896867,1862.21736984567,2099.46731715542,1858.57704364984
33.028362305581,2746.67183268326,2340.07335533699,2068.26059693407,2400.17214892527,1988.53849485328,2237.5986169757,1763.54189458753,2110.43777926941,2035.2297896867,1862.21736984567,2099.46731715542,1858.57704364984
33.1198536139067,2746.67183268326,2340.07335533699,2068.26059693407,2405.70293768414,1988.53849485328,2230.45929605076,1763.54189458753,2110.43777926941,2035.2297896867,1862.21736984567,2099.46731715542,1858.57704364984
33.2113449222324,2746.67183268326,2340.07335533699,2068.26059693407,2410.85961440583,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2035.2297896867,1862.21736984567,2099.46731715542,1858.57704364984
33.3028362305581,2746.67183268326,2343.49262512202,2068.26059693407,2410.85961440583,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.3943275388838,2748.58538462524,2341.42086443993,2068.26059693407,2410.85961440583,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.4858188472095,2748.58538462524,2345.30105398005,2061.49810798139,2410.85961440583,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.5773101555352,2748.58538462524,2357.9623787811,2061.49810798139,2399.76696360883,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.6688014638609,2751.08323858113,2357.9623787811,2061.49810798139,2397.49276849936,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.7602927721866,2751.50759745124,2357.9623787811,2060.73503779911,2397.49276849936,1988.53849485328,2223.85105300899,1763.54189458753,2110.43777926941,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.8517840805124,2751.50759745124,2357.9623787811,2060.73503779911,2397.49276849936,1988.53849485328,2223.85105300899,1832.75171397085,2082.03325607037,2030.8083282644,1862.21736984567,2099.46731715542,1858.57704364984
33.9432753888381,2751.50759745124,2360.86684957032,2060.73503779911,2397.49276849936,1988.53849485328,2223.85105300899,1832.75171397085,2082.03325607037,2026.8699317813,1862.21736984567,2099.46731715542,1858.57704364984
34.0347666971638,2751.50759745124,2360.86684957032,2060.73503779911,2399.54571093584,1988.53849485328,2223.85105300899,1832.75171397085,2082.03325607037,2023.74591325939,1862.21736984567,2099.46731715542,1858.57704364984
34.1262580054895,2751.93246300969,2360.86684957032,2059.97587493934,2399.54571093584,1988.53849485328,2223.85105300899,1832.75171397085,2082.03325607037,2023.74591325939,1862.21736984567,2099.46731715542,1858.57704364984
34.2177493138152,2751.93246300969,2360.86684957032,2059.97587493934,2401.53656373466,1988.53849485328,2223.85105300899,1832.75171397085,2082.03325607037,2020.73838690113,1862.21736984567,2099.46731715542,1858.57704364984
34.3092406221409,2751.93246300969,2364.49723164789,2059.97587493934,2401.53656373466,1988.53849485328,2223.85105300899,1832.75171397085,2076.22904780012,2020.73838690113,1862.21736984567,2099.46731715542,1858.57704364984
34.4007319304666,2751.93246300969,2364.49723164789,2059.97587493934,2406.4278114546,1988.53849485328,2217.31280737727,1832.75171397085,2076.22904780012,2020.73838690113,1862.21736984567,2099.46731715542,1858.57704364984
34.4922232387923,2751.93246300969,2367.13294637819,2059.97587493934,2406.4278114546,1988.53849485328,2217.31280737727,1832.75171397085,2076.22904780012,2017.2442370336,1862.21736984567,2099.46731715542,1858.57704364984
34.583714547118,2751.93246300969,2367.13294637819,2059.97587493934,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2076.22904780012,2014.50266229685,1862.21736984567,2099.46731715542,1858.57704364984
34.6752058554437,2751.93246300969,2370.49952285791,2059.97587493934,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2070.85370845216,2014.50266229685,1862.21736984567,2099.46731715542,1858.57704364984
34.7666971637694,2751.93246300969,2374.13359541242,2059.97587493934,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2070.85370845216,2014.50266229685,1862.21736984567,2094.4378914389,1858.57704364984
34.8581884720952,2751.93246300969,2376.48670252107,2059.97587493934,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2070.85370845216,2011.34741959646,1862.21736984567,2094.4378914389,1858.57704364984
34.9496797804209,2751.93246300969,2379.51726664322,2059.97587493934,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2065.94016179233,2011.34741959646,1862.21736984567,2094.4378914389,1858.57704364984
35.0411710887466,2751.93246300969,2379.51726664322,2039.08910711498,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2065.94016179233,2026.0866326776,1862.21736984567,2094.4378914389,1858.57704364984
35.1326623970723,2751.93246300969,2381.89686395729,2039.08910711498,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2065.94016179233,2022.97962303113,1862.21736984567,2094.4378914389,1858.57704364984
35.224153705398,2751.93246300969,2384.19153435055,2039.08910711498,2408.25375341481,1988.53849485328,2217.31280737727,1832.75171397085,2065.94016179233,2019.99619015757,1862.21736984567,2094.4378914389,1858.57704364984
35.3156450137237,2751.93246300969,2384.19153435055,2039.08910711498,2410.10836006394,1988.53849485328,2217.31280737727,1832.75171397085,2065.94016179233,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.4071363220494,2751.93246300969,2384.19153435055,2039.08910711498,2412.40937807399,1988.53849485328,2217.31280737727,1832.75171397085,2061.9228556877,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.4986276303751,2751.93246300969,2386.65374836449,2034.56057239693,2412.40937807399,1988.53849485328,2217.31280737727,1832.75171397085,2061.9228556877,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.5901189387008,2751.93246300969,2386.65374836449,2034.56057239693,2413.95834685575,1985.37174435422,2217.31280737727,1832.75171397085,2061.9228556877,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.6816102470265,2751.93246300969,2389.34296388631,2034.56057239693,2413.95834685575,1985.37174435422,2217.31280737727,1832.75171397085,2057.57279642854,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.7731015553522,2751.93246300969,2391.91579041809,2034.56057239693,2413.95834685575,1985.37174435422,2217.31280737727,1832.75171397085,2053.44894789975,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.8645928636779,2751.93246300969,2401.9143782457,2034.56057239693,2404.4298610963,1985.37174435422,2217.31280737727,1832.75171397085,2053.44894789975,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
35.9560841720037,2751.93246300969,2404.20863551765,2034.56057239693,2404.4298610963,1985.37174435422,2217.31280737727,1832.75171397085,2049.71133922066,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
36.0475754803294,2754.55956061277,2401.9387612455,2034.56057239693,2404.4298610963,1985.37174435422,2217.31280737727,1832.75171397085,2049.71133922066,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
36.1390667886551,2757.09670561257,2399.74186288246,2034.56057239693,2404.4298610963,1985.37174435422,2217.31280737727,1832.75171397085,2049.71133922066,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
36.2305580969808,2759.54977100751,2397.61334464748,2034.56057239693,2404.4298610963,1985.37174435422,2217.31280737727,1832.75171397085,2049.71133922066,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
36.3220494053065,2759.54977100751,2406.68550647855,2034.56057239693,2395.38186916712,1985.37174435422,2217.31280737727,1832.75171397085,2049.71133922066,2017.45446259038,1862.21736984567,2094.4378914389,1858.57704364984
36.4135407136322,2759.54977100751,2409.26594936882,2034.56057239693,2395.38186916712,1985.37174435422,2217.31280737727,1832.75171397085,2049.71133922066,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
36.5050320219579,2759.93395659716,2409.26594936882,2034.56057239693,2395.38186916712,1985.37174435422,2217.31280737727,1832.75171397085,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
36.5965233302836,2759.93395659716,2409.98847238321,2034.56057239693,2395.38186916712,1985.37174435422,2217.31280737727,1829.79409928477,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
36.6880146386093,2759.93395659716,2411.47365953098,2034.56057239693,2395.38186916712,1982.22138229173,2217.31280737727,1829.79409928477,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
36.779505946935,2762.4958172378,2409.34183357035,2034.56057239693,2395.38186916712,1982.22138229173,2217.31280737727,1829.79409928477,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
36.8709972552607,2762.4958172378,2410.04261053597,2034.56057239693,2395.38186916712,1982.22138229173,2217.31280737727,1826.92647761615,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
36.9624885635865,2764.98774575074,2407.96980816772,2034.56057239693,2395.38186916712,1982.22138229173,2217.31280737727,1826.92647761615,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
37.0539798719122,2764.98774575074,2408.65837309038,2034.56057239693,2395.38186916712,1982.22138229173,2217.31280737727,1824.12294215601,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
37.1454711802379,2767.26014004585,2408.65837309038,2034.56057239693,2393.40012821349,1982.22138229173,2217.31280737727,1824.12294215601,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
37.2369624885636,2767.59791762925,2408.65837309038,2033.97785690204,2393.40012821349,1982.22138229173,2217.31280737727,1824.12294215601,2049.16398112322,2017.45446259038,1862.21736984567,2090.25897025942,1858.57704364984
37.3284537968893,2767.59791762925,2408.65837309038,2033.97785690204,2393.40012821349,1982.22138229173,2217.31280737727,1824.12294215601,2032.94159485118,2031.26006127851,1862.21736984567,2090.25897025942,1858.57704364984
37.419945105215,2767.59791762925,2408.65837309038,2033.97785690204,2393.40012821349,1982.22138229173,2217.31280737727,1862.71484541652,2032.94159485118,2031.26006127851,1843.22783026345,2090.25897025942,1858.57704364984
37.5114364135407,2767.59791762925,2409.48172381863,2033.97785690204,2393.40012821349,1982.22138229173,2217.31280737727,1859.68642356885,2032.94159485118,2031.26006127851,1843.22783026345,2090.25897025942,1858.57704364984
37.6029277218664,2767.59791762925,2409.48172381863,2033.97785690204,2393.40012821349,1957.3312111916,2217.31280737727,1859.68642356885,2032.94159485118,2031.26006127851,1866.64112522403,2090.25897025942,1858.57704364984
37.6944190301921,2769.82179337803,2409.48172381863,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1859.68642356885,2032.94159485118,2031.26006127851,1866.64112522403,2090.25897025942,1858.57704364984
37.7859103385178,2772.1827892187,2407.47253216483,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1859.68642356885,2032.94159485118,2031.26006127851,1866.64112522403,2090.25897025942,1858.57704364984
37.8774016468436,2772.1827892187,2407.47253216483,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1891.80013323221,2032.94159485118,2031.26006127851,1850.31889890138,2090.25897025942,1858.57704364984
37.9688929551693,2772.29964735476,2407.47253216483,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1891.80013323221,2032.94159485118,2031.26006127851,1850.1378749847,2090.25897025942,1858.57704364984
38.060384263495,2772.29964735476,2408.42788638015,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1888.5888331648,2032.94159485118,2031.26006127851,1850.1378749847,2090.25897025942,1858.57704364984
38.1518755718207,2774.61329001032,2406.46030450726,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1888.5888331648,2032.94159485118,2031.26006127851,1850.1378749847,2090.25897025942,1858.57704364984
38.2433668801464,2774.61329001032,2407.25848205911,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1888.5888331648,2032.94159485118,2031.26006127851,1850.1378749847,2090.25897025942,1856.01251813842
38.3348581884721,2774.61329001032,2407.25848205911,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1914.17286464303,2032.94159485118,2031.26006127851,1836.22655850597,2090.25897025942,1856.01251813842
38.4263494967978,2774.61329001032,2408.31510917089,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1836.22655850597,2090.25897025942,1856.01251813842
38.5178408051235,2776.89482607797,2406.38616020597,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1836.22655850597,2090.25897025942,1856.01251813842
38.6093321134492,2776.89482607797,2406.38616020597,2033.97785690204,2391.45016610234,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1861.37927266198,2067.04686772115,1856.01251813842
38.7008234217749,2776.89482607797,2406.38616020597,2043.68847066664,2391.45016610234,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1861.37927266198,2067.04686772115,1841.00610105348
38.7923147301006,2776.89482607797,2406.38616020597,2052.93780606156,2391.45016610234,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1853.38158219663,2067.04686772115,1841.00610105348
38.8838060384263,2776.89482607797,2406.38616020597,2052.93780606156,2392.31566250251,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
38.9752973467521,2779.13084015387,2404.48800932489,2052.93780606156,2392.31566250251,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.0667886550778,2779.47532777416,2404.48800932489,2052.36572810381,2392.31566250251,1957.3312111916,2217.31280737727,1910.88361454979,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.1582799634035,2779.47532777416,2405.53965240781,2052.36572810381,2392.31566250251,1957.3312111916,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.2497712717292,2779.47532777416,2406.8330266102,2052.36572810381,2392.31566250251,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.3412625800549,2781.6800272694,2404.97354097453,2052.36572810381,2392.31566250251,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.4327538883806,2781.6800272694,2407.03378097399,2048.20748192994,2392.31566250251,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.5242451967063,2783.84888427777,2405.21768360141,2048.20748192994,2392.31566250251,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1852.00330241472,2067.04686772115,1841.00610105348
39.615736505032,2783.84888427777,2405.21768360141,2056.53886342112,2392.31566250251,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1844.62836376535,2067.04686772115,1841.00610105348
39.7072278133577,2783.84888427777,2405.21768360141,2085.26750550437,2376.0868764965,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1844.62836376535,2067.04686772115,1841.00610105348
39.7987191216834,2783.84888427777,2412.87823073152,2085.26750550437,2367.58399902468,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1844.62836376535,2067.04686772115,1841.00610105348
39.8902104300091,2783.84888427777,2413.53369649384,2085.26750550437,2367.58399902468,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1843.48477051823,2067.04686772115,1841.00610105348
39.9817017383349,2783.84888427777,2420.65606336686,2085.26750550437,2359.67693492316,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1843.48477051823,2067.04686772115,1841.00610105348
40.0731930466606,2783.84888427777,2421.26816680232,2085.26750550437,2359.67693492316,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1842.39900205956,2067.04686772115,1841.00610105348
40.1646843549863,2783.84888427777,2421.26816680232,2112.03545063939,2345.07030066859,1954.60611751638,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1842.39900205956,2067.04686772115,1841.00610105348
40.256175663312,2783.84888427777,2421.26816680232,2112.03545063939,2345.07030066859,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1832.5305687792,2067.04686772115,1841.00610105348
40.3476669716377,2783.94692304717,2421.26816680232,2112.03545063939,2345.07030066859,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1832.39842125821,2067.04686772115,1841.00610105348
40.4391582799634,2784.04503319181,2421.26816680232,2112.03545063939,2345.07030066859,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1832.26629000397,2067.04686772115,1841.00610105348
40.5306495882891,2784.04503319181,2423.71036089403,2107.3259965752,2345.07030066859,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1832.26629000397,2067.04686772115,1841.00610105348
40.6221408966148,2784.04503319181,2423.71036089403,2112.75363192534,2345.07030066859,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1827.33175019198,2067.04686772115,1841.00610105348
40.7136322049405,2786.42005945806,2421.82533406114,2112.75363192534,2345.07030066859,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1827.33175019198,2067.04686772115,1841.00610105348
40.8051235132662,2787.98026458247,2421.82533406114,2112.75363192534,2343.68574145857,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2031.26006127851,1827.33175019198,2067.04686772115,1841.00610105348
40.8966148215919,2788.26673826648,2421.82533406114,2112.75363192534,2343.68574145857,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2030.88365567662,1827.33175019198,2067.04686772115,1841.00610105348
40.9881061299177,2788.26673826648,2421.82533406114,2112.75363192534,2346.32275581474,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2026.94612270003,1827.33175019198,2067.04686772115,1841.00610105348
41.0795974382434,2789.81810354557,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2026.94612270003,1827.33175019198,2067.04686772115,1841.00610105348
41.1710887465691,2790.0940202868,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2026.58810787026,1827.33175019198,2067.04686772115,1841.00610105348
41.2625800548948,2790.18519530336,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2026.58810787026,1827.20873936924,2067.04686772115,1841.00610105348
41.3540713632205,2790.27645075706,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2026.58810787026,1827.08572426577,2067.04686772115,1841.00610105348
41.4455626715462,2790.55253649075,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2026.23032706049,1827.08572426577,2067.04686772115,1841.00610105348
41.5370539798719,2790.82790899001,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2025.87383333002,1827.08572426577,2067.04686772115,1841.00610105348
41.6285452881976,2791.10257366847,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.63744465443,2032.94159485118,2025.5186154564,1827.08572426577,2067.04686772115,1841.00610105348
41.7200365965233,2791.25943980174,2421.82533406114,2112.75363192534,2344.9583080674,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2025.5186154564,1827.08572426577,2067.04686772115,1841.00610105348
41.811527904849,2792.78194977792,2421.82533406114,2112.75363192534,2343.6039217342,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2025.5186154564,1827.08572426577,2067.04686772115,1841.00610105348
41.9030192131748,2794.2734365347,2421.82533406114,2112.75363192534,2342.2755534529,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2025.5186154564,1827.08572426577,2067.04686772115,1841.00610105348
41.9945105215005,2796.46792762564,2419.99182243203,2112.75363192534,2342.2755534529,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2025.5186154564,1827.08572426577,2067.04686772115,1841.00610105348
42.0860018298262,2796.72928311573,2419.99182243203,2112.75363192534,2342.2755534529,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2025.17288322015,1827.08572426577,2067.04686772115,1841.00610105348
42.1774931381519,2798.16171857187,2419.99182243203,2112.75363192534,2340.98184903398,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2025.17288322015,1827.08572426577,2067.04686772115,1841.00610105348
42.2689844464776,2798.16171857187,2419.99182243203,2112.75363192534,2343.57722308491,1967.04160786931,2217.31280737727,1907.24926202978,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.3604757548033,2798.16171857187,2419.99182243203,2120.12537940379,2343.57722308491,1967.04160786931,2217.31280737727,1894.19971898162,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.451967063129,2799.59278069054,2419.99182243203,2120.12537940379,2342.29837959517,1967.04160786931,2217.31280737727,1894.19971898162,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.5434583714547,2800.99652823732,2419.99182243203,2120.12537940379,2341.04256258082,1967.04160786931,2217.31280737727,1894.19971898162,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.6349496797804,2801.12982955763,2419.99182243203,2120.12537940379,2341.04256258082,1967.04160786931,2217.31280737727,1893.87644763654,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.7264409881061,2801.85551753783,2419.99182243203,2120.12537940379,2341.04256258082,1967.04160786931,2216.28808745492,1893.87644763654,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.8179322964318,2803.91380770436,2418.2128375017,2120.12537940379,2341.04256258082,1967.04160786931,2216.28808745492,1893.87644763654,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
42.9094236047575,2804.04380779682,2418.2128375017,2120.12537940379,2341.04256258082,1967.04160786931,2216.28808745492,1893.55886993122,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
43.0009149130833,2804.74891711797,2418.2128375017,2120.12537940379,2341.04256258082,1967.04160786931,2215.2856579503,1893.55886993122,2032.94159485118,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
43.092406221409,2805.00899308898,2418.2128375017,2120.12537940379,2341.04256258082,1967.04160786931,2215.2856579503,1893.55886993122,2032.52644507455,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
43.1838975297347,2807.00426187835,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2215.2856579503,1893.55886993122,2032.52644507455,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
43.2753888380604,2807.68908041228,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2214.30508097697,1893.55886993122,2032.52644507455,2021.30296912465,1827.08572426577,2067.04686772115,1841.00610105348
43.3668801463861,2807.92349513505,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2214.30508097697,1893.55886993122,2032.52644507455,2020.98454460787,1827.08572426577,2067.04686772115,1841.00610105348
43.4583714547118,2807.92349513505,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2218.34837781229,1886.06419052662,2032.52644507455,2020.98454460787,1827.08572426577,2067.04686772115,1841.00610105348
43.5498627630375,2807.92349513505,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2218.34837781229,1886.06419052662,2032.52644507455,2020.98454460787,1821.13708791735,2073.38852356042,1841.00610105348
43.6413540713632,2808.00111930468,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2218.34837781229,1886.06419052662,2032.52644507455,2020.98454460787,1821.02801766149,2073.38852356042,1841.00610105348
43.7328453796889,2808.69810994354,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1821.02801766149,2073.38852356042,1841.00610105348
43.8243366880146,2808.77544422484,2416.47303922424,2120.12537940379,2341.04256258082,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1820.91916850795,2073.38852356042,1841.00610105348
43.9158279963403,2810.09197147525,2416.47303922424,2120.12537940379,2339.81173444359,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1820.91916850795,2073.38852356042,1841.00610105348
44.0073193046661,2811.38516165067,2416.47303922424,2120.12537940379,2338.60196090057,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1820.91916850795,2073.38852356042,1841.00610105348
44.0988106129918,2811.69470656741,2416.47303922424,2120.12537940379,2338.60196090057,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1820.91916850795,2072.91620936605,1841.00610105348
44.1903019213175,2812.96450696699,2416.47303922424,2120.12537940379,2337.41115586045,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1820.91916850795,2072.91620936605,1841.00610105348
44.2817932296432,2813.26957664648,2416.47303922424,2120.12537940379,2337.41115586045,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.98454460787,1820.91916850795,2072.44904195014,1841.00610105348
44.3732845379689,2813.49636702348,2416.47303922424,2120.12537940379,2337.41115586045,1967.04160786931,2217.37174720617,1886.06419052662,2032.52644507455,2020.67077675775,1820.91916850795,2072.44904195014,1841.00610105348
44.4647758462946,2813.61322343957,2416.47303922424,2120.12537940379,2337.41115586045,1967.04160786931,2217.37174720617,1885.78273990659,2032.52644507455,2020.67077675775,1820.91916850795,2072.44904195014,1841.00610105348
44.5562671546203,2813.70653270159,2416.47303922424,2120.12537940379,2337.41115586045,1967.04160786931,2217.37174720617,1885.78273990659,2032.52644507455,2020.67077675775,1820.91916850795,2072.44904195014,1840.76451344255
44.647758462946,2813.70653270159,2416.47303922424,2120.12537940379,2337.41115586045,1996.72806801703,2195.12325870963,1885.78273990659,2032.52644507455,2020.67077675775,1820.91916850795,2072.44904195014,1840.76451344255
44.7392497712717,2815.59493563962,2414.75600012055,2120.12537940379,2337.41115586045,1996.72806801703,2195.12325870963,1885.78273990659,2032.52644507455,2020.67077675775,1820.91916850795,2072.44904195014,1840.76451344255
44.8307410795974,2815.59493563962,2414.75600012055,2120.12537940379,2337.41115586045,1996.72806801703,2195.12325870963,1870.45652031467,2042.36002057725,2020.67077675775,1820.91916850795,2072.44904195014,1840.76451344255
44.9222323879231,2815.59493563962,2414.75600012055,2132.23671734766,2337.41115586045,1996.72806801703,2195.12325870963,1870.45652031467,2030.12619769057,2020.67077675775,1820.91916850795,2072.44904195014,1840.76451344255
45.0137236962489,2815.59493563962,2417.7698450129,2127.11459477767,2337.41115586045,1996.72806801703,2195.12325870963,1870.45652031467,2030.12619769057,2020.67077675775,1820.91916850795,2072.44904195014,1840.76451344255
45.1052150045746,2815.59493563962,2417.7698450129,2127.11459477767,2337.41115586045,2007.13336962905,2195.12325870963,1870.45652031467,2030.12619769057,2020.67077675775,1820.91916850795,2072.44904195014,1824.47591945003
45.1967063129003,2815.59493563962,2417.7698450129,2127.11459477767,2343.14907018634,2007.13336962905,2186.60410358116,1870.45652031467,2030.12619769057,2020.67077675775,1820.91916850795,2072.44904195014,1824.47591945003
45.288197621226,2815.59493563962,2417.7698450129,2131.75430308936,2343.14907018634,2007.13336962905,2186.60410358116,1870.45652031467,2030.12619769057,2020.67077675775,1820.91916850795,2072.44904195014,1816.20573689029
45.3796889295517,2815.59493563962,2417.7698450129,2136.09264101624,2343.14907018634,2007.13336962905,2186.60410358116,1870.45652031467,2030.12619769057,2020.67077675775,1816.57845972207,2072.44904195014,1816.20573689029
45.4711802378774,2817.49762076923,2416.05815434783,2136.09264101624,2343.14907018634,2007.13336962905,2186.60410358116,1870.45652031467,2030.12619769057,2020.67077675775,1816.57845972207,2072.44904195014,1816.20573689029
45.5626715462031,2819.3520661511,2414.38774540931,2136.09264101624,2343.14907018634,2007.13336962905,2186.60410358116,1870.45652031467,2030.12619769057,2020.67077675775,1816.57845972207,2072.44904195014,1816.20573689029
45.6541628545288,2821.16069276396,2412.75660040342,2136.09264101624,2343.14907018634,2007.13336962905,2186.60410358116,1870.45652031467,2030.12619769057,2020.67077675775,1816.57845972207,2072.44904195014,1816.20573689029
45.7456541628545,2821.16069276396,2412.75660040342,2136.09264101624,2343.14907018634,2032.58737188987,2167.09370449287,1870.45652031467,2030.12619769057,2020.67077675775,1816.57845972207,2072.44904195014,1816.20573689029
45.8371454711802,2821.16069276396,2412.75660040342,2136.09264101624,2343.14907018634,2055.31183143707,2149.48540229605,1870.45652031467,2030.12619769057,2020.67077675775,1816.57845972207,2072.44904195014,1816.20573689029
45.928636779506,2821.16069276396,2414.51165614994,2136.09264101624,2343.14907018634,2055.31183143707,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1816.57845972207,2072.44904195014,1816.20573689029
46.0201280878317,2821.16069276396,2414.51165614994,2136.09264101624,2343.14907018634,2055.31183143707,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1830.47155477082,2072.44904195014,1791.20829705601
46.1116193961574,2822.95990821712,2412.89922745624,2136.09264101624,2343.14907018634,2055.31183143707,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1830.47155477082,2072.44904195014,1791.20829705601
46.2031107044831,2823.03444835252,2412.89922745624,2136.09264101624,2343.14907018634,2055.31183143707,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1830.36733366225,2072.44904195014,1791.20829705601
46.2946020128088,2823.03444835252,2414.97663772189,2136.09264101624,2343.14907018634,2051.43942795885,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1830.36733366225,2072.44904195014,1791.20829705601
46.3860933211345,2823.03444835252,2417.96647974372,2131.09091387922,2343.14907018634,2051.43942795885,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1830.36733366225,2072.44904195014,1791.20829705601
46.4775846294602,2823.29457187198,2417.96647974372,2131.09091387922,2343.14907018634,2051.02224176564,2149.48540229605,1870.45652031467,2030.12619769057,2017.87721153937,1830.36733366225,2072.44904195014,1791.20829705601
46.5690759377859,2823.29457187198,2417.96647974372,2131.09091387922,2329.00875925331,2051.02224176564,2168.92396511016,1870.45652031467,2030.12619769057,2017.87721153937,1830.36733366225,2072.44904195014,1791.20829705601
46.6605672461116,2823.69460128692,2417.96647974372,2130.51824261272,2329.00875925331,2051.02224176564,2168.92396511016,1870.45652031467,2030.12619769057,2017.87721153937,1830.36733366225,2072.44904195014,1791.20829705601
46.7520585544373,2823.69460128692,2417.96647974372,2130.51824261272,2329.00875925331,2051.02224176564,2168.92396511016,1891.76224227402,2030.12619769057,2017.87721153937,1818.26043810042,2072.44904195014,1791.20829705601
46.843549862763,2823.69460128692,2424.47822400408,2130.51824261272,2321.96016770259,2051.02224176564,2168.92396511016,1891.76224227402,2030.12619769057,2017.87721153937,1818.26043810042,2072.44904195014,1791.20829705601
46.9350411710887,2823.69460128692,2424.47822400408,2130.51824261272,2321.96016770259,2051.02224176564,2148.37648349486,1930.1029847567,2030.12619769057,2017.87721153937,1818.26043810042,2072.44904195014,1791.20829705601
47.0265324794145,2823.69460128692,2424.47822400408,2130.51824261272,2321.96016770259,2051.02224176564,2154.01073949689,1920.04295246703,2030.12619769057,2017.87721153937,1818.26043810042,2072.44904195014,1791.20829705601
47.1180237877402,2825.58980638447,2422.84235778708,2130.51824261272,2321.96016770259,2051.02224176564,2154.01073949689,1920.04295246703,2030.12619769057,2017.87721153937,1818.26043810042,2072.44904195014,1791.20829705601
47.2095150960659,2825.58980638447,2422.84235778708,2130.51824261272,2321.96016770259,2051.02224176564,2154.01073949689,1949.54807728542,2030.12619769057,2017.87721153937,1818.26043810042,2050.76840373006,1791.20829705601
47.3010064043916,2825.58980638447,2422.84235778708,2130.51824261272,2321.96016770259,2051.02224176564,2154.01073949689,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.3924977127173,2825.58980638447,2422.84235778708,2130.51824261272,2327.13667423792,2051.02224176564,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.483989021043,2825.58980638447,2422.84235778708,2130.51824261272,2330.33123101608,2045.32417182065,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.5754803293687,2826.74357468338,2422.84235778708,2130.51824261272,2329.28246035309,2045.32417182065,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.6669716376944,2828.59279358593,2421.23055030259,2130.51824261272,2329.28246035309,2045.32417182065,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.7584629460201,2828.59279358593,2421.23055030259,2130.51824261272,2332.32725937431,2039.94722355932,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.8499542543458,2830.40145244897,2419.65097527598,2130.51824261272,2332.32725937431,2039.94722355932,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
47.9414455626715,2831.52102504161,2419.65097527598,2130.51824261272,2331.30339658849,2039.94722355932,2147.1675451675,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
48.0329368709973,2831.52102504161,2419.65097527598,2130.51824261272,2335.95617078095,2039.94722355932,2140.84541175921,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
48.124428179323,2831.918492473,2419.65097527598,2130.51824261272,2335.95617078095,2039.94722355932,2140.3682000493,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1791.20829705601
48.2159194876487,2831.918492473,2419.65097527598,2130.51824261272,2336.78128693803,2039.94722355932,2140.3682000493,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.97539377536
48.3074107959744,2831.98062500232,2419.65097527598,2130.51824261272,2336.78128693803,2039.94722355932,2140.3682000493,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.3989021043001,2833.12172318194,2419.65097527598,2130.51824261272,2335.75715183779,2039.94722355932,2140.3682000493,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.4903934126258,2834.24569107556,2419.65097527598,2130.51824261272,2334.74746771193,2039.94722355932,2140.3682000493,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.5818847209515,2834.62036210747,2419.65097527598,2129.96329040824,2334.74746771193,2039.94722355932,2140.3682000493,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.6733760292772,2835.00972353773,2419.65097527598,2129.96329040824,2334.74746771193,2039.94722355932,2139.89573557198,1962.55703085663,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.7648673376029,2835.16248440288,2419.65097527598,2129.96329040824,2334.74746771193,2039.94722355932,2139.89573557198,1962.26270166587,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.8563586459286,2836.88572349231,2418.10034672892,2129.96329040824,2334.74746771193,2039.94722355932,2139.89573557198,1962.26270166587,2030.12619769057,2017.87721153937,1809.5350576354,2050.76840373006,1788.83576377102
48.9478499542543,2836.88572349231,2418.10034672892,2129.96329040824,2334.74746771193,2039.94722355932,2147.83415416117,1962.26270166587,2030.12619769057,2008.18084960733,1809.5350576354,2050.76840373006,1788.83576377102
49.0393412625801,2836.88572349231,2418.10034672892,2116.10680569064,2334.74746771193,2039.94722355932,2158.73811725803,1962.26270166587,2030.12619769057,2008.18084960733,1809.5350576354,2050.76840373006,1788.83576377102
49.1308325709058,2836.88572349231,2418.10034672892,2116.10680569064,2339.55525780182,2039.94722355932,2152.63041228553,1962.26270166587,2030.12619769057,2008.18084960733,1809.5350576354,2050.76840373006,1788.83576377102
49.2223238792315,2836.88572349231,2418.10034672892,2116.10680569064,2341.91847376637,2039.94722355932,2152.63041228553,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.3138151875572,2836.88572349231,2418.10034672892,2116.10680569064,2346.35771176297,2039.94722355932,2146.96489830414,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.4053064958829,2838.05677431695,2418.10034672892,2116.10680569064,2345.33866322661,2039.94722355932,2146.96489830414,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.4967978042086,2838.39678592643,2418.10034672892,2115.61881975174,2345.33866322661,2039.94722355932,2146.96489830414,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.5882891125343,2839.54870317346,2418.10034672892,2115.61881975174,2344.33286309161,2039.94722355932,2146.96489830414,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.67978042086,2839.88405345899,2418.10034672892,2115.13588681755,2344.33286309161,2039.94722355932,2146.96489830414,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.7712717291857,2841.01751630507,2418.10034672892,2115.13588681755,2343.33989071625,2039.94722355932,2146.96489830414,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.8627630375114,2841.40496866103,2418.10034672892,2115.13588681755,2343.33989071625,2039.94722355932,2146.53098545926,1962.26270166587,2030.12619769057,2004.36749331609,1809.5350576354,2050.76840373006,1788.83576377102
49.9542543458371,2841.40496866103,2418.10034672892,2115.13588681755,2343.33989071625,2039.94722355932,2153.27787610266,1962.26270166587,2030.12619769057,1995.68257928088,1809.5350576354,2050.76840373006,1788.83576377102
50.0457456541629,2841.40496866103,2418.10034672892,2115.13588681755,2343.33989071625,2039.94722355932,2160.34005914696,1962.26270166587,2019.19178014094,1995.68257928088,1809.5350576354,2050.76840373006,1788.83576377102
50.1372369624886,2841.40496866103,2418.10034672892,2115.13588681755,2347.85837443824,2039.94722355932,2154.85089100876,1962.26270166587,2019.19178014094,1995.68257928088,1809.5350576354,2050.76840373006,1788.83576377102
50.2287282708143,2841.40496866103,2418.10034672892,2115.13588681755,2349.92418994954,2039.94722355932,2154.85089100876,1962.26270166587,2019.19178014094,1992.35113799379,1809.5350576354,2050.76840373006,1788.83576377102
50.32021957914,2841.60330054701,2418.10034672892,2115.13588681755,2349.92418994954,2039.94722355932,2154.85089100876,1962.26270166587,2018.87933300264,1992.35113799379,1809.5350576354,2050.76840373006,1788.83576377102
50.4117108874657,2841.60330054701,2418.10034672892,2109.04765370192,2353.47635177517,2039.94722355932,2154.85089100876,1962.26270166587,2018.87933300264,1992.35113799379,1809.5350576354,2050.76840373006,1788.83576377102
50.5032021957914,2841.60330054701,2418.10034672892,2109.04765370192,2357.5744169552,2039.94722355932,2149.77546180289,1962.26270166587,2018.87933300264,1992.35113799379,1809.5350576354,2050.76840373006,1788.83576377102
50.5946935041171,2841.60330054701,2418.10034672892,2109.04765370192,2358.30491885699,2039.94722355932,2149.77546180289,1962.26270166587,2018.87933300264,1992.35113799379,1808.29366504148,2050.76840373006,1788.83576377102
50.6861848124428,2841.60330054701,2418.10034672892,2109.04765370192,2358.30491885699,2039.94722355932,2155.66591546638,1962.26270166587,2018.87933300264,1984.44659514584,1808.29366504148,2050.76840373006,1788.83576377102
50.7776761207685,2841.60330054701,2419.59630913075,2109.04765370192,2358.30491885699,2039.94722355932,2155.66591546638,1962.26270166587,2018.87933300264,1982.31678077532,1808.29366504148,2050.76840373006,1788.83576377102
50.8691674290942,2841.60330054701,2420.93668688256,2109.04765370192,2358.30491885699,2039.94722355932,2155.66591546638,1959.34490921644,2018.87933300264,1982.31678077532,1808.29366504148,2050.76840373006,1788.83576377102
50.9606587374199,2841.60330054701,2420.93668688256,2109.04765370192,2358.30491885699,2039.94722355932,2161.93188845861,1959.34490921644,2008.76262575855,1982.31678077532,1808.29366504148,2050.76840373006,1788.83576377102
51.0521500457457,2842.84359729659,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1959.34490921644,2008.76262575855,1982.31678077532,1808.29366504148,2050.76840373006,1788.83576377102
51.1436413540714,2842.84359729659,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1983.90086872379,2008.76262575855,1982.31678077532,1808.29366504148,2030.88940708147,1788.83576377102
51.2351326623971,2842.84359729659,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2044.20660878104,1788.83576377102
51.3266239707228,2843.07279344259,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2043.87000515256,1788.83576377102
51.4181152790485,2843.30154312338,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2043.53452190798,1788.83576377102
51.5096065873742,2843.52984916208,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2043.20015015281,1788.83576377102
51.6010978956999,2843.75771435112,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2042.86688109792,1788.83576377102
51.6925892040256,2843.81807331206,2420.93668688256,2109.04765370192,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2042.86688109792,1788.7002002883
51.7840805123513,2843.81807331206,2423.71476419473,2104.77607476769,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2042.86688109792,1788.7002002883
51.875571820677,2844.13795737414,2423.71476419473,2104.33547472449,2357.27605628165,2039.94722355932,2161.93188845861,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2042.86688109792,1788.7002002883
51.9670631290027,2844.13795737414,2423.71476419473,2120.65433861066,2357.27605628165,2039.94722355932,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1808.29366504148,2042.86688109792,1788.7002002883
52.0585544373285,2844.19961412975,2423.71476419473,2120.65433861066,2357.27605628165,2039.94722355932,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1808.20871290513,2042.86688109792,1788.7002002883
52.1500457456542,2844.26042613535,2423.71476419473,2120.65433861066,2357.27605628165,2039.94722355932,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1808.20871290513,2042.86688109792,1788.56441385068
52.2415370539799,2844.61038375446,2423.71476419473,2120.19049947038,2357.27605628165,2039.94722355932,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1808.20871290513,2042.86688109792,1788.56441385068
52.3330283623056,2844.67217295171,2423.71476419473,2120.19049947038,2357.27605628165,2039.94722355932,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1808.12359872729,2042.86688109792,1788.56441385068
52.4245196706313,2844.67217295171,2424.29927671894,2120.19049947038,2357.27605628165,2039.94722355932,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1807.2361106126,2042.86688109792,1788.56441385068
52.516010978957,2844.67217295171,2426.2695132132,2120.19049947038,2357.27605628165,2036.45558051429,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1807.2361106126,2042.86688109792,1788.56441385068
52.6075022872827,2845.02315480237,2426.2695132132,2119.72658970296,2357.27605628165,2036.45558051429,2150.44286480553,1967.66429628988,2008.76262575855,1982.31678077532,1807.2361106126,2042.86688109792,1788.56441385068
52.6989935956084,2845.21494613174,2426.2695132132,2119.72658970296,2357.27605628165,2036.45558051429,2150.44286480553,1967.66429628988,2008.47330818536,1982.31678077532,1807.2361106126,2042.86688109792,1788.56441385068
52.7904849039341,2845.21494613174,2429.12490141469,2115.54753309821,2357.27605628165,2036.45558051429,2150.44286480553,1967.66429628988,2008.47330818536,1982.31678077532,1807.2361106126,2042.86688109792,1788.56441385068
52.8819762122598,2847.03209786049,2427.48709569435,2115.54753309821,2357.27605628165,2036.45558051429,2150.44286480553,1967.66429628988,2008.47330818536,1982.31678077532,1807.2361106126,2042.86688109792,1788.56441385068
52.9734675205855,2847.03209786049,2427.48709569435,2119.33959082705,2357.27605628165,2036.45558051429,2150.44286480553,1967.66429628988,2008.47330818536,1982.31678077532,1807.2361106126,2042.86688109792,1781.50188697096
53.0649588289113,2847.03209786049,2427.48709569435,2133.7369250943,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.47330818536,1982.31678077532,1807.2361106126,2042.86688109792,1781.50188697096
53.156450137237,2847.40442303828,2427.48709569435,2133.27556065172,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.47330818536,1982.31678077532,1807.2361106126,2042.86688109792,1781.50188697096
53.2479414455627,2847.59391050081,2427.48709569435,2133.27556065172,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.2361106126,2042.86688109792,1781.50188697096
53.3394327538884,2847.82236923026,2427.48709569435,2133.27556065172,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.2361106126,2042.5317126193,1781.50188697096
53.4309240622141,2848.19326693508,2427.48709569435,2132.81585370335,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.2361106126,2042.5317126193,1781.50188697096
53.5224153705398,2848.42091538851,2427.48709569435,2132.81585370335,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.2361106126,2042.19782313716,1781.50188697096
53.6139066788655,2848.48201895229,2427.48709569435,2132.81585370335,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.15163083065,2042.19782313716,1781.50188697096
53.7053979871912,2848.8520225771,2427.48709569435,2132.35744927319,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.15163083065,2042.19782313716,1781.50188697096
53.7968892955169,2848.9131189125,2427.48709569435,2132.35744927319,2357.27605628165,2036.45558051429,2139.63924046663,1967.66429628988,2008.18607176032,1982.31678077532,1807.06713665851,2042.19782313716,1781.50188697096
53.8883806038426,2848.9131189125,2427.48709569435,2132.35744927319,2357.27605628165,2036.45558051429,2146.87807586711,1967.66429628988,2008.18607176032,1982.31678077532,1807.06713665851,2030.8880468234,1781.50188697096
53.9798719121683,2849.28315486156,2427.48709569435,2131.89973516578,2357.27605628165,2036.45558051429,2146.87807586711,1967.66429628988,2008.18607176032,1982.31678077532,1807.06713665851,2030.8880468234,1781.50188697096
54.071363220494,2849.44482991673,2427.48709569435,2131.89973516578,2357.27605628165,2036.45558051429,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.8880468234,1781.50188697096
54.1628545288198,2849.44482991673,2427.48709569435,2131.89973516578,2359.86482127153,2031.65270922213,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.8880468234,1781.50188697096
54.2543458371455,2850.69870687743,2427.48709569435,2131.89973516578,2358.78304542226,2031.65270922213,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.8880468234,1781.50188697096
54.3458371454712,2852.46728630845,2425.85387847083,2131.89973516578,2358.78304542226,2031.65270922213,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.8880468234,1781.50188697096
54.4373284537969,2854.19327618551,2424.25855142618,2131.89973516578,2358.78304542226,2031.65270922213,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.8880468234,1781.50188697096
54.5288197621226,2855.38784493324,2424.25855142618,2131.89973516578,2357.73203387099,2031.65270922213,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.8880468234,1781.50188697096
54.6203110704483,2855.59055555418,2424.25855142618,2131.89973516578,2357.73203387099,2031.65270922213,2146.87807586711,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.59476231381,1781.50188697096
54.711802378774,2855.59055555418,2424.25855142618,2131.89973516578,2357.73203387099,2031.65270922213,2149.1942934463,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.59476231381,1775.74732119592
54.8032936870997,2855.97030780927,2424.25855142618,2131.89973516578,2357.73203387099,2031.65270922213,2148.82896683636,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.59476231381,1775.74732119592
54.8947849954254,2857.14730220362,2424.25855142618,2131.89973516578,2356.69106344657,2031.65270922213,2148.82896683636,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.59476231381,1775.74732119592
54.9862763037511,2857.49439570637,2424.25855142618,2131.45598060531,2356.69106344657,2031.65270922213,2148.82896683636,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.59476231381,1775.74732119592
55.0777676120769,2857.84013844675,2424.25855142618,2131.0144209298,2356.69106344657,2031.65270922213,2148.82896683636,1967.66429628988,2008.18607176032,1982.10442862498,1807.06713665851,2030.59476231381,1775.74732119592
55.1692589204026,2857.99185421889,2424.25855142618,2131.0144209298,2356.69106344657,2031.65270922213,2148.82896683636,1967.66429628988,2008.18607176032,1981.89845125138,1807.06713665851,2030.59476231381,1775.74732119592
55.2607502287283,2859.14852955316,2424.25855142618,2131.0144209298,2355.66138850682,2031.65270922213,2148.82896683636,1967.66429628988,2008.18607176032,1981.89845125138,1807.06713665851,2030.59476231381,1775.74732119592
55.352241537054,2859.14852955316,2424.25855142618,2131.0144209298,2355.66138850682,2031.65270922213,2148.82896683636,1978.63014736154,2008.18607176032,1981.89845125138,1798.40599707545,2030.59476231381,1775.74732119592
55.4437328453797,2859.14852955316,2424.25855142618,2131.0144209298,2355.66138850682,2031.65270922213,2148.82896683636,1978.63014736154,2008.18607176032,1981.89845125138,1821.39183992744,2006.5615527601,1775.74732119592
55.5352241537054,2859.14852955316,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2155.60536533908,1978.63014736154,2008.18607176032,1981.89845125138,1821.39183992744,2006.5615527601,1775.74732119592
55.6267154620311,2859.29984420655,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2155.60536533908,1978.63014736154,2008.18607176032,1981.6926064301,1821.39183992744,2006.5615527601,1775.74732119592
55.7182067703568,2859.45110337722,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2155.60536533908,1978.63014736154,2008.18607176032,1981.48703388594,1821.39183992744,2006.5615527601,1775.74732119592
55.8096980786825,2859.45110337722,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2161.55613494332,1978.63014736154,1998.11217359159,1981.48703388594,1821.39183992744,2006.5615527601,1775.74732119592
55.9011893870082,2859.51318487723,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2161.55613494332,1978.63014736154,1998.11217359159,1981.48703388594,1821.30773286696,2006.5615527601,1775.74732119592
55.9926806953339,2859.57535211336,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2161.55613494332,1978.63014736154,1998.11217359159,1981.48703388594,1821.22357608233,2006.5615527601,1775.74732119592
56.0841720036597,2859.57535211336,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2167.25351161249,1978.63014736154,1998.11217359159,1981.48703388594,1821.22357608233,1997.71730080476,1775.74732119592
56.1756633119854,2859.62840419839,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2167.25351161249,1978.63014736154,1998.11217359159,1981.48703388594,1821.22357608233,1997.71730080476,1775.63384048887
56.2671546203111,2859.62840419839,2424.25855142618,2131.0144209298,2355.66138850682,2020.23397004634,2172.54334451712,1978.63014736154,1998.11217359159,1981.48703388594,1821.22357608233,1989.62601649328,1775.63384048887
56.3586459286368,2859.62840419839,2424.25855142618,2131.0144209298,2355.66138850682,2010.51168236924,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1821.22357608233,1989.62601649328,1775.63384048887
56.4501372369625,2859.62840419839,2424.25855142618,2131.0144209298,2355.66138850682,2010.51168236924,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1842.00802732569,1969.37517792059,1775.63384048887
56.5416285452882,2859.62840419839,2424.25855142618,2131.0144209298,2355.66138850682,2019.29944723883,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1834.18158739864,1969.37517792059,1775.63384048887
56.6331198536139,2859.62840419839,2424.25855142618,2131.0144209298,2355.66138850682,2019.29944723883,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1852.67083280336,1950.7590318035,1775.63384048887
56.7246111619396,2860.80381572399,2424.25855142618,2131.0144209298,2354.60669941226,2019.29944723883,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1852.67083280336,1950.7590318035,1775.63384048887
56.8161024702653,2862.47456157966,2422.65292597325,2131.0144209298,2354.60669941226,2019.29944723883,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1852.67083280336,1950.7590318035,1775.63384048887
56.907593778591,2862.47456157966,2422.65292597325,2131.0144209298,2354.60669941226,2019.29944723883,2178.09380803083,1978.63014736154,1998.11217359159,1981.48703388594,1869.40293660228,1933.91703720805,1775.63384048887
56.9990850869167,2862.47456157966,2422.65292597325,2131.0144209298,2354.60669941226,2019.29944723883,2183.05347093315,1978.63014736154,1989.43038516387,1981.48703388594,1869.40293660228,1933.91703720805,1775.63384048887
57.0905763952425,2862.47456157966,2423.52582578644,2131.0144209298,2354.60669941226,2019.29944723883,2183.05347093315,1978.63014736154,1989.43038516387,1981.48703388594,1868.29158638451,1933.91703720805,1775.63384048887
57.1820677035682,2862.62861560359,2423.52582578644,2131.0144209298,2354.60669941226,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.48703388594,1868.29158638451,1933.91703720805,1775.63384048887
57.2735590118939,2862.62861560359,2423.52582578644,2131.0144209298,2355.78413524489,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.48703388594,1866.70958223981,1933.91703720805,1775.63384048887
57.3650503202196,2863.78711190144,2423.52582578644,2131.0144209298,2354.73872235338,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.48703388594,1866.70958223981,1933.91703720805,1775.63384048887
57.4565416285453,2863.93807917145,2423.52582578644,2131.0144209298,2354.73872235338,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.280170109,1866.70958223981,1933.91703720805,1775.63384048887
57.548032936871,2864.01653874745,2423.52582578644,2131.0144209298,2354.73872235338,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.280170109,1866.61522567281,1933.91703720805,1775.63384048887
57.6395242451967,2864.36114466315,2423.52582578644,2130.56768816382,2354.73872235338,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.280170109,1866.61522567281,1933.91703720805,1775.63384048887
57.7310155535224,2864.70438449279,2423.52582578644,2130.12321357638,2354.73872235338,2019.29944723883,2183.05347093315,1978.36585369483,1989.43038516387,1981.280170109,1866.61522567281,1933.91703720805,1775.63384048887
57.8225068618481,2865.15179981067,2423.52582578644,2130.12321357638,2354.73872235338,2019.29944723883,2182.65491292926,1978.36585369483,1989.43038516387,1981.280170109,1866.61522567281,1933.91703720805,1775.63384048887
57.9139981701738,2866.28918599447,2423.52582578644,2130.12321357638,2353.70266291149,2019.29944723883,2182.65491292926,1978.36585369483,1989.43038516387,1981.280170109,1866.61522567281,1933.91703720805,1775.63384048887
58.0054894784995,2866.43809339619,2423.52582578644,2130.12321357638,2353.70266291149,2019.29944723883,2182.65491292926,1978.36585369483,1989.43038516387,1981.07461448804,1866.61522567281,1933.91703720805,1775.63384048887
58.0969807868252,2866.43809339619,2423.52582578644,2130.12321357638,2355.82896247898,2019.29944723883,2182.65491292926,1978.36585369483,1989.43038516387,1977.7955309598,1866.61522567281,1933.91703720805,1775.63384048887
58.188472095151,2866.88042868874,2423.52582578644,2130.12321357638,2355.82896247898,2019.29944723883,2182.25771684001,1978.36585369483,1989.43038516387,1977.7955309598,1866.61522567281,1933.91703720805,1775.63384048887
58.2799634034767,2866.88042868874,2423.52582578644,2130.12321357638,2355.82896247898,2019.29944723883,2186.79879339338,1978.36585369483,1989.43038516387,1970.74697702519,1866.61522567281,1933.91703720805,1775.63384048887
58.3714547118024,2867.02066017386,2423.52582578644,2130.12321357638,2355.82896247898,2019.29944723883,2186.79879339338,1978.36585369483,1989.43038516387,1970.56168416944,1866.61522567281,1933.91703720805,1775.63384048887
58.4629460201281,2867.13417356189,2423.52582578644,2130.12321357638,2355.82896247898,2019.29944723883,2186.79879339338,1978.36585369483,1989.43038516387,1970.56168416944,1866.61522567281,1933.77624321193,1775.63384048887
58.5544373284538,2867.3201339008,2423.52582578644,2130.12321357638,2355.82896247898,2019.02961837823,2186.79879339338,1978.36585369483,1989.43038516387,1970.56168416944,1866.61522567281,1933.77624321193,1775.63384048887
58.6459286367795,2867.65982013169,2423.52582578644,2129.68019941203,2355.82896247898,2019.02961837823,2186.79879339338,1978.36585369483,1989.43038516387,1970.56168416944,1866.61522567281,1933.77624321193,1775.63384048887
58.7374199451052,2867.80008310773,2423.52582578644,2129.68019941203,2355.82896247898,2019.02961837823,2186.79879339338,1978.36585369483,1989.43038516387,1970.3762416073,1866.61522567281,1933.77624321193,1775.63384048887
58.8289112534309,2868.93843818279,2423.52582578644,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1989.43038516387,1970.3762416073,1866.61522567281,1933.77624321193,1775.63384048887
58.9204025617566,2868.99013094179,2423.52582578644,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1989.43038516387,1970.3762416073,1866.61522567281,1933.77624321193,1775.52296028004
59.0118938700823,2870.60644461759,2421.92235423219,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1989.43038516387,1970.3762416073,1866.61522567281,1933.77624321193,1775.52296028004
59.1033851784081,2870.60644461759,2423.64838827552,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1986.76346910179,1970.3762416073,1866.61522567281,1933.77624321193,1775.52296028004
59.1948764867338,2870.60644461759,2423.64838827552,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1970.18289311156,1985.22148949606,1866.61522567281,1933.77624321193,1775.52296028004
59.2863677950595,2870.60644461759,2424.2207018768,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1970.18289311156,1985.22148949606,1866.61522567281,1933.77624321193,1774.19006413039
59.3778591033852,2872.21601559264,2422.64195754884,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1970.18289311156,1985.22148949606,1866.61522567281,1933.77624321193,1774.19006413039
59.4693504117109,2872.35287087154,2422.64195754884,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1933.77624321193,1774.19006413039
59.5608417200366,2873.9276617416,2421.09579989204,2129.68019941203,2354.79122874086,2019.02961837823,2186.79879339338,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1933.77624321193,1774.19006413039
59.6523330283623,2875.01163606667,2421.09579989204,2129.68019941203,2353.77536824842,2019.02961837823,2186.79879339338,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1933.77624321193,1774.19006413039
59.743824336688,2875.01163606667,2421.09579989204,2129.68019941203,2353.77536824842,2019.02961837823,2190.55968075907,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1774.19006413039
59.8353156450137,2875.01163606667,2424.49324742967,2125.00350971118,2353.77536824842,2019.02961837823,2190.55968075907,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1774.19006413039
59.9268069533394,2875.01163606667,2428.83281224888,2125.00350971118,2353.77536824842,2019.02961837823,2186.51715637646,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1774.19006413039
60.0182982616651,2875.01163606667,2429.36613673807,2125.00350971118,2353.77536824842,2019.02961837823,2186.51715637646,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.1097895699909,2875.01163606667,2429.36613673807,2125.00350971118,2359.34376766792,2019.02961837823,2181.22924618173,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.2012808783166,2875.43215105018,2429.36613673807,2125.00350971118,2359.34376766792,2019.02961837823,2180.86109421395,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.2927721866423,2875.74774554349,2429.36613673807,2124.58923306723,2359.34376766792,2019.02961837823,2180.86109421395,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.384263494968,2877.35369366227,2427.83106875026,2124.58923306723,2359.34376766792,2019.02961837823,2180.86109421395,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.4757548032937,2878.44701216084,2427.83106875026,2124.58923306723,2358.32744679671,2019.02961837823,2180.86109421395,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.5672461116194,2878.85522962549,2427.83106875026,2124.58923306723,2358.32744679671,2019.02961837823,2180.49764659677,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.6587374199451,2880.40811002531,2426.33396983001,2124.58923306723,2358.32744679671,2019.02961837823,2180.49764659677,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.7502287282708,2881.92754533694,2424.86855651733,2124.58923306723,2358.32744679671,2019.02961837823,2180.49764659677,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.8417200365965,2881.92754533694,2424.86855651733,2134.60064414991,2358.32744679671,2007.51781770661,2180.49764659677,1978.36585369483,1969.98772483087,1985.22148949606,1866.61522567281,1928.45492039969,1772.9057194779
60.9332113449222,2881.99830202867,2424.86855651733,2134.60064414991,2358.32744679671,2007.51781770661,2180.49764659677,1978.36585369483,1969.98772483087,1985.22148949606,1866.52406753839,1928.45492039969,1772.9057194779
61.0247026532479,2881.99830202867,2428.18279099442,2130.07428204075,2358.32744679671,2007.51781770661,2180.49764659677,1978.36585369483,1969.98772483087,1985.22148949606,1866.52406753839,1928.45492039969,1772.9057194779
61.1161939615737,2881.99830202867,2429.61735554427,2130.07428204075,2358.32744679671,2007.51781770661,2180.49764659677,1978.36585369483,1967.71453343884,1985.22148949606,1866.52406753839,1928.45492039969,1772.9057194779
61.2076852698994,2881.99830202867,2429.61735554427,2130.07428204075,2358.32744679671,2017.28496249381,2180.49764659677,1978.36585369483,1967.71453343884,1985.22148949606,1857.99774004892,1928.45492039969,1772.9057194779
61.2991765782251,2881.99830202867,2429.61735554427,2130.07428204075,2358.32744679671,2017.28496249381,2180.49764659677,1978.36585369483,1967.71453343884,1991.92251532664,1857.99774004892,1928.45492039969,1761.05552348745
61.3906678865508,2881.99830202867,2429.61735554427,2133.19466824613,2358.32744679671,2017.28496249381,2180.49764659677,1978.36585369483,1967.71453343884,1991.92251532664,1857.99774004892,1928.45492039969,1755.51759353523
61.4821591948765,2881.99830202867,2429.61735554427,2133.19466824613,2360.61457936518,2017.28496249381,2180.49764659677,1978.36585369483,1967.71453343884,1988.71509202762,1857.99774004892,1928.45492039969,1755.51759353523
61.5736505032022,2881.99830202867,2431.03148514965,2133.19466824613,2360.61457936518,2017.28496249381,2180.49764659677,1978.36585369483,1965.49387950748,1988.71509202762,1857.99774004892,1928.45492039969,1755.51759353523
61.6651418115279,2883.56546926212,2429.56127615065,2133.19466824613,2360.61457936518,2017.28496249381,2180.49764659677,1978.36585369483,1965.49387950748,1988.71509202762,1857.99774004892,1928.45492039969,1755.51759353523
61.7566331198536,2883.56546926212,2429.56127615065,2133.19466824613,2360.61457936518,2026.14077444241,2180.49764659677,1978.36585369483,1965.49387950748,1988.71509202762,1850.21759932954,1928.45492039969,1755.51759353523
61.8481244281793,2883.56546926212,2429.56127615065,2133.19466824613,2360.61457936518,2047.1029167722,2167.0005872186,1978.36585369483,1965.49387950748,1988.71509202762,1850.21759932954,1928.45492039969,1755.51759353523
61.939615736505,2883.56546926212,2429.56127615065,2133.19466824613,2360.61457936518,2047.1029167722,2167.0005872186,1978.36585369483,1965.49387950748,1997.45813269927,1842.00595221667,1928.45492039969,1755.51759353523
62.0311070448307,2883.76207992665,2429.56127615065,2133.19466824613,2360.61457936518,2046.84133849257,2167.0005872186,1978.36585369483,1965.49387950748,1997.45813269927,1842.00595221667,1928.45492039969,1755.51759353523
62.1225983531564,2883.76207992665,2429.56127615065,2133.19466824613,2360.61457936518,2046.84133849257,2167.0005872186,1978.36585369483,1965.49387950748,1997.45813269927,1857.66942841899,1911.30421384696,1755.51759353523
62.2140896614822,2884.83812275015,2429.56127615065,2133.19466824613,2359.59488545336,2046.84133849257,2167.0005872186,1978.36585369483,1965.49387950748,1997.45813269927,1857.66942841899,1911.30421384696,1755.51759353523
62.3055809698079,2886.37268551227,2428.10974020758,2133.19466824613,2359.59488545336,2046.84133849257,2167.0005872186,1978.36585369483,1965.49387950748,1997.45813269927,1857.66942841899,1911.30421384696,1755.51759353523
62.3970722781336,2886.37268551227,2428.10974020758,2133.19466824613,2340.69864067425,2046.84133849257,2167.0005872186,1978.36585369483,1965.49387950748,1997.45813269927,1857.66942841899,1936.95437449475,1755.51759353523
62.4885635864593,2886.37268551227,2429.52184701487,2133.19466824613,2340.69864067425,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1997.45813269927,1857.66942841899,1936.95437449475,1755.51759353523
62.580054894785,2886.37268551227,2429.52184701487,2133.19466824613,2343.2708979331,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1993.9650914911,1857.66942841899,1936.95437449475,1755.51759353523
62.6715462031107,2886.37268551227,2431.13200341054,2133.19466824613,2343.2708979331,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
62.7630375114364,2886.68449022265,2431.13200341054,2132.79758076539,2343.2708979331,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
62.8545288197621,2887.65015402653,2431.13200341054,2132.79758076539,2342.3640411799,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
62.9460201280878,2887.95840811158,2431.13200341054,2132.40368794134,2342.3640411799,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.0375114364135,2888.91064923959,2431.13200341054,2132.40368794134,2341.46776874892,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.1290027447393,2889.21545764799,2431.13200341054,2132.0129138009,2341.46776874892,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.220494053065,2890.72733611713,2429.69950256018,2132.0129138009,2341.46776874892,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.3119853613907,2892.20764870462,2428.29614244331,2132.0129138009,2341.46776874892,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.4034766697164,2893.6577322963,2426.92070512519,2132.0129138009,2341.46776874892,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.4949679780421,2894.56014452279,2426.92070512519,2132.0129138009,2340.59684004772,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.5864592863678,2895.97110449263,2425.57516453599,2132.0129138009,2340.59684004772,2046.84133849257,2167.0005872186,1978.36585369483,1963.2730500294,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.6779505946935,2896.08481646527,2425.57516453599,2132.0129138009,2340.59684004772,2046.84133849257,2167.0005872186,1978.36585369483,1963.10314893503,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.7694419030192,2896.1985560115,2425.57516453599,2132.0129138009,2340.59684004772,2046.84133849257,2167.0005872186,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1936.95437449475,1755.51759353523
63.8609332113449,2896.1985560115,2425.57516453599,2132.0129138009,2322.05628448823,2046.84133849257,2167.0005872186,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1962.46517104366,1755.51759353523
63.9524245196706,2896.1985560115,2432.70332118213,2132.0129138009,2314.86119394243,2046.84133849257,2167.0005872186,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1962.46517104366,1755.51759353523
64.0439158279963,2896.96907315484,2432.70332118213,2132.0129138009,2314.13636883712,2046.84133849257,2167.0005872186,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1962.46517104366,1755.51759353523
64.135407136322,2898.4064255667,2431.35834903934,2132.0129138009,2314.13636883712,2046.84133849257,2167.0005872186,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1962.46517104366,1755.51759353523
64.2268984446478,2899.159484616,2431.35834903934,2132.0129138009,2313.42240718067,2046.84133849257,2167.0005872186,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1962.46517104366,1755.51759353523
64.3183897529735,2899.159484616,2431.35834903934,2132.0129138009,2319.40782201316,2046.84133849257,2160.85107260779,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1962.46517104366,1755.51759353523
64.4098810612992,2899.159484616,2431.35834903934,2132.0129138009,2319.40782201316,2046.84133849257,2165.72374843644,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1755.51759353523
64.5013723696249,2899.159484616,2431.35834903934,2132.0129138009,2319.40782201316,2046.84133849257,2167.53997984409,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
64.5928636779506,2899.159484616,2431.35834903934,2132.0129138009,2319.40782201316,2036.7666053283,2173.98741046042,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
64.6843549862763,2899.159484616,2431.35834903934,2132.0129138009,2325.34032210143,2036.7666053283,2168.21219760354,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
64.775846294602,2899.159484616,2431.35834903934,2132.0129138009,2330.8922643816,2036.7666053283,2162.80363553206,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
64.8673376029277,2899.159484616,2431.35834903934,2132.0129138009,2336.10449276449,2036.7666053283,2157.72266118865,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
64.9588289112534,2900.0147064415,2431.35834903934,2132.0129138009,2335.3605043857,2036.7666053283,2157.72266118865,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
65.0503202195791,2900.86057384326,2431.35834903934,2132.0129138009,2334.62395062693,2036.7666053283,2157.72266118865,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
65.1418115279048,2900.86057384326,2431.35834903934,2132.0129138009,2339.54887356719,2036.7666053283,2152.88011430686,1978.36585369483,1962.93339764695,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
65.2333028362306,2900.97288480133,2431.35834903934,2132.0129138009,2339.54887356719,2036.7666053283,2152.88011430686,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
65.3247941445563,2901.2809549886,2431.35834903934,2132.0129138009,2339.54887356719,2036.7666053283,2152.61996635128,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
65.416285452882,2901.58826443398,2431.35834903934,2132.0129138009,2339.54887356719,2036.7666053283,2152.3602764161,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1955.68230680528,1751.00682799055
65.5077767612077,2901.62541673116,2431.35834903934,2132.0129138009,2339.54887356719,2036.7666053283,2152.3602764161,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1955.68230680528,1750.9303442334
65.5992680695334,2901.62541673116,2431.35834903934,2132.0129138009,2339.54887356719,2036.7666053283,2156.77660523413,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1948.88700030788,1750.9303442334
65.6907593778591,2901.62541673116,2431.35834903934,2132.0129138009,2344.33766206455,2036.7666053283,2152.16413807199,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1948.88700030788,1750.9303442334
65.7822506861848,2901.62541673116,2431.35834903934,2132.0129138009,2344.33766206455,2036.7666053283,2156.32534299299,1978.36585369483,1962.76425660225,1991.80179134051,1857.66942841899,1942.44037349562,1750.9303442334
65.8737419945105,2901.62541673116,2431.35834903934,2132.0129138009,2344.33766206455,2044.67152778055,2156.32534299299,1978.36585369483,1962.76425660225,1991.80179134051,1850.55295861711,1942.44037349562,1750.9303442334
65.9652333028362,2901.62541673116,2431.35834903934,2132.0129138009,2345.40329184074,2044.67152778055,2156.32534299299,1978.36585369483,1962.76425660225,1991.80179134051,1849.02107516875,1942.44037349562,1750.9303442334
66.0567246111619,2901.62541673116,2431.35834903934,2132.0129138009,2350.0016898566,2044.67152778055,2151.94353829903,1978.36585369483,1962.76425660225,1991.80179134051,1849.02107516875,1942.44037349562,1750.9303442334
66.1482159194877,2901.62541673116,2431.35834903934,2132.0129138009,2352.70057524221,2040.26048570305,2151.94353829903,1978.36585369483,1962.76425660225,1991.80179134051,1849.02107516875,1942.44037349562,1750.9303442334
66.2397072278134,2901.93608393237,2431.35834903934,2132.0129138009,2352.70057524221,2040.26048570305,2151.69767093458,1978.36585369483,1962.76425660225,1991.80179134051,1849.02107516875,1942.44037349562,1750.9303442334
66.3311985361391,2901.93608393237,2431.35834903934,2132.0129138009,2352.70057524221,2040.26048570305,2155.67513626878,1978.36585369483,1962.76425660225,1991.80179134051,1849.02107516875,1936.25720334569,1750.9303442334
66.4226898444648,2901.97402661325,2431.35834903934,2132.0129138009,2352.70057524221,2040.26048570305,2155.67513626878,1978.36585369483,1962.76425660225,1991.80179134051,1849.02107516875,1936.25720334569,1750.85314556583
66.5141811527905,2901.97402661325,2431.35834903934,2132.0129138009,2352.70057524221,2040.26048570305,2160.15083596118,1966.99277722822,1962.76425660225,1991.80179134051,1849.02107516875,1936.25720334569,1750.85314556583
66.6056724611162,2901.97402661325,2431.35834903934,2132.0129138009,2352.70057524221,2040.26048570305,2164.22121539996,1966.99277722822,1954.48091149598,1991.80179134051,1849.02107516875,1936.25720334569,1750.85314556583
66.6971637694419,2901.97402661325,2431.35834903934,2132.0129138009,2354.429174809,2040.26048570305,2164.22121539996,1966.99277722822,1951.33962024392,1991.80179134051,1849.02107516875,1936.25720334569,1750.85314556583
66.7886550777676,2901.97402661325,2431.35834903934,2132.0129138009,2358.92366013132,2040.26048570305,2160.06337650913,1966.99277722822,1951.33962024392,1991.80179134051,1849.02107516875,1936.25720334569,1750.85314556583
66.8801463860933,2901.97402661325,2431.35834903934,2132.0129138009,2360.891535883,2040.26048570305,2160.06337650913,1966.99277722822,1951.33962024392,1988.53103572583,1849.02107516875,1936.25720334569,1750.85314556583
66.971637694419,2901.97402661325,2431.35834903934,2132.0129138009,2361.81833200217,2040.26048570305,2160.06337650913,1966.99277722822,1951.33962024392,1988.53103572583,1847.61375751791,1936.25720334569,1750.85314556583
67.0631290027447,2901.97402661325,2431.35834903934,2132.0129138009,2364.2513001492,2036.19528756735,2160.06337650913,1966.99277722822,1951.33962024392,1988.53103572583,1847.61375751791,1936.25720334569,1750.85314556583
67.1546203110704,2901.97402661325,2431.35834903934,2132.0129138009,2366.10373452005,2036.19528756735,2160.06337650913,1966.99277722822,1951.33962024392,1985.43323204246,1847.61375751791,1936.25720334569,1750.85314556583
67.2461116193962,2903.00448049816,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2160.06337650913,1966.99277722822,1951.33962024392,1985.43323204246,1847.61375751791,1936.25720334569,1750.85314556583
67.3376029277219,2903.33296059221,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2159.81663947728,1966.99277722822,1951.33962024392,1985.43323204246,1847.61375751791,1936.25720334569,1750.85314556583
67.4290942360476,2903.33296059221,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2164.25513823092,1966.99277722822,1951.33962024392,1977.73389495517,1847.61375751791,1936.25720334569,1750.85314556583
67.5205855443733,2903.66929329563,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2164.00638346993,1966.99277722822,1951.33962024392,1977.73389495517,1847.61375751791,1936.25720334569,1750.85314556583
67.612076852699,2903.79122437169,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2164.00638346993,1966.77726929757,1951.33962024392,1977.73389495517,1847.61375751791,1936.25720334569,1750.85314556583
67.7035681610247,2903.89951156348,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1977.73389495517,1847.61375751791,1936.25720334569,1750.85314556583
67.7950594693504,2903.89951156348,2431.35834903934,2132.0129138009,2365.30770519529,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1977.73389495517,1863.97932629188,1920.03074401606,1750.85314556583
67.8865507776761,2904.92070557262,2431.35834903934,2132.0129138009,2364.51030623864,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1977.73389495517,1863.97932629188,1920.03074401606,1750.85314556583
67.9780420860018,2904.92070557262,2431.35834903934,2132.0129138009,2366.27689125259,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1974.89438776636,1863.97932629188,1920.03074401606,1750.85314556583
68.0695333943275,2905.94033152737,2431.35834903934,2132.0129138009,2365.48561400937,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1974.89438776636,1863.97932629188,1920.03074401606,1750.85314556583
68.1610247026533,2905.94033152737,2434.75581506464,2127.26370304429,2365.48561400937,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1974.89438776636,1863.97932629188,1920.03074401606,1750.85314556583
68.252516010979,2905.94033152737,2436.26681770602,2127.26370304429,2365.48561400937,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1863.97932629188,1920.03074401606,1750.85314556583
68.3440073193047,2906.95140393664,2436.26681770602,2127.26370304429,2364.69844646302,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1863.97932629188,1920.03074401606,1750.85314556583
68.4354986276304,2907.23135303594,2436.26681770602,2126.89309631201,2364.69844646302,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1863.97932629188,1920.03074401606,1750.85314556583
68.5269899359561,2907.29498755793,2436.26681770602,2126.89309631201,2364.69844646302,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1863.90519785266,1920.03074401606,1750.85314556583
68.6184812442818,2907.29498755793,2437.09930615876,2126.89309631201,2364.69844646302,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1862.89061070506,1920.03074401606,1750.85314556583
68.7099725526075,2907.38238792133,2437.09930615876,2126.89309631201,2364.69844646302,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1862.89061070506,1919.92959436537,1750.85314556583
68.8014638609332,2907.38238792133,2437.09930615876,2150.73875131737,2351.03987567445,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1862.89061070506,1919.92959436537,1750.85314556583
68.8929551692589,2908.86829020951,2435.67223726716,2150.73875131737,2351.03987567445,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.95111660083,1862.89061070506,1919.92959436537,1750.85314556583
68.9844464775846,2908.98531168106,2435.67223726716,2150.73875131737,2351.03987567445,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.80750029113,1862.89061070506,1919.92959436537,1750.85314556583
69.0759377859103,2909.1023599263,2435.67223726716,2150.73875131737,2351.03987567445,2036.19528756735,2164.00638346993,1966.77726929757,1951.18512276295,1972.66393444471,1862.89061070506,1919.92959436537,1750.85314556583
69.167429094236,2909.1023599263,2437.73986506187,2150.73875131737,2351.03987567445,2033.36486956847,2164.00638346993,1966.77726929757,1951.18512276295,1972.66393444471,1862.89061070506,1919.92959436537,1750.85314556583
69.2589204025618,2909.21971717461,2437.73986506187,2150.73875131737,2351.03987567445,2033.36486956847,2164.00638346993,1966.77726929757,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.3504117108875,2909.53729272485,2437.73986506187,2150.32712206144,2351.03987567445,2033.36486956847,2164.00638346993,1966.77726929757,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.4419030192132,2911.01392857967,2436.32969780762,2150.32712206144,2351.03987567445,2033.36486956847,2164.00638346993,1966.77726929757,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.5333943275389,2911.13216590333,2436.32969780762,2150.32712206144,2351.03987567445,2033.36486956847,2164.00638346993,1966.56569488299,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.6248856358646,2911.4577650197,2436.32969780762,2150.32712206144,2351.03987567445,2033.36486956847,2163.75175234708,1966.56569488299,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.7163769441903,2912.9036442865,2434.94468858524,2150.32712206144,2351.03987567445,2033.36486956847,2163.75175234708,1966.56569488299,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.807868252516,2913.21163599073,2434.94468858524,2149.92251468652,2351.03987567445,2033.36486956847,2163.75175234708,1966.56569488299,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.8993595608417,2914.62688555624,2433.58608923059,2149.92251468652,2351.03987567445,2033.36486956847,2163.75175234708,1966.56569488299,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
69.9908508691674,2915.51438122577,2433.58608923059,2149.92251468652,2350.32295640548,2033.36486956847,2163.75175234708,1966.56569488299,1951.18512276295,1972.5201367969,1862.89061070506,1919.92959436537,1750.85314556583
70.0823421774931,2915.51438122577,2433.58608923059,2149.92251468652,2350.32295640548,2033.36486956847,2168.16998548988,1966.56569488299,1951.18512276295,1965.39054654443,1862.89061070506,1919.92959436537,1750.85314556583
70.1738334858188,2915.51438122577,2433.58608923059,2149.92251468652,2354.99655796562,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1965.39054654443,1862.89061070506,1919.92959436537,1750.85314556583
70.2653247941446,2915.51438122577,2434.42511829014,2149.92251468652,2354.99655796562,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1965.39054654443,1861.83790919457,1919.92959436537,1750.85314556583
70.3568161024703,2916.90727898079,2433.08660280651,2149.92251468652,2354.99655796562,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1965.39054654443,1861.83790919457,1919.92959436537,1750.85314556583
70.448307410796,2917.80173540117,2433.08660280651,2149.92251468652,2354.27990847305,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1965.39054654443,1861.83790919457,1919.92959436537,1750.85314556583
70.5397987191217,2918.09864505044,2433.08660280651,2149.52550917935,2354.27990847305,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1965.39054654443,1861.83790919457,1919.92959436537,1750.85314556583
70.6312900274474,2918.98219921277,2433.08660280651,2149.52550917935,2353.56938527,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1965.39054654443,1861.83790919457,1919.92959436537,1750.85314556583
70.7227813357731,2918.98219921277,2434.53617669849,2149.52550917935,2353.56938527,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1963.51604929834,1861.83790919457,1919.92959436537,1750.85314556583
70.8142726440988,2918.98219921277,2442.71432043874,2149.52550917935,2346.77439770029,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1963.51604929834,1861.83790919457,1919.92959436537,1750.85314556583
70.9057639524245,2918.98219921277,2446.0536654259,2144.68691310298,2346.77439770029,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1963.51604929834,1861.83790919457,1919.92959436537,1750.85314556583
70.9972552607502,2918.98219921277,2446.79995276468,2144.68691310298,2346.77439770029,2033.36486956847,2163.64521850456,1966.56569488299,1951.18512276295,1963.51604929834,1860.85247824679,1919.92959436537,1750.85314556583
71.0887465690759,2918.98219921277,2446.79995276468,2144.68691310298,2351.32671108506,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1963.51604929834,1860.85247824679,1919.92959436537,1750.85314556583
71.1802378774017,2919.27111827706,2446.79995276468,2144.30883736284,2351.32671108506,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1963.51604929834,1860.85247824679,1919.92959436537,1750.85314556583
71.2717291857274,2919.27111827706,2446.79995276468,2144.30883736284,2353.0763198589,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1960.70106880075,1860.85247824679,1919.92959436537,1750.85314556583
71.3632204940531,2919.27111827706,2446.79995276468,2144.30883736284,2353.0763198589,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1943.51206667051,1877.93041185268,1919.92959436537,1750.85314556583
71.4547118023788,2920.15461992885,2446.79995276468,2144.30883736284,2352.39492774578,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1943.51206667051,1877.93041185268,1919.92959436537,1750.85314556583
71.5462031107045,2920.24758926773,2446.79995276468,2144.30883736284,2352.39492774578,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1943.40259327552,1877.93041185268,1919.92959436537,1750.85314556583
71.6376944190302,2920.24758926773,2447.96271472688,2144.30883736284,2352.39492774578,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1941.914747554,1877.93041185268,1919.92959436537,1750.85314556583
71.7291857273559,2920.34000066234,2447.96271472688,2144.30883736284,2352.39492774578,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
71.8206770356816,2921.81103463258,2446.60383523095,2144.30883736284,2352.39492774578,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
71.9121683440073,2922.67736439044,2446.60383523095,2144.30883736284,2351.71807847994,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.003659652333,2923.53431834726,2446.60383523095,2144.30883736284,2351.04744361075,2033.36486956847,2159.0934926994,1966.56569488299,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.0951509606587,2923.53431834726,2450.01243930036,2144.30883736284,2351.04744361075,2033.36486956847,2156.18667141672,1966.56569488299,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.1866422689844,2924.98408155267,2448.6803379051,2144.30883736284,2351.04744361075,2033.36486956847,2156.18667141672,1966.56569488299,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.2781335773102,2925.0931330019,2448.6803379051,2144.30883736284,2351.04744361075,2033.36486956847,2156.18667141672,1966.36389295743,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.3696248856359,2925.0931330019,2451.79551554627,2139.7119743783,2351.04744361075,2033.36486956847,2156.18667141672,1966.36389295743,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.4611161939616,2925.0931330019,2454.98653178523,2139.7119743783,2351.04744361075,2033.36486956847,2153.39524970062,1966.36389295743,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.5526075022873,2925.9366408703,2454.98653178523,2139.7119743783,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1951.18512276295,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.644098810613,2926.03342498292,2454.98653178523,2139.7119743783,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1951.0377732571,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.7355901189387,2926.03342498292,2457.88684870462,2135.41317817947,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1951.0377732571,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.8270814272644,2927.52671869698,2456.56184108373,2135.41317817947,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1951.0377732571,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
72.9185727355901,2928.98967665014,2455.26222649279,2135.41317817947,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1951.0377732571,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.0100640439158,2929.08413284,2455.26222649279,2135.41317817947,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.1015553522415,2929.08413284,2458.0506690057,2131.26607559456,2350.37888452646,2033.36486956847,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.1930466605672,2929.08413284,2459.69803014518,2131.26607559456,2350.37888452646,2030.73472368032,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.2845379688929,2929.22956609783,2459.69803014518,2131.26607559456,2350.37888452646,2030.53720083335,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.3760292772187,2929.48214711035,2459.69803014518,2130.94303870571,2350.37888452646,2030.53720083335,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.4675205855444,2929.48214711035,2461.30662770237,2130.94303870571,2350.37888452646,2027.99211747459,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.92959436537,1750.85314556583
73.5590118938701,2929.5600779586,2461.30662770237,2130.94303870571,2350.37888452646,2027.99211747459,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.83141505563,1750.85314556583
73.6505032021958,2929.5600779586,2462.8761180252,2130.94303870571,2350.37888452646,2025.52565009038,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.83141505563,1750.85314556583
73.7419945105215,2929.5600779586,2464.40459294522,2130.94303870571,2350.37888452646,2023.13703224694,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1877.93041185268,1919.83141505563,1750.85314556583
73.8334858188472,2929.5600779586,2455.45723318709,2130.94303870571,2350.37888452646,2023.13703224694,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1891.06699848187,1919.83141505563,1750.85314556583
73.9249771271729,2929.5600779586,2458.11324775984,2126.91526503058,2350.37888452646,2023.13703224694,2153.39524970062,1966.36389295743,1950.8924497299,1941.80679576356,1891.06699848187,1919.83141505563,1750.85314556583
74.0164684354986,2929.5600779586,2459.10584189212,2126.91526503058,2350.37888452646,2023.13703224694,2153.39524970062,1966.36389295743,1950.8924497299,1940.36662266958,1891.06699848187,1919.83141505563,1750.85314556583
74.1079597438243,2929.5600779586,2459.10584189212,2126.91526503058,2350.37888452646,2023.13703224694,2153.39524970062,1966.36389295743,1950.8924497299,1940.36662266958,1878.6127741654,1932.86534980272,1750.85314556583
74.19945105215,2929.5600779586,2460.61969080084,2126.91526503058,2350.37888452646,2020.74237974965,2153.39524970062,1966.36389295743,1950.8924497299,1940.36662266958,1878.6127741654,1932.86534980272,1750.85314556583
74.2909423604758,2929.5600779586,2461.58665070597,2126.91526503058,2350.37888452646,2020.74237974965,2153.39524970062,1966.36389295743,1950.8924497299,1938.95997501948,1878.6127741654,1932.86534980272,1750.85314556583
74.3824336688015,2929.5600779586,2462.27514028488,2126.91526503058,2350.37888452646,2020.74237974965,2153.39524970062,1966.36389295743,1950.8924497299,1938.95997501948,1877.64031677107,1932.86534980272,1750.85314556583
74.4739249771272,2929.5600779586,2463.73334337875,2126.91526503058,2350.37888452646,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1938.95997501948,1877.64031677107,1932.86534980272,1750.85314556583
74.5654162854529,2929.5600779586,2470.13709866205,2126.91526503058,2344.01187129756,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1938.95997501948,1877.64031677107,1932.86534980272,1750.85314556583
74.6569075937786,2929.5600779586,2470.13709866205,2126.91526503058,2345.7091758954,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1936.39562594367,1877.64031677107,1932.86534980272,1750.85314556583
74.7483989021043,2929.5600779586,2472.46459327919,2123.25338006187,2345.7091758954,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1936.39562594367,1877.64031677107,1932.86534980272,1750.85314556583
74.83989021043,2931.18683479914,2471.1722208183,2123.25338006187,2345.7091758954,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1936.39562594367,1877.64031677107,1932.86534980272,1750.85314556583
74.9313815187557,2931.18683479914,2471.1722208183,2123.25338006187,2347.36929756998,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1933.9056506909,1877.64031677107,1932.86534980272,1750.85314556583
75.0228728270814,2931.18683479914,2471.1722208183,2123.25338006187,2347.36929756998,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1920.58799718023,1877.64031677107,1946.77965229423,1750.85314556583
75.1143641354071,2932.01147450922,2471.1722208183,2123.25338006187,2346.71320524981,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1920.58799718023,1877.64031677107,1946.77965229423,1750.85314556583
75.2058554437328,2932.82757522038,2471.1722208183,2123.25338006187,2346.06294681121,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1920.58799718023,1877.64031677107,1946.77965229423,1750.85314556583
75.2973467520586,2934.40574924273,2469.90169123205,2123.25338006187,2346.06294681121,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1920.58799718023,1877.64031677107,1946.77965229423,1750.85314556583
75.3888380603843,2934.482436584,2469.90169123205,2123.25338006187,2346.06294681121,2018.43340244088,2153.39524970062,1966.36389295743,1950.8924497299,1920.50005791251,1877.64031677107,1946.77965229423,1750.85314556583
75.48032936871,2934.482436584,2471.25166195825,2123.25338006187,2346.06294681121,2016.22840376816,2153.39524970062,1966.36389295743,1950.8924497299,1920.50005791251,1877.64031677107,1946.77965229423,1750.85314556583
75.5718206770357,2934.51647843581,2471.25166195825,2123.25338006187,2346.06294681121,2016.22840376816,2153.39524970062,1966.36389295743,1950.8924497299,1920.50005791251,1877.64031677107,1946.77965229423,1750.78221500317
75.6633119853614,2934.64986314168,2471.25166195825,2123.25338006187,2346.06294681121,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1920.50005791251,1877.64031677107,1946.77965229423,1750.78221500317
75.7548032936871,2934.64986314168,2471.25166195825,2123.25338006187,2347.60382818449,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1918.28514084131,1877.64031677107,1946.77965229423,1750.78221500317
75.8462946020128,2934.73988882399,2471.25166195825,2123.25338006187,2347.60382818449,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1918.28514084131,1877.64031677107,1946.67245086217,1750.78221500317
75.9377859103385,2934.73988882399,2471.25166195825,2123.25338006187,2349.11131814953,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1916.12940527839,1877.64031677107,1946.67245086217,1750.78221500317
76.0292772186642,2935.55872539674,2471.25166195825,2123.25338006187,2348.45856831773,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1916.12940527839,1877.64031677107,1946.67245086217,1750.78221500317
76.1207685269899,2935.55872539674,2471.89279681789,2123.25338006187,2348.45856831773,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1916.12940527839,1876.69574446366,1946.67245086217,1750.78221500317
76.2122598353156,2935.63398157395,2471.89279681789,2123.25338006187,2348.45856831773,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1916.04462746741,1876.69574446366,1946.67245086217,1750.78221500317
76.3037511436413,2935.70931312342,2471.89279681789,2123.25338006187,2348.45856831773,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1915.95979131057,1876.69574446366,1946.67245086217,1750.78221500317
76.3952424519671,2935.78471974364,2471.89279681789,2123.25338006187,2348.45856831773,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1915.87489709236,1876.69574446366,1946.67245086217,1750.78221500317
76.4867337602928,2937.36440112618,2470.6136733813,2123.25338006187,2348.45856831773,2016.05717335696,2153.39524970062,1966.36389295743,1950.8924497299,1915.87489709236,1876.69574446366,1946.67245086217,1750.78221500317
76.5782250686185,2937.49661750854,2470.6136733813,2123.25338006187,2348.45856831773,2015.88609807314,2153.39524970062,1966.36389295743,1950.8924497299,1915.87489709236,1876.69574446366,1946.67245086217,1750.78221500317
76.6697163769442,2937.49661750854,2471.25775172816,2123.25338006187,2348.45856831773,2015.88609807314,2153.39524970062,1966.36389295743,1950.8924497299,1915.87489709236,1875.74726136168,1946.67245086217,1750.78221500317
76.7612076852699,2937.49661750854,2472.60409077831,2123.25338006187,2348.45856831773,2013.70427612253,2153.39524970062,1966.36389295743,1950.8924497299,1915.87489709236,1875.74726136168,1946.67245086217,1750.78221500317
76.8526989935956,2937.49661750854,2472.60409077831,2123.25338006187,2348.45856831773,2034.2191330511,2140.05441348456,1966.36389295743,1950.8924497299,1915.87489709236,1875.74726136168,1946.67245086217,1750.78221500317
76.9441903019213,2937.49661750854,2474.06886190744,2123.25338006187,2348.45856831773,2031.94024907662,2140.05441348456,1966.36389295743,1950.8924497299,1915.87489709236,1875.74726136168,1946.67245086217,1750.78221500317
77.035681610247,2937.49661750854,2474.06886190744,2123.25338006187,2348.45856831773,2031.94024907662,2140.05441348456,1966.36389295743,1950.8924497299,1915.87489709236,1892.04668523848,1930.07240570343,1750.78221500317
77.1271729185727,2937.49661750854,2475.50223343493,2123.25338006187,2348.45856831773,2029.72395513934,2140.05441348456,1966.36389295743,1950.8924497299,1915.87489709236,1892.04668523848,1930.07240570343,1750.78221500317
77.2186642268984,2937.49661750854,2475.50223343493,2123.25338006187,2348.45856831773,2048.13232303496,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1892.04668523848,1930.07240570343,1750.78221500317
77.3101555352242,2937.49661750854,2476.17821614671,2123.25338006187,2348.45856831773,2048.13232303496,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1891.07235208384,1930.07240570343,1750.78221500317
77.4016468435499,2937.49661750854,2477.71235104473,2123.25338006187,2348.45856831773,2045.8489833944,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1891.07235208384,1930.07240570343,1750.78221500317
77.4931381518756,2937.74093040137,2477.71235104473,2122.94616652219,2348.45856831773,2045.8489833944,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1891.07235208384,1930.07240570343,1750.78221500317
77.5846294602013,2937.74093040137,2478.37454256429,2122.94616652219,2348.45856831773,2045.8489833944,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1890.11465627524,1930.07240570343,1750.78221500317
77.676120768527,2937.74093040137,2479.86861325386,2122.94616652219,2348.45856831773,2043.63220163408,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1890.11465627524,1930.07240570343,1750.78221500317
77.7676120768527,2937.74093040137,2479.86861325386,2122.94616652219,2348.45856831773,2051.60157408607,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1882.23893882903,1930.07240570343,1750.78221500317
77.8591033851784,2937.74093040137,2480.48963802439,2122.94616652219,2348.45856831773,2051.60157408607,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
77.9505946935041,2939.4149069378,2479.18443458178,2122.94616652219,2348.45856831773,2051.60157408607,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.0420860018298,2939.4149069378,2480.70455952084,2122.94616652219,2348.45856831773,2049.40777986384,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.1335773101555,2939.4149069378,2480.70455952084,2122.94616652219,2351.47559902757,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.2250686184812,2940.24640798839,2480.70455952084,2122.94616652219,2350.79982939781,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.316559926807,2940.48794355995,2480.70455952084,2122.64006749359,2350.79982939781,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.4080512351327,2940.48794355995,2482.87201353622,2119.07886717849,2350.79982939781,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.4995425434584,2940.72436685732,2482.87201353622,2118.7844908757,2350.79982939781,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.5910338517841,2942.39080233421,2481.57902011209,2118.7844908757,2350.79982939781,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.6825251601098,2943.20182783562,2481.57902011209,2118.7844908757,2350.13123633433,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.7740164684355,2943.20182783562,2483.68254544822,2115.3498579258,2350.13123633433,2045.30233250614,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.8655077767612,2943.35349482368,2483.68254544822,2115.3498579258,2350.13123633433,2045.13437329999,2127.58312361596,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
78.9569990850869,2943.35349482368,2483.68254544822,2115.3498579258,2350.13123633433,2061.04381316208,2115.51463818279,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
79.0484903934126,2944.16012816001,2483.68254544822,2115.3498579258,2349.46397256168,2061.04381316208,2115.51463818279,1966.36389295743,1950.8924497299,1915.87489709236,1881.36459065168,1930.07240570343,1750.78221500317
79.1399817017383,2944.16012816001,2483.68254544822,2115.3498579258,2349.46397256168,2061.04381316208,2115.51463818279,1983.94463214009,1950.8924497299,1915.87489709236,1871.44084208729,1930.07240570343,1750.78221500317
79.2314730100641,2944.16012816001,2483.68254544822,2115.3498579258,2349.46397256168,2075.53904649217,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1871.44084208729,1930.07240570343,1750.78221500317
79.3229643183898,2944.16012816001,2483.68254544822,2115.3498579258,2352.88020003561,2071.21501408465,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1871.44084208729,1930.07240570343,1750.78221500317
79.4144556267155,2944.33456672338,2483.68254544822,2115.3498579258,2352.88020003561,2071.03664194147,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1871.44084208729,1930.07240570343,1750.78221500317
79.5059469350412,2944.50887392178,2483.68254544822,2115.3498579258,2352.88020003561,2070.85841661452,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1871.44084208729,1930.07240570343,1750.78221500317
79.5974382433669,2946.15468519804,2482.39290795724,2115.3498579258,2352.88020003561,2070.85841661452,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1871.44084208729,1930.07240570343,1750.78221500317
79.6889295516926,2946.15468519804,2482.39290795724,2115.3498579258,2352.88020003561,2070.85841661452,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1886.32359011551,1913.7093377105,1750.78221500317
79.7804208600183,2946.15468519804,2482.39290795724,2115.3498579258,2352.88020003561,2077.16348684382,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1879.78147008574,1913.7093377105,1750.78221500317
79.871912168344,2947.77164172038,2481.12124184636,2115.3498579258,2352.88020003561,2077.16348684382,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1879.78147008574,1913.7093377105,1750.78221500317
79.9634034766697,2947.77164172038,2481.12124184636,2121.61473118317,2352.88020003561,2077.16348684382,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1874.62885149672,1913.7093377105,1750.78221500317
80.0548947849954,2948.00081780468,2481.12124184636,2121.33348409248,2352.88020003561,2077.16348684382,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1874.62885149672,1913.7093377105,1750.78221500317
80.1463860933211,2948.17651928664,2481.12124184636,2121.33348409248,2352.88020003561,2076.98519855788,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1874.62885149672,1913.7093377105,1750.78221500317
80.2378774016468,2948.17651928664,2481.12124184636,2121.33348409248,2352.88020003561,2076.98519855788,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1864.01610408731,1925.90475804221,1750.78221500317
80.3293687099726,2948.17651928664,2481.12124184636,2144.42489671676,2337.56070932326,2076.98519855788,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1864.01610408731,1925.90475804221,1750.78221500317
80.4208600182983,2948.17651928664,2481.68638308901,2144.42489671676,2337.56070932326,2076.98519855788,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1863.30731151066,1925.90475804221,1750.78221500317
80.512351326624,2948.17651928664,2482.01602970195,2144.42489671676,2337.56070932326,2076.98519855788,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1863.30731151066,1925.90475804221,1749.85537401691
80.6038426349497,2948.17651928664,2482.01602970195,2144.42489671676,2341.19592000707,2072.48291701705,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1863.30731151066,1925.90475804221,1749.85537401691
80.6953339432754,2948.43885399017,2482.01602970195,2144.11156496152,2341.19592000707,2072.48291701705,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1863.30731151066,1925.90475804221,1749.85537401691
80.7868252516011,2948.43885399017,2482.01602970195,2144.11156496152,2341.19592000707,2072.48291701705,2104.39802433074,1983.94463214009,1950.8924497299,1915.87489709236,1876.98090361463,1910.22276533327,1749.85537401691
80.8783165599268,2948.43885399017,2482.01602970195,2144.11156496152,2341.19592000707,2072.48291701705,2109.36616541939,1983.94463214009,1950.8924497299,1915.87489709236,1876.98090361463,1903.69537448563,1749.85537401691
80.9698078682525,2948.61238525955,2482.01602970195,2144.11156496152,2341.19592000707,2072.30997845797,2109.36616541939,1983.94463214009,1950.8924497299,1915.87489709236,1876.98090361463,1903.69537448563,1749.85537401691
81.0612991765782,2949.37251976958,2482.01602970195,2144.11156496152,2340.57654130941,2072.30997845797,2109.36616541939,1983.94463214009,1950.8924497299,1915.87489709236,1876.98090361463,1903.69537448563,1749.85537401691
81.1527904849039,2950.12535798735,2482.01602970195,2144.11156496152,2339.96234664068,2072.30997845797,2109.36616541939,1983.94463214009,1950.8924497299,1915.87489709236,1876.98090361463,1903.69537448563,1749.85537401691
81.2442817932296,2950.12535798735,2482.01602970195,2144.11156496152,2322.04706986539,2072.30997845797,2109.36616541939,1983.94463214009,1950.8924497299,1915.87489709236,1876.98090361463,1927.69886419106,1749.85537401691
81.3357731015553,2950.23916519597,2482.01602970195,2144.11156496152,2322.04706986539,2072.30997845797,2109.36616541939,1983.74159329874,1950.8924497299,1915.87489709236,1876.98090361463,1927.69886419106,1749.85537401691
81.4272644098811,2950.49971985609,2482.01602970195,2143.79851052812,2322.04706986539,2072.30997845797,2109.36616541939,1983.74159329874,1950.8924497299,1915.87489709236,1876.98090361463,1927.69886419106,1749.85537401691
81.5187557182068,2950.49971985609,2482.9642345705,2143.79851052812,2322.04706986539,2072.30997845797,2109.36616541939,1983.74159329874,1948.9666025852,1915.87489709236,1876.98090361463,1927.69886419106,1749.85537401691
81.6102470265325,2950.49971985609,2482.9642345705,2143.79851052812,2305.51904203334,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1915.87489709236,1876.98090361463,1927.69886419106,1749.85537401691
81.7017383348582,2950.57692171083,2482.9642345705,2143.79851052812,2305.51904203334,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1915.87489709236,1876.98090361463,1927.61689650549,1749.85537401691
81.7932296431839,2951.19884480866,2482.9642345705,2143.79851052812,2305.01768982477,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1915.87489709236,1876.98090361463,1927.61689650549,1749.85537401691
81.8847209515096,2952.8092696029,2481.66851185405,2143.79851052812,2305.01768982477,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1915.87489709236,1876.98090361463,1927.61689650549,1749.85537401691
81.9762122598353,2952.8657259297,2481.66851185405,2143.79851052812,2305.01768982477,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1915.87489709236,1876.92512025545,1927.61689650549,1749.85537401691
82.067703568161,2952.8657259297,2482.2918397857,2143.79851052812,2305.01768982477,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1915.87489709236,1876.16441373523,1927.61689650549,1749.85537401691
82.1591948764867,2952.8657259297,2482.2918397857,2143.79851052812,2306.98471716204,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1876.16441373523,1927.61689650549,1749.85537401691
82.2506861848124,2952.8657259297,2482.2918397857,2135.47554518091,2312.42764185441,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1876.16441373523,1927.61689650549,1749.85537401691
82.3421774931382,2953.50322306257,2482.2918397857,2135.47554518091,2311.92317705438,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1876.16441373523,1927.61689650549,1749.85537401691
82.4336688014639,2953.50322306257,2465.36298011717,2160.77865011069,2311.92317705438,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1876.16441373523,1927.61689650549,1749.85537401691
82.5251601097896,2953.55973361002,2465.36298011717,2160.77865011069,2311.92317705438,2072.30997845797,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1876.1085988492,1927.61689650549,1749.85537401691
82.6166514181153,2953.55973361002,2465.36298011717,2160.77865011069,2311.92317705438,2078.40627325392,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1870.22664830825,1927.61689650549,1749.85537401691
82.708142726441,2953.55973361002,2465.36298011717,2160.77865011069,2315.93823609813,2073.32963870198,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1870.22664830825,1927.61689650549,1749.85537401691
82.7996340347667,2953.55973361002,2465.36298011717,2160.77865011069,2316.73391625818,2073.32963870198,2109.36616541939,2023.9676871076,1948.9666025852,1912.92450131475,1870.22664830825,1927.61689650549,1747.53421546553
82.8911253430924,2953.55973361002,2465.36298011717,2160.77865011069,2318.49763416985,2073.32963870198,2109.36616541939,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1927.61689650549,1747.53421546553
82.9826166514181,2953.55973361002,2465.36298011717,2163.40543555097,2318.49763416985,2073.32963870198,2109.36616541939,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1927.61689650549,1742.38065511609
83.0741079597438,2953.55973361002,2465.36298011717,2163.40543555097,2318.49763416985,2073.32963870198,2111.75258435049,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1927.61689650549,1736.10749488016
83.1655992680695,2953.77200898312,2465.36298011717,2163.40543555097,2318.49763416985,2073.32963870198,2111.57257929653,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1927.61689650549,1736.10749488016
83.2570905763952,2953.77200898312,2465.36298011717,2183.18571399532,2305.41878001008,2073.32963870198,2111.57257929653,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1927.61689650549,1736.10749488016
83.348581884721,2953.77200898312,2449.12432909754,2205.98613517383,2305.41878001008,2073.32963870198,2111.57257929653,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1927.61689650549,1736.10749488016
83.4400731930467,2953.77200898312,2449.12432909754,2205.98613517383,2305.41878001008,2073.32963870198,2116.93765927085,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1920.71246256066,1736.10749488016
83.5315645013724,2953.77200898312,2449.12432909754,2205.98613517383,2305.41878001008,2086.65128607514,2105.72471966588,2023.9676871076,1948.9666025852,1910.19043844624,1870.22664830825,1920.71246256066,1736.10749488016
83.6230558096981,2953.77200898312,2449.12432909754,2212.99605987198,2305.41878001008,2086.65128607514,2105.72471966588,2012.15447568559,1948.9666025852,1910.19043844624,1870.22664830825,1920.71246256066,1736.10749488016
83.7145471180238,2953.80271852908,2449.12432909754,2212.99605987198,2305.41878001008,2086.65128607514,2105.72471966588,2012.15447568559,1948.9666025852,1910.19043844624,1870.22664830825,1920.71246256066,1736.04829840724
83.8060384263495,2953.87787074701,2449.12432909754,2212.99605987198,2305.41878001008,2086.65128607514,2105.72471966588,2012.15447568559,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1736.04829840724
83.8975297346752,2953.87787074701,2449.12432909754,2212.99605987198,2305.41878001008,2089.57078911215,2105.72471966588,2012.15447568559,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1729.40108781657
83.9890210430009,2953.87787074701,2449.12432909754,2219.36250706435,2305.41878001008,2089.57078911215,2105.72471966588,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1729.40108781657
84.0805123513266,2953.87787074701,2449.12432909754,2219.36250706435,2310.00518934767,2089.57078911215,2100.85360390575,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1729.40108781657
84.1720036596523,2953.87787074701,2449.12432909754,2219.36250706435,2310.00518934767,2089.57078911215,2083.8531574796,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1776.93856930867
84.263494967978,2954.06254012971,2449.12432909754,2219.36250706435,2310.00518934767,2089.57078911215,2083.70711918802,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1776.93856930867
84.3549862763037,2954.10082862542,2449.12432909754,2219.36250706435,2310.00518934767,2089.57078911215,2083.70711918802,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1776.8682342166
84.4464775846295,2954.10082862542,2449.12432909754,2219.36250706435,2314.06056929792,2089.57078911215,2079.45651123308,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1776.8682342166
84.5379688929552,2954.28147723849,2449.12432909754,2219.36250706435,2314.06056929792,2089.57078911215,2079.31584655259,2001.67544469445,1948.9666025852,1910.19043844624,1870.22664830825,1920.63376236411,1776.8682342166
84.6294602012809,2954.28147723849,2449.12432909754,2219.36250706435,2314.06056929792,2094.83433039319,2079.31584655259,2001.67544469445,1948.9666025852,1910.19043844624,1864.78268395223,1920.63376236411,1776.8682342166
84.7209515096066,2954.28147723849,2449.12432909754,2219.36250706435,2314.06056929792,2105.72023499229,2070.18786562331,2001.67544469445,1948.9666025852,1910.19043844624,1864.78268395223,1920.63376236411,1776.8682342166
84.8124428179323,2954.28147723849,2449.12432909754,2219.36250706435,2314.06056929792,2115.67332191738,2061.79276286256,2001.67544469445,1948.9666025852,1910.19043844624,1864.78268395223,1920.63376236411,1776.8682342166
84.903934126258,2954.37688082415,2449.12432909754,2219.36250706435,2314.06056929792,2115.67332191738,2061.79276286256,2001.67544469445,1948.81905090168,1910.19043844624,1864.78268395223,1920.63376236411,1776.8682342166
84.9954254345837,2954.37688082415,2449.12432909754,2219.36250706435,2314.06056929792,2124.82563791371,2054.02727965084,2001.67544469445,1948.81905090168,1910.19043844624,1864.78268395223,1920.63376236411,1776.8682342166
85.0869167429094,2954.37688082415,2449.12432909754,2219.36250706435,2314.06056929792,2128.78990333913,2054.02727965084,2001.67544469445,1948.81905090168,1910.19043844624,1860.29416051688,1920.63376236411,1776.8682342166
85.1784080512351,2954.37688082415,2449.12432909754,2226.73176524592,2314.06056929792,2128.78990333913,2048.94929070379,2001.67544469445,1948.81905090168,1910.19043844624,1860.29416051688,1920.63376236411,1776.8682342166
85.2698993595608,2954.80069499118,2449.12432909754,2226.30591733871,2314.06056929792,2128.78990333913,2048.94929070379,2001.67544469445,1948.81905090168,1910.19043844624,1860.29416051688,1920.63376236411,1776.8682342166
85.3613906678866,2955.04259271959,2449.12432909754,2226.30591733871,2314.06056929792,2128.58854945835,2048.94929070379,2001.67544469445,1948.81905090168,1910.19043844624,1860.29416051688,1920.63376236411,1776.8682342166
85.4528819762123,2955.04259271959,2449.12432909754,2226.30591733871,2314.06056929792,2128.58854945835,2052.14142380537,2001.67544469445,1948.81905090168,1910.19043844624,1860.29416051688,1920.63376236411,1767.73120348017
85.544373284538,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2128.58854945835,2052.14142380537,2001.67544469445,1948.81905090168,1910.19043844624,1860.24328660308,1920.63376236411,1767.73120348017
85.6358645928637,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2136.81611996633,2045.21501516565,2001.67544469445,1948.81905090168,1910.19043844624,1860.24328660308,1920.63376236411,1767.73120348017
85.7273559011894,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2136.81611996633,2045.21501516565,2001.67544469445,1964.17055480613,1910.19043844624,1851.4456229447,1920.63376236411,1767.73120348017
85.8188472095151,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2144.44618187837,2038.75597811595,2001.67544469445,1964.17055480613,1910.19043844624,1851.4456229447,1920.63376236411,1767.73120348017
85.9103385178408,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2144.44618187837,2044.49401634515,2001.67544469445,1964.17055480613,1910.19043844624,1851.4456229447,1911.51685692306,1767.73120348017
86.0018298261665,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2147.68465406048,2044.49401634515,2001.67544469445,1964.17055480613,1910.19043844624,1847.70408621013,1911.51685692306,1767.73120348017
86.0933211344922,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2150.77878373042,2044.49401634515,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1911.51685692306,1767.73120348017
86.1848124428179,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2150.77878373042,2044.49401634515,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1919.47058964446,1752.68979546885
86.2763037511436,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2154.96706327209,2044.49401634515,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1914.02013706462,1752.68979546885
86.3677950594693,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2154.96706327209,2049.94395945401,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1905.96484486606,1752.68979546885
86.4592863677951,2955.09686085144,2449.12432909754,2226.30591733871,2314.06056929792,2161.83904441817,2044.04645816536,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1905.96484486606,1752.68979546885
86.5507776761208,2955.09686085144,2449.56267963819,2226.30591733871,2314.06056929792,2161.83904441817,2044.04645816536,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1905.96484486606,1751.75030044522
86.6422689844465,2955.09686085144,2449.56267963819,2226.30591733871,2314.06056929792,2161.83904441817,2046.71690964327,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1905.96484486606,1744.15738007807
86.7337602927722,2955.09686085144,2456.21850736924,2226.30591733871,2307.89673735558,2161.83904441817,2046.71690964327,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1905.96484486606,1744.15738007807
86.8252516010979,2955.09686085144,2456.21850736924,2226.30591733871,2307.89673735558,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1898.37504804165,1744.15738007807
86.9167429094236,2955.09686085144,2456.61221958468,2226.30591733871,2307.89673735558,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1898.37504804165,1743.32817970399
87.0082342177493,2955.09686085144,2457.00329045395,2226.30591733871,2307.89673735558,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1910.19043844624,1844.13915904606,1898.37504804165,1742.50744836556
87.099725526075,2955.09686085144,2457.00329045395,2230.1440679814,2307.89673735558,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1905.69742351722,1844.13915904606,1898.37504804165,1742.50744836556
87.1912168344007,2955.09686085144,2457.00329045395,2231.77914272113,2307.89673735558,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1905.69742351722,1844.13915904606,1898.37504804165,1739.7106231307
87.2827081427264,2955.09686085144,2457.00329045395,2247.29734986768,2296.31313351738,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1905.69742351722,1844.13915904606,1898.37504804165,1739.7106231307
87.3741994510521,2955.09686085144,2457.00329045395,2250.38782155517,2296.31313351738,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1905.69742351722,1844.13915904606,1895.39696070645,1739.7106231307
87.4656907593779,2955.09686085144,2457.00329045395,2250.38782155517,2298.22564657207,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1902.63677352133,1844.13915904606,1895.39696070645,1739.7106231307
87.5571820677036,2955.09686085144,2457.00329045395,2250.38782155517,2300.0775520505,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1899.69333820818,1844.13915904606,1895.39696070645,1739.7106231307
87.6486733760293,2956.6249272509,2455.792120649,2250.38782155517,2300.0775520505,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1899.69333820818,1844.13915904606,1895.39696070645,1739.7106231307
87.740164684355,2957.26639488429,2455.792120649,2250.38782155517,2299.61613797469,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1899.69333820818,1844.13915904606,1895.39696070645,1739.7106231307
87.8316559926807,2957.26639488429,2455.792120649,2250.38782155517,2301.42066617349,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1896.84261152139,1844.13915904606,1895.39696070645,1739.7106231307
87.9231473010064,2957.26639488429,2456.6735568765,2250.38782155517,2301.42066617349,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1895.61648884637,1844.13915904606,1895.39696070645,1739.7106231307
88.0146386093321,2958.76802652392,2455.48037585557,2250.38782155517,2301.42066617349,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1895.61648884637,1844.13915904606,1895.39696070645,1739.7106231307
88.1061299176578,2958.76802652392,2455.48037585557,2250.38782155517,2303.16975807015,2161.83904441817,2051.75889440409,2001.67544469445,1964.17055480613,1892.89376091708,1844.13915904606,1895.39696070645,1739.7106231307
88.1976212259835,2958.76802652392,2455.48037585557,2255.3485135069,2303.16975807015,2161.83904441817,2051.75889440409,1993.06779618358,1964.17055480613,1892.89376091708,1844.13915904606,1895.39696070645,1739.7106231307
88.2891125343092,2958.89289051104,2455.48037585557,2255.3485135069,2303.16975807015,2161.83904441817,2051.75889440409,1992.87803197521,1964.17055480613,1892.89376091708,1844.13915904606,1895.39696070645,1739.7106231307
88.380603842635,2958.9607624686,2455.48037585557,2255.3485135069,2303.16975807015,2161.83904441817,2051.75889440409,1992.87803197521,1964.17055480613,1892.81973494724,1844.13915904606,1895.39696070645,1739.7106231307
88.4720951509607,2958.9607624686,2455.48037585557,2269.22637789859,2292.64430508867,2161.83904441817,2051.75889440409,1992.87803197521,1964.17055480613,1892.81973494724,1844.13915904606,1895.39696070645,1739.7106231307
88.5635864592864,2958.9607624686,2455.48037585557,2273.41126957239,2292.64430508867,2161.83904441817,2051.75889440409,1985.52956617956,1964.17055480613,1892.81973494724,1844.13915904606,1895.39696070645,1739.7106231307
88.6550777676121,2958.9607624686,2455.48037585557,2273.41126957239,2292.64430508867,2148.79756012483,2062.74943453428,1985.52956617956,1964.17055480613,1892.81973494724,1844.13915904606,1895.39696070645,1739.7106231307
88.7465690759378,2958.9607624686,2455.48037585557,2273.41126957239,2292.64430508867,2148.79756012483,2066.4999610612,1985.52956617956,1964.17055480613,1892.81973494724,1838.7575273154,1895.39696070645,1739.7106231307
88.8380603842635,2958.9607624686,2455.48037585557,2273.41126957239,2292.64430508867,2148.79756012483,2070.05742415744,1985.52956617956,1964.17055480613,1892.81973494724,1833.69467809392,1895.39696070645,1739.7106231307
88.9295516925892,2958.99241840316,2455.48037585557,2273.41126957239,2292.64430508867,2148.79756012483,2070.05742415744,1985.52956617956,1964.17055480613,1892.81973494724,1833.69467809392,1895.39696070645,1739.66089055111
89.0210430009149,2958.99241840316,2455.48037585557,2273.41126957239,2292.64430508867,2148.79756012483,2074.46354141138,1985.52956617956,1964.17055480613,1892.81973494724,1833.69467809392,1888.73159614703,1739.66089055111
89.1125343092406,2958.99241840316,2455.48037585557,2273.41126957239,2292.64430508867,2136.8667596473,2084.09436230339,1985.52956617956,1964.17055480613,1892.81973494724,1833.69467809392,1888.73159614703,1739.66089055111
89.2040256175663,2960.49432453176,2454.27595105977,2273.41126957239,2292.64430508867,2136.8667596473,2084.09436230339,1985.52956617956,1964.17055480613,1892.81973494724,1833.69467809392,1888.73159614703,1739.66089055111
89.295516925892,2960.54174924406,2454.27595105977,2273.41126957239,2292.64430508867,2136.8667596473,2084.09436230339,1985.52956617956,1964.17055480613,1892.81973494724,1833.6529884903,1888.73159614703,1739.66089055111
89.3870082342177,2960.58923542354,2454.27595105977,2273.41126957239,2292.64430508867,2136.8667596473,2084.09436230339,1985.52956617956,1964.17055480613,1892.81973494724,1833.61123167504,1888.73159614703,1739.66089055111
89.4784995425435,2960.58923542354,2454.27595105977,2273.41126957239,2292.64430508867,2125.71086955895,2093.17123553289,1985.52956617956,1964.17055480613,1892.81973494724,1833.61123167504,1888.73159614703,1739.66089055111
89.5699908508692,2962.0674476243,2453.08582303998,2273.41126957239,2292.64430508867,2125.71086955895,2093.17123553289,1985.52956617956,1964.17055480613,1892.81973494724,1833.61123167504,1888.73159614703,1739.66089055111
89.6614821591949,2962.26380463685,2453.08582303998,2273.41126957239,2292.64430508867,2125.71086955895,2093.05259245892,1985.52956617956,1964.17055480613,1892.81973494724,1833.61123167504,1888.73159614703,1739.66089055111
89.7529734675206,2962.26380463685,2453.08582303998,2273.41126957239,2293.98423835443,2125.71086955895,2093.05259245892,1985.52956617956,1964.17055480613,1892.81973494724,1831.96768038899,1888.73159614703,1739.66089055111
89.8444647758463,2962.26380463685,2453.08582303998,2273.41126957239,2293.98423835443,2125.71086955895,2096.88366469244,1985.52956617956,1964.17055480613,1885.56005797965,1831.96768038899,1888.73159614703,1739.66089055111
89.935956084172,2962.87403787332,2453.08582303998,2273.41126957239,2293.54661288129,2125.71086955895,2096.88366469244,1985.52956617956,1964.17055480613,1885.56005797965,1831.96768038899,1888.73159614703,1739.66089055111
90.0274473924977,2962.92050752482,2453.08582303998,2273.41126957239,2293.54661288129,2125.71086955895,2096.88366469244,1985.52956617956,1964.17055480613,1885.56005797965,1831.92660530286,1888.73159614703,1739.66089055111
90.1189387008234,2963.47057427223,2453.08582303998,2272.90990763244,2293.54661288129,2125.71086955895,2096.88366469244,1985.52956617956,1964.17055480613,1885.56005797965,1831.92660530286,1888.73159614703,1739.66089055111
90.2104300091491,2964.01679832819,2453.08582303998,2272.41182662928,2293.54661288129,2125.71086955895,2096.88366469244,1985.52956617956,1964.17055480613,1885.56005797965,1831.92660530286,1888.73159614703,1739.66089055111
90.3019213174748,2964.01679832819,2453.08582303998,2254.68697390899,2293.54661288129,2125.71086955895,2108.29297034107,1985.52956617956,1964.17055480613,1885.56005797965,1831.92660530286,1888.73159614703,1739.66089055111
90.3934126258006,2964.01679832819,2453.08582303998,2254.68697390899,2293.54661288129,2125.71086955895,2110.05550328549,1985.52956617956,1964.17055480613,1885.56005797965,1831.92660530286,1888.73159614703,1734.48205587702
90.4849039341263,2964.01679832819,2453.08582303998,2254.68697390899,2293.54661288129,2125.71086955895,2113.49047093305,1985.52956617956,1964.17055480613,1885.56005797965,1831.92660530286,1883.22876184905,1734.48205587702
90.576395242452,2964.01679832819,2453.08582303998,2254.68697390899,2293.54661288129,2125.71086955895,2118.03004876195,1985.52956617956,1951.72594669737,1885.56005797965,1831.92660530286,1883.22876184905,1734.48205587702
90.6678865507777,2964.62329304774,2453.08582303998,2254.68697390899,2293.1060162169,2125.71086955895,2118.03004876195,1985.52956617956,1951.72594669737,1885.56005797965,1831.92660530286,1883.22876184905,1734.48205587702
90.7593778591034,2964.62329304774,2453.08582303998,2254.68697390899,2293.1060162169,2125.71086955895,2121.22991861735,1985.52956617956,1951.72594669737,1879.32972378138,1831.92660530286,1883.22876184905,1734.48205587702
90.8508691674291,2964.62329304774,2453.08582303998,2254.68697390899,2293.1060162169,2125.71086955895,2123.67586182126,1985.52956617956,1951.72594669737,1879.32972378138,1828.04309187292,1883.22876184905,1734.48205587702
90.9423604757548,2965.22774815379,2453.08582303998,2254.68697390899,2292.66554833461,2125.71086955895,2123.67586182126,1985.52956617956,1951.72594669737,1879.32972378138,1828.04309187292,1883.22876184905,1734.48205587702
91.0338517840805,2965.22774815379,2453.08582303998,2254.68697390899,2294.40853545816,2125.71086955895,2123.67586182126,1985.52956617956,1951.72594669737,1876.7599699851,1828.04309187292,1883.22876184905,1734.48205587702
91.1253430924062,2965.22774815379,2453.08582303998,2254.68697390899,2294.40853545816,2125.71086955895,2126.72724944309,1985.52956617956,1951.72594669737,1876.7599699851,1828.04309187292,1878.22055143678,1734.48205587702
91.2168344007319,2965.28882389345,2453.08582303998,2254.68697390899,2294.40853545816,2125.71086955895,2126.72724944309,1985.52956617956,1951.72594669737,1876.69590815405,1828.04309187292,1878.22055143678,1734.48205587702
91.3083257090576,2965.8975938175,2453.08582303998,2254.68697390899,2293.96688255642,2125.71086955895,2126.72724944309,1985.52956617956,1951.72594669737,1876.69590815405,1828.04309187292,1878.22055143678,1734.48205587702
91.3998170173833,2965.94283719066,2453.08582303998,2254.68697390899,2293.96688255642,2125.71086955895,2126.72724944309,1985.52956617956,1951.72594669737,1876.69590815405,1828.00302120599,1878.22055143678,1734.48205587702
91.4913083257091,2966.18059848515,2453.08582303998,2254.68697390899,2293.96688255642,2125.53151693331,2126.72724944309,1985.52956617956,1951.72594669737,1876.69590815405,1828.00302120599,1878.22055143678,1734.48205587702
91.5827996340348,2966.18059848515,2453.08582303998,2254.68697390899,2293.96688255642,2125.53151693331,2130.75474401411,1985.52956617956,1940.87248721486,1876.69590815405,1828.00302120599,1878.22055143678,1734.48205587702
91.6742909423605,2966.18059848515,2453.08582303998,2254.68697390899,2295.68664910773,2125.53151693331,2130.75474401411,1985.52956617956,1940.87248721486,1874.18082777628,1828.00302120599,1878.22055143678,1734.48205587702
91.7657822506862,2966.21072484743,2453.08582303998,2254.68697390899,2295.68664910773,2125.53151693331,2130.75474401411,1985.52956617956,1940.87248721486,1874.18082777628,1828.00302120599,1878.22055143678,1734.435269947
91.8572735590119,2966.21072484743,2453.08582303998,2256.7323492194,2295.68664910773,2125.53151693331,2130.75474401411,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1878.22055143678,1734.435269947
91.9487648673376,2966.71260779504,2453.08582303998,2256.28359549971,2295.68664910773,2125.53151693331,2130.75474401411,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1878.22055143678,1734.435269947
92.0402561756633,2966.71260779504,2436.13315659752,2274.43386936969,2295.68664910773,2125.53151693331,2130.75474401411,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1878.22055143678,1734.435269947
92.131747483989,2966.71260779504,2436.13315659752,2281.68548727033,2295.68664910773,2125.53151693331,2126.15965587569,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1878.22055143678,1734.435269947
92.2232387923147,2966.71260779504,2436.13315659752,2281.68548727033,2295.68664910773,2125.53151693331,2129.08873986184,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1873.36939050167,1734.435269947
92.3147301006404,2966.71260779504,2436.13315659752,2281.68548727033,2301.12011469487,2119.88403413284,2129.08873986184,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1873.36939050167,1734.435269947
92.4062214089661,2967.34808168213,2436.13315659752,2281.68548727033,2300.66644535852,2119.88403413284,2129.08873986184,1985.52956617956,1940.87248721486,1874.18082777628,1826.00696254156,1873.36939050167,1734.435269947
92.4977127172919,2967.34808168213,2436.13315659752,2281.68548727033,2302.29013470405,2119.88403413284,2129.08873986184,1985.52956617956,1940.87248721486,1871.77626446213,1826.00696254156,1873.36939050167,1734.435269947
92.5892040256176,2967.40769579517,2436.13315659752,2281.68548727033,2302.29013470405,2119.88403413284,2129.08873986184,1985.52956617956,1940.87248721486,1871.71458846583,1826.00696254156,1873.36939050167,1734.435269947
92.6806953339433,2967.40769579517,2436.13315659752,2281.68548727033,2302.29013470405,2119.88403413284,2130.57358722225,1985.52956617956,1940.87248721486,1871.71458846583,1826.00696254156,1873.36939050167,1729.88915807631
92.772186642269,2967.40769579517,2436.13315659752,2281.68548727033,2302.29013470405,2119.88403413284,2133.36345614533,1985.52956617956,1940.87248721486,1866.33552296789,1826.00696254156,1873.36939050167,1729.88915807631
92.8636779505947,2967.40769579517,2436.13315659752,2288.72665802954,2302.29013470405,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.33552296789,1826.00696254156,1873.36939050167,1729.88915807631
92.9551692589204,2968.74401772036,2435.03265795851,2288.72665802954,2302.29013470405,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.33552296789,1826.00696254156,1873.36939050167,1729.88915807631
93.0466605672461,2968.74401772036,2435.03265795851,2300.48524110108,2292.29029852598,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.33552296789,1826.00696254156,1873.36939050167,1729.88915807631
93.1381518755718,2970.05829137495,2433.94810537215,2300.48524110108,2292.29029852598,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.33552296789,1826.00696254156,1873.36939050167,1729.88915807631
93.2296431838975,2970.68315264903,2433.94810537215,2299.97332952681,2292.29029852598,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.33552296789,1826.00696254156,1873.36939050167,1729.88915807631
93.3211344922232,2970.73961929364,2433.94810537215,2299.97332952681,2292.29029852598,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.27750043157,1826.00696254156,1873.36939050167,1729.88915807631
93.412625800549,2970.73961929364,2433.94810537215,2299.97332952681,2292.29029852598,2119.88403413284,2128.95651494746,1985.52956617956,1940.87248721486,1866.27750043157,1839.65204859851,1859.61140453449,1729.88915807631
93.5041171088747,2970.73961929364,2433.94810537215,2306.11138180555,2292.29029852598,2119.88403413284,2124.90178938795,1985.52956617956,1940.87248721486,1866.27750043157,1839.65204859851,1859.61140453449,1729.88915807631
93.5956084172004,2970.73961929364,2433.94810537215,2294.87112810969,2302.19183832877,2119.88403413284,2124.90178938795,1985.52956617956,1940.87248721486,1866.27750043157,1839.65204859851,1859.61140453449,1729.88915807631
93.6870997255261,2970.73961929364,2433.94810537215,2294.87112810969,2302.19183832877,2119.88403413284,2124.90178938795,1985.52956617956,1940.87248721486,1866.27750043157,1852.04245925716,1847.12283619089,1729.88915807631
93.7785910338518,2972.03520503883,2432.87090334491,2294.87112810969,2302.19183832877,2119.88403413284,2124.90178938795,1985.52956617956,1940.87248721486,1866.27750043157,1852.04245925716,1847.12283619089,1729.88915807631
93.8700823421775,2972.03520503883,2432.87090334491,2296.50856899831,2302.19183832877,2119.88403413284,2124.90178938795,1985.52956617956,1940.87248721486,1866.27750043157,1850.26904469876,1847.12283619089,1729.88915807631
93.9615736505032,2972.65646250697,2432.87090334491,2296.50856899831,2301.75783919963,2119.88403413284,2124.90178938795,1985.52956617956,1940.87248721486,1866.27750043157,1850.26904469876,1847.12283619089,1729.88915807631
94.0530649588289,2972.88359206785,2432.87090334491,2296.50856899831,2301.75783919963,2119.88403413284,2124.77529828342,1985.52956617956,1940.87248721486,1866.27750043157,1850.26904469876,1847.12283619089,1729.88915807631
94.1445562671546,2972.99966682654,2432.87090334491,2296.50856899831,2301.75783919963,2119.88403413284,2124.77529828342,1985.35413940348,1940.87248721486,1866.27750043157,1850.26904469876,1847.12283619089,1729.88915807631
94.2360475754803,2972.99966682654,2432.87090334491,2296.50856899831,2301.75783919963,2119.88403413284,2127.38849614907,1985.35413940348,1940.87248721486,1866.27750043157,1846.22259328733,1847.12283619089,1729.88915807631
94.327538883806,2972.99966682654,2432.87090334491,2296.50856899831,2306.93643913073,2119.88403413284,2123.38145924058,1985.35413940348,1940.87248721486,1866.27750043157,1846.22259328733,1847.12283619089,1729.88915807631
94.4190301921317,2973.63601889221,2432.87090334491,2296.50856899831,2306.49804588493,2119.88403413284,2123.38145924058,1985.35413940348,1940.87248721486,1866.27750043157,1846.22259328733,1847.12283619089,1729.88915807631
94.5105215004575,2973.68474415299,2432.87090334491,2296.50856899831,2306.49804588493,2119.88403413284,2123.38145924058,1985.35413940348,1940.87248721486,1866.27750043157,1846.18146688097,1847.12283619089,1729.88915807631
94.6020128087832,2973.68474415299,2432.87090334491,2296.50856899831,2307.82135519452,2119.88403413284,2123.38145924058,1985.35413940348,1940.87248721486,1866.27750043157,1846.18146688097,1845.46061234373,1729.88915807631
94.6935041171089,2973.68474415299,2432.87090334491,2298.10278681742,2307.82135519452,2119.88403413284,2123.38145924058,1985.35413940348,1940.87248721486,1866.27750043157,1844.49051558789,1845.46061234373,1729.88915807631
94.7849954254346,2973.68474415299,2432.87090334491,2303.82216053673,2307.82135519452,2114.19308476878,2123.38145924058,1985.35413940348,1940.87248721486,1866.27750043157,1844.49051558789,1845.46061234373,1729.88915807631
94.8764867337603,2973.91100310897,2432.87090334491,2303.82216053673,2307.82135519452,2114.19308476878,2123.25650009175,1985.35413940348,1940.87248721486,1866.27750043157,1844.49051558789,1845.46061234373,1729.88915807631
94.967978042086,2973.91100310897,2436.33338607458,2303.82216053673,2307.82135519452,2114.19308476878,2121.04438598897,1985.35413940348,1940.87248721486,1866.27750043157,1844.49051558789,1845.46061234373,1729.88915807631
95.0594693504117,2975.2114884777,2435.25218441879,2303.82216053673,2307.82135519452,2114.19308476878,2121.04438598897,1985.35413940348,1940.87248721486,1866.27750043157,1844.49051558789,1845.46061234373,1729.88915807631
95.1509606587374,2975.2114884777,2435.25218441879,2305.32199411986,2307.82135519452,2114.19308476878,2121.04438598897,1985.35413940348,1940.87248721486,1866.27750043157,1844.49051558789,1843.77820389549,1729.88915807631
95.2424519670631,2975.2114884777,2435.25218441879,2306.79316252224,2307.82135519452,2114.19308476878,2121.04438598897,1985.35413940348,1940.87248721486,1866.27750043157,1842.88399904171,1843.77820389549,1729.88915807631
95.3339432753888,2975.2114884777,2435.25218441879,2309.19611421155,2307.82135519452,2114.19308476878,2121.04438598897,1985.35413940348,1936.2592230419,1866.27750043157,1842.88399904171,1843.77820389549,1729.88915807631
95.4254345837145,2975.43351680794,2435.25218441879,2309.19611421155,2307.82135519452,2114.19308476878,2120.92096462427,1985.35413940348,1936.2592230419,1866.27750043157,1842.88399904171,1843.77820389549,1729.88915807631
95.5169258920403,2975.43351680794,2435.25218441879,2314.51833107043,2307.82135519452,2114.19308476878,2117.08045543055,1985.35413940348,1936.2592230419,1866.27750043157,1842.88399904171,1843.77820389549,1729.88915807631
95.608417200366,2975.43351680794,2436.1755425178,2314.51833107043,2307.82135519452,2114.19308476878,2117.08045543055,1985.35413940348,1936.2592230419,1865.11394248764,1842.88399904171,1843.77820389549,1729.88915807631
95.6999085086917,2975.43351680794,2439.45032845402,2314.51833107043,2307.82135519452,2114.19308476878,2114.96781337502,1985.35413940348,1936.2592230419,1865.11394248764,1842.88399904171,1843.77820389549,1729.88915807631
95.7913998170174,2975.48965586645,2439.45032845402,2314.51833107043,2307.82135519452,2114.19308476878,2114.96781337502,1985.35413940348,1936.2592230419,1865.05539070821,1842.88399904171,1843.77820389549,1729.88915807631
95.8828911253431,2975.48965586645,2439.45032845402,2314.51833107043,2312.68309223393,2114.19308476878,2111.2469679627,1985.35413940348,1936.2592230419,1865.05539070821,1842.88399904171,1843.77820389549,1729.88915807631
95.9743824336688,2975.54596291947,2439.45032845402,2314.51833107043,2312.68309223393,2114.19308476878,2111.2469679627,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1729.88915807631
96.0658737419945,2975.54596291947,2439.45032845402,2314.51833107043,2312.68309223393,2114.19308476878,2112.81361542038,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1724.95656190814
96.1573650503202,2975.75989947451,2439.45032845402,2314.51833107043,2312.68309223393,2114.19308476878,2112.69855756635,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1724.95656190814
96.2488563586459,2975.75989947451,2439.45032845402,2319.52964162657,2312.68309223393,2114.19308476878,2109.15329006568,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1724.95656190814
96.3403476669716,2975.98104096722,2439.45032845402,2319.52964162657,2312.68309223393,2114.02010287379,2109.15329006568,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1724.95656190814
96.4318389752974,2975.98104096722,2439.45032845402,2324.28160380311,2312.68309223393,2114.02010287379,2105.76301020386,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1724.95656190814
96.5233302836231,2976.18691032546,2439.45032845402,2324.28160380311,2312.68309223393,2114.02010287379,2105.65444904729,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1843.77820389549,1724.95656190814
96.6148215919488,2976.18691032546,2439.45032845402,2324.28160380311,2312.68309223393,2114.02010287379,2108.33305974618,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1839.2601175929,1724.95656190814
96.7063129002745,2976.18691032546,2439.45032845402,2328.85984642668,2312.68309223393,2114.02010287379,2105.07894350101,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1839.2601175929,1724.95656190814
96.7978042086002,2976.18691032546,2439.45032845402,2328.85984642668,2312.68309223393,2117.86186501119,2105.07894350101,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1835.06344842682,1724.95656190814
96.8892955169259,2976.18691032546,2439.45032845402,2333.2187766717,2312.68309223393,2117.86186501119,2101.95598613091,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1835.06344842682,1724.95656190814
96.9807868252516,2976.18691032546,2439.45032845402,2337.36688789722,2312.68309223393,2117.86186501119,2098.96446758128,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1835.06344842682,1724.95656190814
97.0722781335773,2976.18691032546,2439.45032845402,2338.44486109291,2312.68309223393,2117.86186501119,2098.96446758128,1985.35413940348,1936.2592230419,1864.99667405694,1842.88399904171,1833.74006192171,1724.95656190814
97.163769441903,2976.30617510685,2439.45032845402,2338.44486109291,2312.68309223393,2117.86186501119,2098.96446758128,1985.17511558698,1936.2592230419,1864.99667405694,1842.88399904171,1833.74006192171,1724.95656190814
97.2552607502287,2976.30617510685,2439.45032845402,2338.44486109291,2312.68309223393,2117.86186501119,2101.52778502593,1985.17511558698,1936.2592230419,1864.99667405694,1842.88399904171,1829.43371415162,1724.95656190814
97.3467520585544,2976.30617510685,2439.45032845402,2339.48656819976,2312.68309223393,2117.86186501119,2101.52778502593,1985.17511558698,1936.2592230419,1864.99667405694,1842.88399904171,1828.18294380556,1724.95656190814
97.4382433668801,2976.30617510685,2439.45032845402,2339.48656819976,2312.68309223393,2117.86186501119,2103.98585308645,1985.17511558698,1936.2592230419,1864.99667405694,1842.88399904171,1824.12577835902,1724.95656190814
97.5297346752059,2976.30617510685,2447.17355446304,2339.48656819976,2306.21945527956,2117.86186501119,2103.98585308645,1985.17511558698,1936.2592230419,1864.99667405694,1842.88399904171,1824.12577835902,1724.95656190814
97.6212259835316,2977.71637162287,2446.03694032721,2339.48656819976,2306.21945527956,2117.86186501119,2103.98585308645,1985.17511558698,1936.2592230419,1864.99667405694,1842.88399904171,1824.12577835902,1724.95656190814
97.7127172918573,2977.71637162287,2446.03694032721,2339.48656819976,2306.21945527956,2117.86186501119,2108.62348775082,1970.02982509496,1936.2592230419,1864.99667405694,1842.88399904171,1824.12577835902,1724.95656190814
97.804208600183,2977.71637162287,2446.03694032721,2339.48656819976,2306.21945527956,2117.86186501119,2108.62348775082,1988.7909411965,1918.4076674094,1864.99667405694,1842.88399904171,1824.12577835902,1724.95656190814
97.8956999085087,2977.71637162287,2446.90120944376,2339.48656819976,2306.21945527956,2117.86186501119,2108.62348775082,1988.7909411965,1918.4076674094,1863.86853184095,1842.88399904171,1824.12577835902,1724.95656190814
97.9871912168344,2977.71637162287,2446.90120944376,2339.48656819976,2306.21945527956,2117.86186501119,2111.15260177516,1988.7909411965,1918.4076674094,1863.86853184095,1838.45794637553,1824.12577835902,1724.95656190814
98.0786825251601,2977.93030930194,2446.90120944376,2339.48656819976,2306.21945527956,2117.86186501119,2111.04653125267,1988.7909411965,1918.4076674094,1863.86853184095,1838.45794637553,1824.12577835902,1724.95656190814
98.1701738334858,2979.32857364277,2445.77342067514,2339.48656819976,2306.21945527956,2117.86186501119,2111.04653125267,1988.7909411965,1918.4076674094,1863.86853184095,1838.45794637553,1824.12577835902,1724.95656190814
98.2616651418115,2979.32857364277,2445.77342067514,2339.48656819976,2306.21945527956,2117.86186501119,2111.04653125267,1988.7909411965,1890.19239686699,1863.86853184095,1838.45794637553,1824.12577835902,1759.1336454986
98.3531564501372,2979.32857364277,2448.9233180617,2339.48656819976,2306.21945527956,2114.80917812217,2111.04653125267,1988.7909411965,1890.19239686699,1863.86853184095,1838.45794637553,1824.12577835902,1759.1336454986
98.4446477584629,2979.32857364277,2448.9233180617,2339.48656819976,2307.75959203452,2114.80917812217,2111.04653125267,1988.7909411965,1890.19239686699,1861.51933875082,1838.45794637553,1824.12577835902,1759.1336454986
98.5361390667886,2979.32857364277,2455.96970504138,2339.48656819976,2301.66517167404,2114.80917812217,2111.04653125267,1988.7909411965,1890.19239686699,1861.51933875082,1838.45794637553,1824.12577835902,1759.1336454986
98.6276303751144,2979.32857364277,2455.96970504138,2339.48656819976,2303.00111113433,2114.80917812217,2111.04653125267,1988.7909411965,1890.19239686699,1861.51933875082,1836.796563385,1824.12577835902,1759.1336454986
98.7191216834401,2979.32857364277,2455.96970504138,2339.48656819976,2307.92784974328,2109.12088386364,2111.04653125267,1988.7909411965,1890.19239686699,1861.51933875082,1836.796563385,1824.12577835902,1759.1336454986
98.8106129917658,2979.54179996879,2455.96970504138,2339.48656819976,2307.92784974328,2109.12088386364,2110.93841172154,1988.7909411965,1890.19239686699,1861.51933875082,1836.796563385,1824.12577835902,1759.1336454986
98.9021043000915,2979.59785607515,2455.96970504138,2339.48656819976,2307.92784974328,2109.12088386364,2110.93841172154,1988.7909411965,1890.19239686699,1861.46087364757,1836.796563385,1824.12577835902,1759.1336454986
98.9935956084172,2979.64527542152,2455.96970504138,2339.48656819976,2307.92784974328,2109.12088386364,2110.93841172154,1988.7909411965,1890.19239686699,1861.46087364757,1836.75636579946,1824.12577835902,1759.1336454986
99.0850869167429,2979.64527542152,2455.96970504138,2343.77204697569,2307.92784974328,2104.43826349981,2110.93841172154,1988.7909411965,1890.19239686699,1861.46087364757,1836.75636579946,1824.12577835902,1759.1336454986
99.1765782250686,2979.64527542152,2455.96970504138,2343.77204697569,2307.92784974328,2104.43826349981,2110.93841172154,1988.7909411965,1890.19239686699,1875.40781975196,1825.70543763192,1824.12577835902,1759.1336454986
99.2680695333943,2979.64527542152,2455.96970504138,2343.77204697569,2307.92784974328,2104.43826349981,2110.93841172154,1988.7909411965,1890.19239686699,1885.20260589236,1825.70543763192,1824.12577835902,1744.00156998489
99.35956084172,2979.64527542152,2435.91752734049,2343.77204697569,2307.92784974328,2123.53352855144,2110.93841172154,1988.7909411965,1890.19239686699,1885.20260589236,1825.70543763192,1824.12577835902,1744.00156998489
99.4510521500457,2980.44463269917,2435.91752734049,2343.22151593007,2307.92784974328,2123.53352855144,2110.93841172154,1988.7909411965,1890.19239686699,1885.20260589236,1825.70543763192,1824.12577835902,1744.00156998489
99.5425434583715,2980.44463269917,2444.19874182571,2335.89900802438,2307.92784974328,2123.53352855144,2110.93841172154,1988.7909411965,1890.19239686699,1885.20260589236,1825.70543763192,1824.12577835902,1744.00156998489
99.6340347666972,2980.44463269917,2444.19874182571,2335.89900802438,2309.58350157673,2123.53352855144,2110.93841172154,1988.7909411965,1890.19239686699,1882.77874867629,1825.70543763192,1824.12577835902,1744.00156998489
99.7255260750229,2981.10359497666,2444.19874182571,2335.89900802438,2309.14309441347,2123.53352855144,2110.93841172154,1988.7909411965,1890.19239686699,1882.77874867629,1825.70543763192,1824.12577835902,1744.00156998489
99.8170173833486,2981.10359497666,2444.19874182571,2340.40551514246,2309.14309441347,2118.5479106532,2110.93841172154,1988.7909411965,1890.19239686699,1882.77874867629,1825.70543763192,1824.12577835902,1744.00156998489
99.9085086916743,2981.88118626772,2444.19874182571,2339.88824445325,2309.14309441347,2118.5479106532,2110.93841172154,1988.7909411965,1890.19239686699,1882.77874867629,1825.70543763192,1824.12577835902,1744.00156998489
100,2981.88118626772,2444.19874182571,2340.90019872957,2309.14309441347,2118.5479106532,2110.93841172154,1988.7909411965,1890.19239686699,1882.77874867629,1824.45086889192,1824.12577835902,1744.00156998489
"eventtime","A","B","C","D","E","F","G","H","I","J","K","L"
0.0959692898272553,2065.12669565284,2200,2200,2200,2200,2200,2334.87330434716,2200,2200,2200,2200,2200
0.191938579654511,2065.12669565284,2200,2200,2200,2200,2065.12669565284,2334.87330434716,2334.87330434716,2200,2200,2200,2200
0.287907869481766,2065.12669565284,2200,2334.87330434716,2200,2200,2065.12669565284,2334.87330434716,2334.87330434716,2200,2200,2065.12669565284,2200
0.383877159309021,2065.12669565284,2200,2334.87330434716,2200,2200,2065.12669565284,2412.61376607075,2334.87330434716,2200,2099.14135257923,2065.12669565284,2200
0.479846449136276,2065.12669565284,2200,2444.29449514377,2200,2200,2065.12669565284,2412.61376607075,2225.43909561133,2200,2099.14135257923,2065.12669565284,2200
0.575815738963532,2065.12669565284,2200,2494.30797861359,2200,2200,2065.12669565284,2412.61376607075,2175.42184762447,2200,2099.14135257923,2065.12669565284,2200
0.671785028790787,2065.12669565284,2200,2494.30797861359,2200,2200,2065.12669565284,2412.61376607075,2175.42184762447,2200,1982.58432824985,2183.26572364897,2200
0.767754318618042,2065.12669565284,2200,2494.30797861359,2200,2200,2065.12669565284,2412.61376607075,2221.63392647477,2200,1928.82714274959,2183.26572364897,2200
0.863723608445297,2065.12669565284,2200,2557.47343071794,2200,2200,2065.12669565284,2334.89703636366,2221.63392647477,2200,1928.82714274959,2183.26572364897,2200
0.959692898272553,2011.91105726643,2200,2557.47343071794,2200,2200,2065.12669565284,2370.84261046638,2221.63392647477,2200,1928.82714274959,2183.26572364897,2200
1.05566218809981,1979.96459364068,2200,2557.47343071794,2200,2200,2065.12669565284,2394.17303805549,2221.63392647477,2200,1928.82714274959,2183.26572364897,2200
1.15163147792706,1957.53112348725,2200,2557.47343071794,2200,2200,2065.12669565284,2411.23936206258,2221.63392647477,2200,1928.82714274959,2183.26572364897,2200
1.24760076775432,1957.53112348725,2200,2603.40476104633,2200,2200,2065.12669565284,2370.09636988174,2221.63392647477,2200,1928.82714274959,2183.26572364897,2200
1.34357005758157,1957.53112348725,2200,2603.40476104633,2200,2200,2065.12669565284,2382.314638012,2221.63392647477,2200,1911.37724079036,2183.26572364897,2200
1.43953934740883,1938.55140585665,2200,2603.40476104633,2200,2200,2065.12669565284,2394.77050309321,2221.63392647477,2200,1911.37724079036,2183.26572364897,2200
1.53550863723608,1938.55140585665,2200,2603.40476104633,2200,2200,2065.12669565284,2424.85019945652,2178.46371647913,2200,1911.37724079036,2183.26572364897,2200
1.63147792706334,1925.51115541396,2200,2603.40476104633,2200,2200,2065.12669565284,2432.94130359147,2178.46371647913,2200,1911.37724079036,2183.26572364897,2200
1.72744721689059,1925.51115541396,2200,2603.40476104633,2200,2200,2065.12669565284,2439.61289171414,2178.46371647913,2200,1900.48101068651,2183.26572364897,2200
1.82341650671785,1925.51115541396,2200,2603.40476104633,2200,2200,2065.12669565284,2439.61289171414,2178.46371647913,2065.12669565284,1900.48101068651,2183.26572364897,2334.87330434716
1.91938579654511,1925.51115541396,2200,2603.40476104633,2200,2200,2065.12669565284,2439.61289171414,2178.46371647913,2065.12669565284,1900.48101068651,2122.72191972764,2410.95927276146
2.01535508637236,1925.51115541396,2200,2603.40476104633,2200,2200,2065.12669565284,2477.49832224519,2178.46371647913,2065.12669565284,1900.48101068651,2122.72191972764,2321.5291215926
2.11132437619962,1916.68717359588,2200,2603.40476104633,2200,2200,2065.12669565284,2482.5779026316,2178.46371647913,2065.12669565284,1900.48101068651,2122.72191972764,2321.5291215926
2.20729366602687,1916.68717359588,2200,2603.40476104633,2200,2200,2065.12669565284,2494.14728577713,2178.46371647913,2065.12669565284,1900.48101068651,2098.35581850504,2321.5291215926
2.30326295585413,1916.68717359588,2200,2603.40476104633,2200,2200,2065.12669565284,2503.59027018391,2178.46371647913,2065.12669565284,1900.48101068651,2079.65742685307,2321.5291215926
2.39923224568138,1916.68717359588,2200,2603.40476104633,2200,2200,2065.12669565284,2524.01542729278,2178.46371647913,2065.12669565284,1900.48101068651,2079.65742685307,2276.98993337007
2.49520153550864,1916.68717359588,2200,2603.40476104633,2200,2200,2065.12669565284,2530.81377270696,2178.46371647913,2065.12669565284,1900.48101068651,2065.979609053,2276.98993337007
2.59117082533589,1916.68717359588,2147.2003509139,2603.40476104633,2200,2200,2065.12669565284,2542.03416871082,2178.46371647913,2065.12669565284,1900.48101068651,2065.979609053,2276.98993337007
2.68714011516315,1916.68717359588,2062.71608648272,2603.40476104633,2200,2200,2065.12669565284,2542.03416871082,2178.46371647913,2065.12669565284,1900.48101068651,2065.979609053,2319.62847170629
2.7831094049904,1916.68717359588,2062.71608648272,2603.40476104633,2149.43479474798,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1900.48101068651,2065.979609053,2319.62847170629
2.87907869481766,1916.68717359588,2062.71608648272,2499.14892415619,2426.52009716765,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1900.48101068651,2065.979609053,2319.62847170629
2.97504798464491,1916.68717359588,2062.71608648272,2499.14892415619,2445.15910996191,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1888.05352842425,2065.979609053,2319.62847170629
3.07101727447217,1916.68717359588,2062.71608648272,2499.14892415619,2460.00898951031,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1877.849464959,2065.979609053,2319.62847170629
3.16698656429942,1916.68717359588,2062.71608648272,2499.14892415619,2487.30591594772,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1877.849464959,2047.9724193687,2319.62847170629
3.26295585412668,1916.68717359588,2062.71608648272,2499.14892415619,2507.36306420671,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1877.849464959,2034.13732935209,2319.62847170629
3.35892514395393,1916.68717359588,2040.40415235031,2499.14892415619,2526.7046174621,2200,2065.12669565284,2552.47586779667,2178.46371647913,2065.12669565284,1877.849464959,2034.13732935209,2319.62847170629
3.45489443378119,1916.68717359588,2040.40415235031,2499.14892415619,2526.7046174621,2200,2065.12669565284,2552.47586779667,2178.46371647913,2009.90474172324,1877.849464959,2034.13732935209,2346.09275294907
3.55086372360845,1916.68717359588,2040.40415235031,2499.14892415619,2611.8891484552,2200,2065.12669565284,2521.02958180995,2178.46371647913,2009.90474172324,1877.849464959,2034.13732935209,2346.09275294907
3.6468330134357,1916.68717359588,2040.40415235031,2499.14892415619,2619.08450113266,2200,2065.12669565284,2521.02958180995,2178.46371647913,2009.90474172324,1877.849464959,2027.49209820213,2346.09275294907
3.74280230326296,1916.68717359588,2040.40415235031,2499.14892415619,2632.19799837254,2200,2065.12669565284,2521.02958180995,2165.14642578959,2009.90474172324,1877.849464959,2027.49209820213,2346.09275294907
3.83877159309021,1916.68717359588,2030.40560009644,2499.14892415619,2639.08788676852,2200,2065.12669565284,2521.02958180995,2165.14642578959,2009.90474172324,1877.849464959,2027.49209820213,2346.09275294907
3.93474088291747,1912.69797216343,2030.40560009644,2499.14892415619,2642.45848241608,2200,2065.12669565284,2521.02958180995,2165.14642578959,2009.90474172324,1877.849464959,2027.49209820213,2346.09275294907
4.03071017274472,1908.94107975989,2030.40560009644,2499.14892415619,2645.64136885644,2200,2065.12669565284,2521.02958180995,2165.14642578959,2009.90474172324,1877.849464959,2027.49209820213,2346.09275294907
4.12667946257198,1908.94107975989,2030.40560009644,2499.14892415619,2650.69722866807,2200,2065.12669565284,2521.02958180995,2165.14642578959,2009.90474172324,1877.849464959,2022.33474081495,2346.09275294907
4.22264875239923,1908.94107975989,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2521.02958180995,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2346.09275294907
4.31861804222649,2070.59578219909,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2463.69139893949,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2346.09275294907
4.41458733205374,2208.65698904235,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2412.41121322195,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2346.09275294907
4.510556621881,2309.17954265552,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2371.27922985158,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2346.09275294907
4.60652591170825,2368.82329702635,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2371.27922985158,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2286.5817043405
4.70249520153551,2419.03056556904,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2344.36586103809,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2286.5817043405
4.79846449136276,2447.70269199957,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2344.36586103809,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2253.83308782742
4.89443378119002,2477.01036640531,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2325.64785355989,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2253.83308782742
4.99040307101727,2499.51802069302,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2310.67170483896,2165.14642578959,2009.90474172324,1874.94745294293,2022.33474081495,2253.83308782742
5.08637236084453,2505.18015204274,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2310.67170483896,2165.14642578959,1993.28326855525,1874.94745294293,2022.33474081495,2253.83308782742
5.18234165067178,2522.41516266358,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2298.55991204214,2165.14642578959,1993.28326855525,1874.94745294293,2022.33474081495,2253.83308782742
5.27831094049904,2522.41516266358,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2266.19322261313,2165.14642578959,2175.42529843556,1874.94745294293,2022.33474081495,2253.83308782742
5.3742802303263,2534.4123251949,2030.40560009644,2499.14892415619,2653.15475179057,2200,2065.12669565284,2266.19322261313,2165.14642578959,2175.42529843556,1874.94745294293,2022.33474081495,2236.14657800023
5.47024952015355,2559.61124947534,2030.40560009644,2443.72893921733,2653.15475179057,2200,2065.12669565284,2266.19322261313,2165.14642578959,2175.42529843556,1874.94745294293,2022.33474081495,2236.14657800023
5.56621880998081,2568.04788265331,2030.40560009644,2443.72893921733,2653.15475179057,2200,2065.12669565284,2266.19322261313,2165.14642578959,2175.42529843556,1874.94745294293,2022.33474081495,2223.20915964571
5.66218809980806,2569.60072769528,2030.40560009644,2443.72893921733,2653.15475179057,2200,2065.12669565284,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2022.33474081495,2223.20915964571
5.75815738963532,2573.92643939211,2030.40560009644,2443.72893921733,2653.15475179057,2200,2046.0115543368,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2022.33474081495,2223.20915964571
5.85412667946257,2577.21829988462,2019.78648443104,2443.72893921733,2653.15475179057,2200,2046.0115543368,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2022.33474081495,2223.20915964571
5.95009596928983,2580.89967158227,2019.78648443104,2443.72893921733,2653.15475179057,2200,2030.72351738344,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2022.33474081495,2223.20915964571
6.04606525911708,2583.82156389431,2010.58750477474,2443.72893921733,2653.15475179057,2200,2030.72351738344,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2022.33474081495,2223.20915964571
6.14203454894434,2586.52322823207,2002.33856094662,2443.72893921733,2653.15475179057,2200,2030.72351738344,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2022.33474081495,2223.20915964571
6.23800383877159,2589.08797064697,2002.33856094662,2443.72893921733,2653.15475179057,2200,2030.72351738344,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2016.52668393877,2223.20915964571
6.33397312859885,2591.50975619274,2002.33856094662,2443.72893921733,2653.15475179057,2200,2030.72351738344,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2011.13070134259,2223.20915964571
6.4299424184261,2593.80442621998,2002.33856094662,2443.72893921733,2653.15475179057,2200,2030.72351738344,2266.19322261313,2165.14642578959,2175.42529843556,1871.29288027716,2006.09363745337,2223.20915964571
6.52591170825336,2600.84202560967,2002.33856094662,2443.72893921733,2653.15475179057,2200,2030.72351738344,2259.75658934326,2165.14642578959,2175.42529843556,1871.29288027716,2006.09363745337,2223.20915964571
6.62188099808061,2606.70114207679,2002.33856094662,2443.72893921733,2653.15475179057,2160.53370282368,2030.72351738344,2259.75658934326,2165.14642578959,2175.42529843556,1871.29288027716,2006.09363745337,2223.20915964571
6.71785028790787,2611.99396027556,2002.33856094662,2443.72893921733,2653.15475179057,2160.53370282368,2030.72351738344,2259.75658934326,2165.14642578959,2175.42529843556,1871.29288027716,2006.09363745337,2213.9485423162
6.81381957773513,2616.40790879163,2002.33856094662,2443.72893921733,2653.15475179057,2160.53370282368,2030.72351738344,2259.75658934326,2165.14642578959,2159.04873752956,1871.29288027716,2006.09363745337,2213.9485423162
6.90978886756238,2620.32368276325,2002.33856094662,2443.72893921733,2653.15475179057,2160.53370282368,2030.72351738344,2259.75658934326,2165.14642578959,2145.35799487979,1871.29288027716,2006.09363745337,2213.9485423162
7.00575815738964,2625.72982371683,2002.33856094662,2443.72893921733,2653.15475179057,2160.53370282368,2030.72351738344,2254.39127288027,2165.14642578959,2145.35799487979,1871.29288027716,2006.09363745337,2213.9485423162
7.10172744721689,2629.79152600263,2002.33856094662,2443.72893921733,2653.15475179057,2135.76785370547,2030.72351738344,2254.39127288027,2165.14642578959,2145.35799487979,1871.29288027716,2006.09363745337,2213.9485423162
7.19769673704415,2630.65805708275,2002.33856094662,2443.72893921733,2653.15475179057,2135.76785370547,2030.72351738344,2254.39127288027,2165.14642578959,2145.35799487979,1868.83020599811,2006.09363745337,2213.9485423162
7.2936660268714,2635.46123962068,2002.33856094662,2443.72893921733,2653.15475179057,2135.76785370547,2030.72351738344,2249.53199943791,2165.14642578959,2145.35799487979,1868.83020599811,2006.09363745337,2213.9485423162
7.38963531669866,2639.36730376702,2002.33856094662,2443.72893921733,2653.15475179057,2135.76785370547,2030.72351738344,2249.53199943791,2165.14642578959,2145.35799487979,1868.83020599811,2006.09363745337,2206.57955220369
7.48560460652591,2642.58153332725,2002.33856094662,2443.72893921733,2653.15475179057,2117.46376117771,2030.72351738344,2249.53199943791,2165.14642578959,2145.35799487979,1868.83020599811,2006.09363745337,2206.57955220369
7.58157389635317,2646.78377213551,2002.33856094662,2443.72893921733,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2165.14642578959,2145.35799487979,1868.83020599811,2006.09363745337,2206.57955220369
7.67754318618042,2647.51115076602,2002.33856094662,2443.72893921733,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2165.14642578959,2145.35799487979,1866.65822832631,2006.09363745337,2206.57955220369
7.77351247600768,2648.22374423236,2002.33856094662,2443.72893921733,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2165.14642578959,2145.35799487979,1864.54517883676,2006.09363745337,2206.57955220369
7.86948176583493,2657.76509458267,2002.33856094662,2416.54197132858,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2165.14642578959,2145.35799487979,1864.54517883676,2006.09363745337,2206.57955220369
7.96545105566219,2658.40778926792,2002.33856094662,2416.54197132858,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2165.14642578959,2145.35799487979,1862.59920653372,2006.09363745337,2206.57955220369
8.06142034548944,2661.48175914814,2002.33856094662,2416.54197132858,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2165.14642578959,2145.35799487979,1862.59920653372,2006.09363745337,2200.46341528483
8.1573896353167,2664.10295437897,2002.33856094662,2416.54197132858,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2156.43254840068,2145.35799487979,1862.59920653372,2006.09363745337,2200.46341528483
8.25335892514395,2671.69514378056,2002.33856094662,2395.99828681731,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2156.43254840068,2145.35799487979,1862.59920653372,2006.09363745337,2200.46341528483
8.34932821497121,2672.76961641418,2002.33856094662,2395.99828681731,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2156.43254840068,2145.35799487979,1862.59920653372,2003.02522211666,2200.46341528483
8.44529750479846,2673.81399081488,2002.33856094662,2395.99828681731,2653.15475179057,2117.46376117771,2030.72351738344,2245.15083344946,2156.43254840068,2145.35799487979,1862.59920653372,2000.07319837176,2200.46341528483
8.54126679462572,2689.4791213167,2002.33856094662,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2245.15083344946,2156.43254840068,2145.35799487979,1862.59920653372,2000.07319837176,2200.46341528483
8.63723608445298,2690.37991879307,2002.33856094662,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2245.15083344946,2156.43254840068,2145.35799487979,1862.59920653372,1997.46696707527,2200.46341528483
8.73320537428023,2693.11875268834,2002.33856094662,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1862.59920653372,1997.46696707527,2200.46341528483
8.82917466410749,2693.58971778389,2002.33856094662,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1861.04532143007,1997.46696707527,2200.46341528483
8.92514395393474,2694.05415242857,2002.33856094662,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1859.52135750489,1997.46696707527,2200.46341528483
9.021113243762,2694.90531296017,2002.33856094662,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1859.52135750489,1994.99462383492,2200.46341528483
9.11708253358925,2695.89551715715,1998.22332005804,2395.99828681731,2598.91254107504,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1859.52135750489,1994.99462383492,2200.46341528483
9.21305182341651,2707.767166075,1998.22332005804,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1859.52135750489,1994.99462383492,2200.46341528483
9.30902111324376,2707.767166075,2118.97572902408,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1859.52135750489,1994.99462383492,2150.72222637488
9.40499040307102,2709.24722787002,2113.13080953544,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1859.52135750489,1994.99462383492,2150.72222637488
9.50095969289827,2709.65211090556,2113.13080953544,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1858.15083042834,1994.99462383492,2150.72222637488
9.59692898272553,2711.15811867679,2113.13080953544,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1858.15083042834,1994.99462383492,2147.52162994432
9.69289827255278,2712.54768227845,2107.73129176843,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1858.15083042834,1994.99462383492,2147.52162994432
9.78886756238004,2712.54768227845,2135.81649859582,2395.99828681731,2561.91331700865,2117.46376117771,2030.72351738344,2241.82101911405,2156.43254840068,2145.35799487979,1829.82308592138,1994.99462383492,2147.52162994432
9.88483685220729,2713.67020606275,2135.81649859582,2395.99828681731,2561.91331700865,2117.46376117771,2024.36301679917,2241.82101911405,2156.43254840068,2145.35799487979,1829.82308592138,1994.99462383492,2147.52162994432
9.98080614203455,2715.32065047655,2135.81649859582,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2145.35799487979,1829.82308592138,1994.99462383492,2147.52162994432
10.0767754318618,2715.32065047655,2195.10444821378,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2145.35799487979,1829.82308592138,1994.99462383492,2114.39082720007
10.1727447216891,2717.21609160766,2189.13975971395,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2145.35799487979,1829.82308592138,1994.99462383492,2114.39082720007
10.2687140115163,2718.3740494275,2189.13975971395,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2145.35799487979,1829.82308592138,1994.99462383492,2112.09382850437
10.3646833013436,2719.95123273074,2189.13975971395,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1829.82308592138,1994.99462383492,2112.09382850437
10.4606525911708,2719.95123273074,2202.73999713732,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1813.50935436564,1994.99462383492,2112.09382850437
10.5566218809981,2720.22453498912,2202.73999713732,2395.99828681731,2561.91331700865,2107.03249610774,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2112.09382850437
10.6525911708253,2720.22453498912,2202.73999713732,2412.75869387835,2561.91331700865,2065.17542513401,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2112.09382850437
10.7485604606526,2722.09440199857,2197.20918814616,2412.75869387835,2561.91331700865,2065.17542513401,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2112.09382850437
10.8445297504798,2723.23192232208,2197.20918814616,2412.75869387835,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2112.09382850437
10.9404990403071,2724.31962404177,2197.20918814616,2412.75869387835,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2109.91534392483
11.0364683301344,2725.38312513216,2197.20918814616,2412.75869387835,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2107.79866820194
11.1324376199616,2730.12559888274,2197.20918814616,2399.22247700416,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1812.69084396759,1994.99462383492,2107.79866820194
11.2284069097889,2730.12559888274,2208.38103501433,2399.22247700416,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2107.79866820194
11.3243761996161,2730.12559888274,2272.37750037758,2340.94496940302,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2107.79866820194
11.4203454894434,2730.12559888274,2295.81839775223,2340.94496940302,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2089.98105628816
11.5163147792706,2730.12559888274,2336.25858405881,2300.11564228639,2561.91331700865,2059.23696078391,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2089.98105628816
11.6122840690979,2731.15599710658,2336.25858405881,2300.11564228639,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2089.98105628816
11.7082533589251,2731.15599710658,2350.53030654151,2300.11564228639,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2077.77233630505
11.8042226487524,2731.15599710658,2362.55702821491,2300.11564228639,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2067.38558472433
11.9001919385797,2731.15599710658,2372.91251989453,2300.11564228639,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2058.37241993391
11.9961612284069,2731.15599710658,2395.91997033251,2272.91030948271,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2058.37241993391
12.0921305182342,2731.15599710658,2403.51187722985,2272.91030948271,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2051.22316158108
12.1880998080614,2731.15599710658,2420.65446426093,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2138.27117181649,1799.17126178906,1994.99462383492,2051.22316158108
12.2840690978887,2731.15599710658,2429.70524657354,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2110.77643998981,1799.17126178906,1994.99462383492,2051.22316158108
12.3800383877159,2731.15599710658,2435.19620376089,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2110.77643998981,1799.17126178906,1994.99462383492,2045.52551536053
12.4760076775432,2736.16912667134,2427.41483389865,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2110.77643998981,1799.17126178906,1994.99462383492,2045.52551536053
12.5719769673704,2737.29921416879,2427.41483389865,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2045.52551536053
12.6679462571977,2737.96026342979,2427.41483389865,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2044.46406957523
12.763915547025,2742.52323995397,2420.37663626643,2252.24377965093,2561.91331700865,2053.89643054525,2024.36301679917,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2044.46406957523
12.8598848368522,2742.52323995397,2425.62405966567,2252.24377965093,2561.91331700865,2053.89643054525,1998.6668792954,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2044.46406957523
12.9558541266795,2742.52323995397,2430.47165725342,2252.24377965093,2561.91331700865,2053.89643054525,1998.6668792954,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2039.01417419315
13.0518234165067,2742.52323995397,2434.97774838642,2252.24377965093,2561.91331700865,2053.89643054525,1998.6668792954,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2033.96403571523
13.147792706334,2742.52323995397,2439.09339150111,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2033.96403571523
13.2437619961612,2742.52323995397,2443.15265445778,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2241.82101911405,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2029.35301183651
13.3397312859885,2742.52323995397,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2106.20368088053,1799.17126178906,1994.99462383492,2029.35301183651
13.4357005758157,2743.57280301786,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1799.17126178906,1994.99462383492,2029.35301183651
13.531669865643,2744.14481981061,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1799.17126178906,1994.99462383492,2028.48081640736
13.6276391554703,2744.3509209277,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1798.55107372447,1994.99462383492,2028.48081640736
13.7236084452975,2744.91476080781,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1798.55107372447,1993.14960811616,2028.48081640736
13.8195777351248,2745.1190660093,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1797.93732763158,1993.14960811616,2028.48081640736
13.915547024952,2745.32241322166,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1797.32816287464,1993.14960811616,2028.48081640736
14.0115163147793,2745.88591384545,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1797.32816287464,1993.14960811616,2027.62080959527
14.1074856046065,2746.08747435691,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1993.14960811616,2027.62080959527
14.2034548944338,2746.63950927995,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1991.35515934455,2027.62080959527
14.299424184261,2747.18300701743,2453.13749465805,2252.24377965093,2561.91331700865,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.3953934740883,2754.80151209865,2453.13749465805,2252.24377965093,2537.53513475872,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.4913627639155,2759.33537169354,2446.86599859833,2252.24377965093,2537.53513475872,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.5873320537428,2765.6530763849,2446.86599859833,2252.24377965093,2518.38069209081,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.6833013435701,2771.21314283866,2446.86599859833,2252.24377965093,2502.48222995235,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.7792706333973,2776.18016656831,2446.86599859833,2252.24377965093,2488.95253538654,2053.89643054525,1979.74442637459,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.8752399232246,2776.66958485069,2446.86599859833,2252.24377965093,2488.95253538654,2053.89643054525,1977.13564947976,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1989.60044622733,2027.62080959527
14.9712092130518,2777.08060789315,2446.86599859833,2252.24377965093,2488.95253538654,2053.89643054525,1977.13564947976,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1988.15024772799,2027.62080959527
15.0671785028791,2781.55050299552,2446.86599859833,2252.24377965093,2477.24610862676,2053.89643054525,1977.13564947976,2231.12563517106,2156.43254840068,2101.98611433066,1796.72525055125,1988.15024772799,2027.62080959527
15.1631477927063,2782.28585650903,2446.86599859833,2252.24377965093,2477.24610862676,2053.89643054525,1977.13564947976,2231.12563517106,2156.43254840068,2098.72762666524,1796.72525055125,1988.15024772799,2027.62080959527
15.2591170825336,2786.34731176162,2446.86599859833,2252.24377965093,2466.95669648373,2053.89643054525,1977.13564947976,2231.12563517106,2156.43254840068,2098.72762666524,1796.72525055125,1988.15024772799,2027.62080959527
15.3550863723608,2786.34731176162,2450.41412130163,2252.24377965093,2466.95669648373,2053.89643054525,1977.13564947976,2231.12563517106,2156.43254840068,2098.72762666524,1796.72525055125,1988.15024772799,2023.37380758413
15.4510556621881,2787.26592126522,2450.41412130163,2252.24377965093,2466.95669648373,2053.89643054525,1977.13564947976,2231.12563517106,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2023.37380758413
15.5470249520154,2788.39618815538,2450.41412130163,2252.24377965093,2466.95669648373,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2023.37380758413
15.6429942418426,2791.76730881506,2445.30477422631,2252.24377965093,2466.95669648373,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2023.37380758413
15.7389635316699,2794.95732085161,2440.51440736192,2252.24377965093,2466.95669648373,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2023.37380758413
15.8349328214971,2798.43897359654,2440.51440736192,2252.24377965093,2458.10612049039,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2023.37380758413
15.9309021113244,2798.77486983996,2440.51440736192,2252.24377965093,2458.10612049039,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2022.76267909884
16.0268714011516,2802.00901330457,2440.51440736192,2252.24377965093,2450.10283641798,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2022.76267909884
16.1228406909789,2805.03363197661,2440.51440736192,2252.24377965093,2442.80025953586,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2022.76267909884
16.2188099808061,2805.34847667994,2440.51440736192,2252.24377965093,2442.80025953586,2053.89643054525,1977.13564947976,2229.25119095268,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2022.17671326383
16.3147792706334,2806.29571796831,2440.51440736192,2252.24377965093,2442.80025953586,2053.89643054525,1977.13564947976,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2022.17671326383
16.4107485604607,2806.83544386914,2440.51440736192,2252.24377965093,2442.80025953586,2050.5774511759,1977.13564947976,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2022.17671326383
16.5067178502879,2807.14526711815,2440.51440736192,2252.24377965093,2442.80025953586,2050.5774511759,1977.13564947976,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2021.59867036617
16.6026871401152,2807.51671324988,2440.51440736192,2252.24377965093,2442.80025953586,2050.5774511759,1975.00795829125,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2021.59867036617
16.6986564299424,2807.82459032935,2440.51440736192,2252.24377965093,2442.80025953586,2050.5774511759,1975.00795829125,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2021.02527867485
16.7946257197697,2807.82459032935,2450.0956019889,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2021.02527867485
16.8905950095969,2808.13170626926,2450.0956019889,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2227.57405054233,2152.25849359573,2098.72762666524,1796.72525055125,1988.15024772799,2020.45521892967
16.9865642994242,2808.24838145197,2450.0956019889,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2227.57405054233,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2020.45521892967
17.0825335892514,2808.24838145197,2458.17457708448,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2020.45521892967
17.1785028790787,2808.24838145197,2461.05794705435,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.66865128413
17.274472168906,2811.27613249355,2456.69699425957,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.66865128413
17.3704414587332,2814.15985559362,2452.57354256113,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.66865128413
17.4664107485605,2814.44355608795,2452.57354256113,2236.16507681246,2442.80025953586,2050.5774511759,1975.00795829125,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.14092935199
17.5623800383877,2814.79178039459,2452.57354256113,2236.16507681246,2442.80025953586,2050.5774511759,1973.00990017513,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.14092935199
17.658349328215,2815.134640707,2452.57354256113,2236.16507681246,2442.80025953586,2050.5774511759,1971.05886597935,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.14092935199
17.7543186180422,2815.47234591467,2452.57354256113,2236.16507681246,2442.80025953586,2050.5774511759,1969.1527047536,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.14092935199
17.8502879078695,2818.21332345981,2448.66664269759,2236.16507681246,2442.80025953586,2050.5774511759,1969.1527047536,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.14092935199
17.9462571976967,2820.80984976148,2448.66664269759,2236.16507681246,2436.41879421801,2050.5774511759,1969.1527047536,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1988.15024772799,2016.14092935199
18.042226487524,2821.09083282386,2448.66664269759,2236.16507681246,2436.41879421801,2050.5774511759,1969.1527047536,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1987.03035493673,2016.14092935199
18.1381957773512,2821.40804705534,2448.66664269759,2236.16507681246,2436.41879421801,2050.5774511759,1967.34815951843,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1987.03035493673,2016.14092935199
18.2341650671785,2822.30456677722,2448.66664269759,2233.93376305371,2436.41879421801,2050.5774511759,1967.34815951843,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1987.03035493673,2016.14092935199
18.3301343570058,2822.61530684702,2448.66664269759,2233.93376305371,2436.41879421801,2050.5774511759,1965.59072182196,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1987.03035493673,2016.14092935199
18.426103646833,2825.05093986177,2448.66664269759,2233.93376305371,2430.53181620576,2050.5774511759,1965.59072182196,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1987.03035493673,2016.14092935199
18.5220729366603,2827.36477364113,2448.66664269759,2233.93376305371,2425.04237292136,2050.5774511759,1965.59072182196,2217.96555065634,2152.25849359573,2098.72762666524,1796.30694692189,1987.03035493673,2016.14092935199
18.6180422264875,2827.86099802556,2448.66664269759,2233.93376305371,2425.04237292136,2050.5774511759,1965.59072182196,2217.96555065634,2152.25849359573,2096.27049653356,1796.30694692189,1987.03035493673,2016.14092935199
18.7140115163148,2828.34801151252,2448.66664269759,2233.93376305371,2425.04237292136,2050.5774511759,1965.59072182196,2217.96555065634,2152.25849359573,2093.88458119065,1796.30694692189,1987.03035493673,2016.14092935199
18.809980806142,2828.64062895154,2448.66664269759,2233.93376305371,2425.04237292136,2050.5774511759,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1796.30694692189,1987.03035493673,2016.14092935199
18.9059500959693,2828.64062895154,2448.66664269759,2239.21915933331,2425.04237292136,2050.5774511759,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1786.52624861942,1987.03035493673,2016.14092935199
19.0019193857965,2828.90427658152,2448.66664269759,2239.21915933331,2425.04237292136,2050.5774511759,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1786.52624861942,1985.96843807334,2016.14092935199
19.0978886756238,2828.99668934282,2448.66664269759,2239.21915933331,2425.04237292136,2050.5774511759,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1786.19142141644,1985.96843807334,2016.14092935199
19.1938579654511,2829.08900169905,2448.66664269759,2239.21915933331,2425.04237292136,2050.5774511759,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2016.14092935199
19.2898272552783,2829.54147640206,2448.66664269759,2239.21915933331,2425.04237292136,2047.74342508256,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2016.14092935199
19.3857965451056,2831.96651143406,2445.0804247674,2239.21915933331,2425.04237292136,2047.74342508256,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2016.14092935199
19.4817658349328,2832.2131280372,2445.0804247674,2239.21915933331,2425.04237292136,2047.74342508256,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.65669310361
19.5777351247601,2832.45891684106,2445.0804247674,2239.21915933331,2425.04237292136,2047.74342508256,1963.92451709238,2217.96555065634,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
19.6737044145873,2833.18557401918,2445.0804247674,2239.21915933331,2425.04237292136,2047.74342508256,1963.92451709238,2216.62168877638,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
19.7696737044146,2835.32227968518,2445.0804247674,2239.21915933331,2419.99739307364,2047.74342508256,1963.92451709238,2216.62168877638,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
19.8656429942418,2835.74548190189,2445.0804247674,2239.21915933331,2419.99739307364,2045.08872004942,1963.92451709238,2216.62168877638,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
19.9616122840691,2838.01404357399,2441.69780946184,2239.21915933331,2419.99739307364,2045.08872004942,1963.92451709238,2216.62168877638,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.0575815738964,2838.8135543598,2441.69780946184,2237.1931433718,2419.99739307364,2045.08872004942,1963.92451709238,2216.62168877638,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.1535508637236,2840.80011248103,2441.69780946184,2237.1931433718,2415.32202292093,2045.08872004942,1963.92451709238,2216.62168877638,2152.25849359573,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.2495201535509,2841.38442893515,2441.69780946184,2237.1931433718,2415.32202292093,2045.08872004942,1963.92451709238,2216.62168877638,2149.26133655622,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.3454894433781,2841.64826951428,2441.69780946184,2237.1931433718,2415.32202292093,2045.08872004942,1962.40098610368,2216.62168877638,2149.26133655622,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.4414587332054,2841.64826951428,2444.27260452092,2237.1931433718,2415.32202292093,2045.08872004942,1949.50897578929,2216.62168877638,2149.26133655622,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.5374280230326,2841.64826951428,2458.83616596286,2237.1931433718,2392.21153489644,2045.08872004942,1949.50897578929,2216.62168877638,2149.26133655622,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.6333973128599,2842.22209211243,2458.83616596286,2237.1931433718,2392.21153489644,2045.08872004942,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.7293666026871,2844.5366415327,2455.53330790812,2237.1931433718,2392.21153489644,2045.08872004942,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.85782866909,1985.96843807334,2015.17519700436
20.8253358925144,2844.61844913242,2455.53330790812,2237.1931433718,2392.21153489644,2045.08872004942,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.55226598913,1985.96843807334,2015.17519700436
20.9213051823417,2844.61844913242,2458.04465039551,2237.1931433718,2392.21153489644,2045.08872004942,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.55226598913,1985.96843807334,2011.40908323127
21.0172744721689,2844.61844913242,2464.92769652242,2224.13584825107,2392.21153489644,2045.08872004942,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.55226598913,1985.96843807334,2011.40908323127
21.1132437619962,2844.61844913242,2467.95645643592,2224.13584825107,2392.21153489644,2027.13226993154,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.55226598913,1985.96843807334,2011.40908323127
21.2092130518234,2844.61844913242,2470.15697502251,2224.13584825107,2392.21153489644,2027.13226993154,1949.50897578929,2216.62168877638,2146.36950514916,2093.88458119065,1785.55226598913,1985.96843807334,2008.00270623225
21.3051823416507,2844.61844913242,2475.86695952273,2224.13584825107,2392.21153489644,2027.13226993154,1949.50897578929,2208.21083068401,2146.36950514916,2093.88458119065,1785.55226598913,1985.96843807334,2008.00270623225
21.4011516314779,2844.61844913242,2479.97996183201,2224.13584825107,2392.21153489644,2027.13226993154,1949.50897578929,2208.21083068401,2128.20634350669,2093.88458119065,1785.55226598913,1985.96843807334,2008.00270623225
21.4971209213052,2847.16595215493,2476.73888528696,2224.13584825107,2392.21153489644,2027.13226993154,1949.50897578929,2208.21083068401,2128.20634350669,2093.88458119065,1785.55226598913,1985.96843807334,2008.00270623225
21.5930902111324,2847.16595215493,2487.15076060838,2224.13584825107,2373.87102533799,2027.13226993154,1949.50897578929,2208.21083068401,2128.20634350669,2093.88458119065,1785.55226598913,1985.96843807334,2008.00270623225
21.6890595009597,2847.16595215493,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1940.55352447596,2208.21083068401,2128.20634350669,2093.88458119065,1785.55226598913,1985.96843807334,2008.00270623225
21.7850287907869,2847.24736394434,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1940.55352447596,2208.21083068401,2128.20634350669,2093.88458119065,1785.25068682326,1985.96843807334,2008.00270623225
21.8809980806142,2847.32872063028,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1940.55352447596,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1985.96843807334,2008.00270623225
21.9769673704415,2847.56157758315,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1940.55352447596,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1985.01243188028,2008.00270623225
22.0729366602687,2847.79289813123,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1940.55352447596,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1984.06733724141,2008.00270623225
22.168905950096,2848.01130976769,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1939.40982367355,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1984.06733724141,2008.00270623225
22.2648752399232,2848.24116334607,2488.73489159733,2224.13584825107,2373.87102533799,2027.13226993154,1939.40982367355,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1983.13358097693,2008.00270623225
22.3608445297505,2849.73895486702,2488.73489159733,2224.13584825107,2370.80266652256,2027.13226993154,1939.40982367355,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1983.13358097693,2008.00270623225
22.4568138195777,2849.95284377554,2488.73489159733,2224.13584825107,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1983.13358097693,2008.00270623225
22.552783109405,2849.95284377554,2490.51577580629,2224.13584825107,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2128.20634350669,2093.88458119065,1784.95008739678,1983.13358097693,2005.01422518502
22.6487523992322,2850.37558451405,2490.51577580629,2224.13584825107,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2128.20634350669,2091.80037026093,1784.95008739678,1983.13358097693,2005.01422518502
22.7447216890595,2852.98151134083,2487.34131624735,2224.13584825107,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2128.20634350669,2091.80037026093,1784.95008739678,1983.13358097693,2005.01422518502
22.8406909788868,2852.98151134083,2489.07231678091,2224.13584825107,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2128.20634350669,2091.80037026093,1784.95008739678,1983.13358097693,2002.0891925551
22.936660268714,2852.98151134083,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2128.20634350669,2091.80037026093,1784.95008739678,1983.13358097693,2002.0891925551
23.0326295585413,2853.45693044071,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2091.80037026093,1784.95008739678,1983.13358097693,2002.0891925551
23.1285988483685,2853.53552985482,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2091.80037026093,1784.65926052505,1983.13358097693,2002.0891925551
23.2245681381958,2853.6140843209,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2091.80037026093,1784.3693384639,1983.13358097693,2002.0891925551
23.320537428023,2854.0226865734,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2089.79986134851,1784.3693384639,1983.13358097693,2002.0891925551
23.4165067178503,2854.22043650589,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2089.79986134851,1784.3693384639,1983.13358097693,2001.70596496538
23.5124760076775,2854.41775718671,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2089.79986134851,1784.3693384639,1983.13358097693,2001.32435617669
23.6084452975048,2854.49617700047,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2089.79986134851,1784.08118588914,1983.13358097693,2001.32435617669
23.7044145873321,2854.8994992002,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2087.8494049814,1784.08118588914,1983.13358097693,2001.32435617669
23.8003838771593,2855.29692638119,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1938.29223283587,2208.21083068401,2126.00936286082,2085.94409880439,1784.08118588914,1983.13358097693,2001.32435617669
23.8963531669866,2855.50488192057,2493.97914924879,2213.74904971418,2370.80266652256,2027.13226993154,1937.21747478338,2208.21083068401,2126.00936286082,2085.94409880439,1784.08118588914,1983.13358097693,2001.32435617669
23.9923224568138,2856.92758809272,2493.97914924879,2213.74904971418,2367.89042512509,2027.13226993154,1937.21747478338,2208.21083068401,2126.00936286082,2085.94409880439,1784.08118588914,1983.13358097693,2001.32435617669
24.0882917466411,2857.14567042076,2493.97914924879,2213.74904971418,2367.89042512509,2027.13226993154,1937.21747478338,2208.21083068401,2126.00936286082,2085.94409880439,1784.08118588914,1982.24763534247,2001.32435617669
24.1842610364683,2857.73887664951,2493.97914924879,2213.74904971418,2367.89042512509,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2085.94409880439,1784.08118588914,1982.24763534247,2001.32435617669
24.2802303262956,2857.73887664951,2493.97914924879,2230.55157369464,2367.89042512509,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1982.24763534247,2001.32435617669
24.3761996161228,2859.11976936351,2493.97914924879,2230.55157369464,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1982.24763534247,2001.32435617669
24.4721689059501,2859.33365535058,2493.97914924879,2230.55157369464,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,2001.32435617669
24.5681381957774,2859.33365535058,2498.9623889854,2220.97238379213,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,2001.32435617669
24.6641074856046,2861.9291042079,2495.89368637277,2220.97238379213,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,2001.32435617669
24.7600767754319,2861.9291042079,2500.47351802543,2212.23977449565,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,2001.32435617669
24.8560460652591,2861.9291042079,2501.98428493381,2212.23977449565,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,1998.64294717601
24.9520153550864,2861.9291042079,2503.45282587953,2212.23977449565,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,1996.05444482014
25.0479846449136,2862.1115094453,2503.45282587953,2212.23977449565,2365.08714419073,2027.13226993154,1937.21747478338,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,1995.70502836392
25.1439539347409,2862.1115094453,2504.73196391475,2212.23977449565,2365.08714419073,2027.13226993154,1929.93267115953,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,1995.70502836392
25.2399232245681,2864.74207379368,2501.75614596389,2212.23977449565,2365.08714419073,2027.13226993154,1929.93267115953,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,1995.70502836392
25.3358925143954,2867.27318492769,2498.89854403247,2212.23977449565,2365.08714419073,2027.13226993154,1929.93267115953,2207.08964729263,2126.00936286082,2045.66421943424,1784.08118588914,1981.37981694325,1995.70502836392
25.4318618042226,2867.34498467763,2498.89854403247,2212.23977449565,2365.08714419073,2027.13226993154,1929.93267115953,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1995.70502836392
25.5278310940499,2867.91361085873,2498.89854403247,2211.0320538203,2365.08714419073,2027.13226993154,1929.93267115953,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1995.70502836392
25.6238003838772,2868.09340011152,2498.89854403247,2211.0320538203,2365.08714419073,2027.13226993154,1929.0169936714,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1995.70502836392
25.7197696737044,2868.27207502629,2498.89854403247,2211.0320538203,2365.08714419073,2027.13226993154,1928.11121070765,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1995.70502836392
25.8157389635317,2868.27207502629,2500.33165346012,2211.0320538203,2365.08714419073,2027.13226993154,1928.11121070765,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1993.13228573389
25.9117082533589,2868.27207502629,2501.53062764326,2211.0320538203,2365.08714419073,2027.13226993154,1921.37829689469,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1993.13228573389
26.0076775431862,2868.27207502629,2502.91205717799,2211.0320538203,2365.08714419073,2027.13226993154,1921.37829689469,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1990.65824530035
26.1036468330134,2870.77378198113,2500.13912924891,2211.0320538203,2365.08714419073,2027.13226993154,1921.37829689469,2207.08964729263,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1990.65824530035
26.1996161228407,2871.31102731093,2500.13912924891,2211.0320538203,2365.08714419073,2027.13226993154,1921.37829689469,2206.03861756658,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1990.65824530035
26.2955854126679,2871.47589794507,2500.13912924891,2211.0320538203,2365.08714419073,2027.13226993154,1921.37829689469,2206.03861756658,2126.00936286082,2045.66421943424,1783.81245801278,1981.37981694325,1990.34170439385
26.3915547024952,2871.75077993429,2500.13912924891,2211.0320538203,2365.08714419073,2027.13226993154,1921.37829689469,2206.03861756658,2126.00936286082,2044.49134852528,1783.81245801278,1981.37981694325,1990.34170439385
26.4875239923225,2872.99129175007,2500.13912924891,2211.0320538203,2362.50134548429,2027.13226993154,1921.37829689469,2206.03861756658,2126.00936286082,2044.49134852528,1783.81245801278,1981.37981694325,1990.34170439385
26.5834932821497,2872.99129175007,2500.13912924891,2211.0320538203,2362.50134548429,2125.0102167025,1921.37829689469,2206.03861756658,2061.88969743827,2044.49134852528,1783.81245801278,1981.37981694325,1990.34170439385
26.679462571977,2873.43708756631,2500.13912924891,2211.0320538203,2362.50134548429,2122.57101283504,1921.37829689469,2206.03861756658,2061.88969743827,2044.49134852528,1783.81245801278,1981.37981694325,1990.34170439385
26.7754318618042,2873.43708756631,2500.13912924891,2211.0320538203,2362.50134548429,2122.57101283504,1921.37829689469,2206.03861756658,2100.28081621093,2044.49134852528,1783.81245801278,1941.44974269488,1990.34170439385
26.8714011516315,2873.96492627934,2500.13912924891,2211.0320538203,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2100.28081621093,2044.49134852528,1783.81245801278,1941.44974269488,1990.34170439385
26.9673704414587,2873.96492627934,2500.13912924891,2227.09420186995,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2068.31134596915,2044.49134852528,1783.81245801278,1941.44974269488,1990.34170439385
27.063339731286,2876.34900726617,2497.46351176293,2227.09420186995,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2068.31134596915,2044.49134852528,1783.81245801278,1941.44974269488,1990.34170439385
27.1593090211132,2876.34900726617,2498.00371884753,2227.09420186995,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1990.34170439385
27.2552783109405,2876.34900726617,2499.37539105283,2227.09420186995,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.3512476007678,2876.34900726617,2503.67734907615,2218.88831618966,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.447216890595,2878.73851386845,2501.07746369309,2218.88831618966,2362.50134548429,2122.57101283504,1921.37829689469,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.5431861804223,2878.89729019716,2501.07746369309,2218.88831618966,2362.50134548429,2122.57101283504,1920.59066360931,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.6391554702495,2881.20707703002,2498.56601607475,2218.88831618966,2362.50134548429,2122.57101283504,1920.59066360931,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.7351247600768,2881.36180993906,2498.56601607475,2218.88831618966,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.831094049904,2881.89534115833,2498.56601607475,2217.81433613634,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.67610013308,1941.44974269488,1987.86086975494
27.9270633397313,2881.96000451626,2498.56601607475,2217.81433613634,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.43291255883,1941.44974269488,1987.86086975494
28.0230326295585,2882.11127639618,2498.56601607475,2217.81433613634,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.43291255883,1941.44974269488,1987.56618816811
28.1190019193858,2882.26239056531,2498.56601607475,2217.81433613634,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.43291255883,1941.44974269488,1987.27237200815
28.2149712092131,2884.49780795818,2496.12742376753,2217.81433613634,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.43291255883,1941.44974269488,1987.27237200815
28.3109404990403,2884.56127127955,2496.12742376753,2217.81433613634,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.19361289115,1941.44974269488,1987.27237200815
28.4069097888676,2885.08135098026,2496.12742376753,2216.76473789606,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2044.49134852528,1781.19361289115,1941.44974269488,1987.27237200815
28.5028790786948,2885.33158489324,2496.12742376753,2216.76473789606,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2043.40995421699,1781.19361289115,1941.44974269488,1987.27237200815
28.5988483685221,2885.47916280679,2496.12742376753,2216.76473789606,2362.50134548429,2122.57101283504,1919.82072187482,2205.00667210225,2068.31134596915,2043.40995421699,1781.19361289115,1941.44974269488,1986.98328768064
28.6948176583493,2885.6301163328,2496.12742376753,2216.76473789606,2362.50134548429,2122.57101283504,1919.07322759798,2205.00667210225,2068.31134596915,2043.40995421699,1781.19361289115,1941.44974269488,1986.98328768064
28.7907869481766,2885.6301163328,2496.12742376753,2220.71048955021,2362.50134548429,2122.57101283504,1919.07322759798,2205.00667210225,2068.31134596915,2043.40995421699,1771.80966400162,1941.44974269488,1986.98328768064
28.8867562380038,2885.6301163328,2496.12742376753,2235.47030707749,2362.50134548429,2072.13227501926,1919.07322759798,2205.00667210225,2068.31134596915,2043.40995421699,1771.80966400162,1941.44974269488,1986.98328768064
28.9827255278311,2885.8801399366,2496.12742376753,2235.47030707749,2362.50134548429,2072.13227501926,1919.07322759798,2205.00667210225,2068.31134596915,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.0786948176583,2886.36686711711,2496.12742376753,2235.47030707749,2362.50134548429,2072.13227501926,1919.07322759798,2204.03008042819,2068.31134596915,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.1746641074856,2886.66512323605,2496.12742376753,2235.47030707749,2362.50134548429,2070.74484122201,1919.07322759798,2204.03008042819,2068.31134596915,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.2706333973129,2887.1473164374,2496.12742376753,2235.47030707749,2362.50134548429,2070.74484122201,1919.07322759798,2203.06598899792,2068.31134596915,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.3666026871401,2887.40868239244,2496.12742376753,2235.47030707749,2362.50134548429,2070.74484122201,1919.07322759798,2203.06598899792,2067.39912583567,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.4625719769674,2887.66840199773,2496.12742376753,2235.47030707749,2362.50134548429,2070.74484122201,1919.07322759798,2203.06598899792,2066.49689955982,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.5585412667946,2888.23408569233,2496.12742376753,2234.39705497316,2362.50134548429,2070.74484122201,1919.07322759798,2203.06598899792,2066.49689955982,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.6545105566219,2888.38360927447,2496.12742376753,2234.39705497316,2362.50134548429,2070.74484122201,1918.34069161401,2203.06598899792,2066.49689955982,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.7504798464491,2888.64101952796,2496.12742376753,2234.39705497316,2362.50134548429,2070.74484122201,1918.34069161401,2203.06598899792,2065.60698246145,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.8464491362764,2889.11726483514,2496.12742376753,2234.39705497316,2362.50134548429,2070.74484122201,1918.34069161401,2202.11607265671,2065.60698246145,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
29.9424184261036,2889.67607891515,2496.12742376753,2233.33980883133,2362.50134548429,2070.74484122201,1918.34069161401,2202.11607265671,2065.60698246145,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
30.0383877159309,2889.82401453878,2496.12742376753,2233.33980883133,2362.50134548429,2070.74484122201,1917.6190655845,2202.11607265671,2065.60698246145,2042.3419864858,1771.80966400162,1941.44974269488,1986.98328768064
30.1343570057582,2889.82401453878,2497.302283582,2233.33980883133,2362.50134548429,2070.74484122201,1917.6190655845,2202.11607265671,2065.60698246145,2042.3419864858,1771.80966400162,1936.91743611798,1986.98328768064
30.2303262955854,2889.88275512369,2497.302283582,2233.33980883133,2362.50134548429,2070.74484122201,1917.6190655845,2202.11607265671,2065.60698246145,2042.3419864858,1771.59823710198,1936.91743611798,1986.98328768064
30.3262955854127,2890.17599936885,2497.302283582,2233.33980883133,2362.50134548429,2069.39839539845,1917.6190655845,2202.11607265671,2065.60698246145,2042.3419864858,1771.59823710198,1936.91743611798,1986.98328768064
30.4222648752399,2890.23472285038,2497.302283582,2233.33980883133,2362.50134548429,2069.39839539845,1917.6190655845,2202.11607265671,2065.60698246145,2042.3419864858,1771.38748831732,1936.91743611798,1986.98328768064
30.5182341650672,2890.23472285038,2497.302283582,2244.86674897247,2362.50134548429,2069.39839539845,1917.6190655845,2202.11607265671,2042.06229230298,2042.3419864858,1771.38748831732,1936.91743611798,1986.98328768064
30.6142034548944,2890.38188428533,2497.302283582,2244.86674897247,2362.50134548429,2069.39839539845,1917.6190655845,2202.11607265671,2042.06229230298,2042.3419864858,1771.38748831732,1936.91743611798,1986.69601244292
30.7101727447217,2890.38188428533,2502.03769968586,2236.98265085219,2362.50134548429,2069.39839539845,1917.6190655845,2202.11607265671,2042.06229230298,2042.3419864858,1771.38748831732,1936.91743611798,1986.69601244292
30.8061420345489,2890.44096420912,2502.03769968586,2236.98265085219,2362.50134548429,2069.39839539845,1917.6190655845,2202.11607265671,2042.06229230298,2042.3419864858,1771.17694664367,1936.91743611798,1986.69601244292
30.9021113243762,2890.44096420912,2505.8053266785,2236.98265085219,2362.50134548429,2069.39839539845,1917.6190655845,2195.04136320032,2042.06229230298,2042.3419864858,1771.17694664367,1936.91743611798,1986.69601244292
30.9980806142035,2892.71939407391,2503.36931155792,2236.98265085219,2362.50134548429,2069.39839539845,1917.6190655845,2195.04136320032,2042.06229230298,2042.3419864858,1771.17694664367,1936.91743611798,1986.69601244292
31.0940499040307,2892.96261308537,2503.36931155792,2236.98265085219,2362.50134548429,2069.39839539845,1917.6190655845,2195.04136320032,2042.06229230298,2041.31752003689,1771.17694664367,1936.91743611798,1986.69601244292
31.190019193858,2893.5195765625,2503.36931155792,2236.00401711216,2362.50134548429,2069.39839539845,1917.6190655845,2195.04136320032,2042.06229230298,2041.31752003689,1771.17694664367,1936.91743611798,1986.69601244292
31.2859884836852,2893.80629650659,2503.36931155792,2236.00401711216,2362.50134548429,2068.09338214629,1917.6190655845,2195.04136320032,2042.06229230298,2041.31752003689,1771.17694664367,1936.91743611798,1986.69601244292
31.3819577735125,2893.80629650659,2503.36931155792,2246.61160892212,2362.50134548429,2034.7958169918,1917.6190655845,2195.04136320032,2042.06229230298,2041.31752003689,1771.17694664367,1936.91743611798,1986.69601244292
31.4779270633397,2894.03602173793,2503.36931155792,2246.61160892212,2362.50134548429,2033.86877589884,1917.6190655845,2195.04136320032,2042.06229230298,2041.31752003689,1771.17694664367,1936.91743611798,1986.69601244292
31.573896353167,2894.26429676899,2503.36931155792,2246.61160892212,2362.50134548429,2032.9519884496,1917.6190655845,2195.04136320032,2042.06229230298,2041.31752003689,1771.17694664367,1936.91743611798,1986.69601244292
31.6698656429942,2894.50541783812,2503.36931155792,2246.61160892212,2362.50134548429,2032.9519884496,1917.6190655845,2195.04136320032,2042.06229230298,2040.31053862177,1771.17694664367,1936.91743611798,1986.69601244292
31.7658349328215,2894.95314637832,2503.36931155792,2246.61160892212,2362.50134548429,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1936.91743611798,1986.69601244292
31.8618042226488,2897.14756766514,2501.00153479178,2246.61160892212,2362.50134548429,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1936.91743611798,1986.69601244292
31.957773512476,2897.14756766514,2501.00153479178,2252.49048998942,2362.50134548429,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1921.82437504443,1986.69601244292
32.0537428023033,2897.14756766514,2501.99968952653,2252.49048998942,2362.50134548429,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1918.18090367069,1986.69601244292
32.1497120921305,2897.73741118919,2501.99968952653,2251.50759965707,2362.50134548429,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1918.18090367069,1986.69601244292
32.2456813819578,2899.87485946832,2499.70107976011,2251.50759965707,2362.50134548429,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1918.18090367069,1986.69601244292
32.341650671785,2900.93073029455,2499.70107976011,2251.50759965707,2360.19535186258,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1918.18090367069,1986.69601244292
32.4376199616123,2900.93073029455,2499.70107976011,2256.66353674595,2360.19535186258,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2040.31053862177,1771.17694664367,1905.72946436572,1986.69601244292
32.5335892514395,2901.15917396289,2499.70107976011,2256.66353674595,2360.19535186258,2032.9519884496,1917.6190655845,2194.17593193313,2042.06229230298,2039.34859032593,1771.17694664367,1905.72946436572,1986.69601244292
32.6295585412668,2901.37557463594,2499.70107976011,2256.66353674595,2360.19535186258,2032.0765325447,1917.6190655845,2194.17593193313,2042.06229230298,2039.34859032593,1771.17694664367,1905.72946436572,1986.69601244292
32.725527831094,2901.37557463594,2499.70107976011,2263.25709786473,2360.19535186258,2032.0765325447,1917.6190655845,2194.17593193313,2042.06229230298,2039.34859032593,1771.17694664367,1905.72946436572,1978.32887945528
32.8214971209213,2901.37557463594,2503.31225873339,2263.25709786473,2360.19535186258,2032.0765325447,1917.6190655845,2187.39561163932,2042.06229230298,2039.34859032593,1771.17694664367,1905.72946436572,1978.32887945528
32.9174664107486,2901.51605049322,2503.31225873339,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1771.17694664367,1905.72946436572,1978.32887945528
33.0134357005758,2903.62422353024,2501.06839917733,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1771.17694664367,1905.72946436572,1978.32887945528
33.1094049904031,2903.62422353024,2501.53598278722,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1769.30500187666,1905.72946436572,1978.32887945528
33.2053742802303,2905.67832834302,2499.35684761061,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1769.30500187666,1905.72946436572,1978.32887945528
33.3013435700576,2907.6721210781,2497.24333460769,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1769.30500187666,1905.72946436572,1978.32887945528
33.3973128598848,2909.60909146211,2495.19159222378,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1769.30500187666,1905.72946436572,1978.32887945528
33.4932821497121,2909.66014139734,2495.19159222378,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1769.11883600331,1905.72946436572,1978.32887945528
33.5892514395393,2909.71122087771,2495.19159222378,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2042.06229230298,2039.34859032593,1768.93299405902,1905.72946436572,1978.32887945528
33.6852207293666,2909.90637971336,2495.19159222378,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2041.42587365104,2039.34859032593,1768.93299405902,1905.72946436572,1978.32887945528
33.7811900191939,2909.90637971336,2496.41108167621,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2041.42587365104,2039.34859032593,1768.93299405902,1905.72946436572,1975.93716975602
33.8771593090211,2909.90637971336,2498.14815413235,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2035.47500564868,2039.34859032593,1768.93299405902,1905.72946436572,1975.93716975602
33.9731285988484,2909.90637971336,2498.60246271034,2263.25709786473,2360.19535186258,2032.0765325447,1916.9423677122,2187.39561163932,2035.47500564868,2039.34859032593,1767.07344795336,1905.72946436572,1975.93716975602
34.0690978886756,2910.88694631576,2498.60246271034,2263.25709786473,2358.02515150836,2032.0765325447,1916.9423677122,2187.39561163932,2035.47500564868,2039.34859032593,1767.07344795336,1905.72946436572,1975.93716975602
34.1650671785029,2911.07380243338,2498.60246271034,2263.25709786473,2358.02515150836,2032.0765325447,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1767.07344795336,1905.72946436572,1975.93716975602
34.2610364683301,2911.27622836298,2498.60246271034,2263.25709786473,2358.02515150836,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1767.07344795336,1905.72946436572,1975.93716975602
34.3570057581574,2911.39706515943,2498.60246271034,2263.25709786473,2358.02515150836,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1767.07344795336,1905.72946436572,1975.70032079005
34.4529750479846,2911.39706515943,2503.32923101427,2255.65304573081,2358.02515150836,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1767.07344795336,1905.72946436572,1975.70032079005
34.5489443378119,2911.44770373792,2503.32923101427,2255.65304573081,2358.02515150836,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1766.89254194933,1905.72946436572,1975.70032079005
34.6449136276392,2912.41451576978,2503.32923101427,2255.65304573081,2355.90927047146,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1766.89254194933,1905.72946436572,1975.70032079005
34.7408829174664,2912.53488864849,2503.32923101427,2255.65304573081,2355.90927047146,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,2039.34859032593,1766.89254194933,1905.72946436572,1975.46452641735
34.8368522072937,2912.53488864849,2503.32923101427,2255.65304573081,2355.90927047146,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,1977.06653762374,1766.89254194933,1905.72946436572,1999.37787829843
34.9328214971209,2912.53488864849,2504.18317967065,2255.65304573081,2355.90927047146,2031.25102320079,1916.9423677122,2187.39561163932,2034.88464404462,1977.06653762374,1766.89254194933,1902.64127484874,1999.37787829843
35.0287907869482,2912.66658991171,2504.18317967065,2255.65304573081,2355.90927047146,2031.25102320079,1916.30786502605,2187.39561163932,2034.88464404462,1977.06653762374,1766.89254194933,1902.64127484874,1999.37787829843
35.1247600767754,2912.86894394087,2504.18317967065,2255.65304573081,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.88464404462,1977.06653762374,1766.89254194933,1902.64127484874,1999.37787829843
35.2207293666027,2914.855766116,2502.13487449911,2255.65304573081,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.88464404462,1977.06653762374,1766.89254194933,1902.64127484874,1999.37787829843
35.3166986564299,2915.00124925994,2502.13487449911,2255.65304573081,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.88464404462,1976.52666374236,1766.89254194933,1902.64127484874,1999.37787829843
35.4126679462572,2915.13581473652,2502.13487449911,2255.65304573081,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.88464404462,1976.52666374236,1766.89254194933,1902.64127484874,1999.12452943724
35.5086372360845,2915.13581473652,2506.58802246028,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.88464404462,1976.52666374236,1766.89254194933,1902.64127484874,1999.12452943724
35.6046065259117,2915.32046338058,2506.58802246028,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.30618356805,1976.52666374236,1766.89254194933,1902.64127484874,1999.12452943724
35.700575815739,2915.45534200897,2506.58802246028,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.30618356805,1976.52666374236,1766.89254194933,1902.64127484874,1998.8713920233
35.7965451055662,2915.50540705428,2506.58802246028,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.30618356805,1976.52666374236,1766.71491907142,1902.64127484874,1998.8713920233
35.8925143953935,2915.59990170499,2506.58802246028,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2034.30618356805,1976.52666374236,1766.71491907142,1902.33519534485,1998.8713920233
35.9884836852207,2915.59990170499,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2028.99178996559,1976.52666374236,1766.71491907142,1902.33519534485,1998.8713920233
36.084452975048,2915.77878631827,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2028.4488778972,1976.52666374236,1766.71491907142,1902.33519534485,1998.8713920233
36.1804222648752,2915.95711750584,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.909404387,1976.52666374236,1766.71491907142,1902.33519534485,1998.8713920233
36.2763915547025,2916.0518800266,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.909404387,1976.52666374236,1766.71491907142,1902.03009578112,1998.8713920233
36.3723608445298,2916.2299147299,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1976.52666374236,1766.71491907142,1902.03009578112,1998.8713920233
36.468330134357,2916.28036833306,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1976.52666374236,1766.53766522695,1902.03009578112,1998.8713920233
36.5642994241843,2916.42772408736,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.99010772329,1766.53766522695,1902.03009578112,1998.8713920233
36.6602687140115,2916.57465335106,2508.15254501064,2248.54451367456,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1902.03009578112,1998.8713920233
36.7562380038388,2916.57465335106,2508.15254501064,2255.47747505717,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1902.03009578112,1990.27583974295
36.852207293666,2916.70436551059,2508.15254501064,2255.47747505717,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1902.03009578112,1990.04263476367
36.9481765834933,2916.83401420557,2508.15254501064,2255.47747505717,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1902.03009578112,1989.80990925196
37.0441458733205,2918.86573261625,2506.09456393332,2255.47747505717,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1902.03009578112,1989.80990925196
37.1401151631478,2918.99285008406,2506.09456393332,2255.47747505717,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1902.03009578112,1989.5801789462
37.236084452975,2919.08668526283,2506.09456393332,2255.47747505717,2355.90927047146,2030.43648628585,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1901.7293768229,1989.5801789462
37.3320537428023,2919.28563485709,2506.09456393332,2255.47747505717,2355.90927047146,2029.64900491112,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1901.7293768229,1989.5801789462
37.4280230326296,2921.26397149225,2504.08685119228,2255.47747505717,2355.90927047146,2029.64900491112,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1901.7293768229,1989.5801789462
37.5239923224568,2923.18693089084,2502.13569869176,2255.47747505717,2355.90927047146,2029.64900491112,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.53766522695,1901.7293768229,1989.5801789462
37.6199616122841,2923.23519150998,2502.13569869176,2255.47747505717,2355.90927047146,2029.64900491112,1916.30786502605,2187.39561163932,2027.37320270047,1975.45689439416,1766.36683600425,1901.7293768229,1989.5801789462
37.7159309021113,2923.23519150998,2502.13569869176,2261.52553996608,2355.90927047146,2029.64900491112,1916.30786502605,2187.39561163932,2027.37320270047,1958.2983200091,1766.36683600425,1901.7293768229,1989.5801789462
37.8119001919386,2923.28360305375,2502.13569869176,2261.52553996608,2355.90927047146,2029.64900491112,1916.30786502605,2187.39561163932,2027.37320270047,1958.2983200091,1766.19615644884,1901.7293768229,1989.5801789462
37.9078694817658,2923.40989670703,2502.13569869176,2261.52553996608,2355.90927047146,2029.64900491112,1915.70893266691,2187.39561163932,2027.37320270047,1958.2983200091,1766.19615644884,1901.7293768229,1989.5801789462
38.0038387715931,2925.29359896386,2500.22288588266,2261.52553996608,2355.90927047146,2029.64900491112,1915.70893266691,2187.39561163932,2027.37320270047,1958.2983200091,1766.19615644884,1901.7293768229,1989.5801789462
38.0998080614203,2925.29359896386,2500.22288588266,2261.52553996608,2355.90927047146,2029.64900491112,1915.70893266691,2187.39561163932,2027.37320270047,2005.44340935469,1766.19615644884,1901.7293768229,1968.24688148646
38.1957773512476,2925.29359896386,2500.22288588266,2266.10702982504,2355.90927047146,2029.64900491112,1895.70492521901,2187.39561163932,2027.37320270047,2005.44340935469,1766.19615644884,1901.7293768229,1968.24688148646
38.2917466410749,2925.48368542297,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2187.39561163932,2027.37320270047,2005.44340935469,1766.19615644884,1901.7293768229,1968.24688148646
38.3877159309021,2925.84754850033,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2027.37320270047,2005.44340935469,1766.19615644884,1901.7293768229,1968.24688148646
38.4836852207294,2925.93750122733,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2027.37320270047,2005.44340935469,1766.19615644884,1901.43912702463,1968.24688148646
38.5796545105566,2926.04516330538,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2027.37320270047,2005.44340935469,1766.19615644884,1901.43912702463,1968.05838148323
38.6756238003839,2926.21436908399,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.86153601241,2005.44340935469,1766.19615644884,1901.43912702463,1968.05838148323
38.7715930902111,2926.38309883638,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,2005.44340935469,1766.19615644884,1901.43912702463,1968.05838148323
38.8675623800384,2926.49089756814,2500.22288588266,2266.10702982504,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,2005.44340935469,1766.19615644884,1901.43912702463,1967.87000280797
38.9635316698656,2926.49089756814,2500.22288588266,2272.47902287446,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1989.98246619184,1766.19615644884,1901.43912702463,1967.87000280797
39.0595009596929,2926.49089756814,2500.22288588266,2278.1332597901,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.19615644884,1901.43912702463,1967.87000280797
39.1554702495202,2926.53926017546,2500.22288588266,2278.1332597901,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.43912702463,1967.87000280797
39.2514395393474,2926.6301137879,2500.22288588266,2278.1332597901,2355.90927047146,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1967.87000280797
39.3474088291747,2927.5446397335,2500.22288588266,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1967.87000280797
39.4433781190019,2927.5446397335,2501.35085270816,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1965.87877061905
39.5393474088292,2929.40865136592,2499.44858348127,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1965.87877061905
39.6353166986564,2929.51358177177,2499.44858348127,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1965.69618981107
39.7312859884837,2929.61852360361,2499.44858348127,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1965.5138451877
39.8272552783109,2929.72347661213,2499.44858348127,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1976.83997826793,1766.0276224207,1901.14932374463,1965.33173600782
39.9232245681382,2929.72347661213,2500.6887959203,2278.1332597901,2353.90668873487,2028.89236936354,1895.70492521901,2186.66955642744,2026.35290591278,1973.02999619494,1766.0276224207,1901.14932374463,1965.33173600782
40.0191938579654,2929.91192731086,2500.6887959203,2278.1332597901,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2026.35290591278,1973.02999619494,1766.0276224207,1901.14932374463,1965.33173600782
40.1151631477927,2929.91192731086,2501.79125694588,2278.1332597901,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2026.35290591278,1973.02999619494,1766.0276224207,1901.14932374463,1963.38304368401
40.21113243762,2929.91192731086,2501.79125694588,2280.11732400346,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2026.35290591278,1973.02999619494,1759.90066790761,1901.14932374463,1963.38304368401
40.3071017274472,2931.76751542648,2499.91575319237,2280.11732400346,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2026.35290591278,1973.02999619494,1759.90066790761,1901.14932374463,1963.38304368401
40.4030710172745,2931.76751542648,2501.49263996618,2280.11732400346,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2021.14629909874,1973.02999619494,1759.90066790761,1901.14932374463,1963.38304368401
40.4990403071017,2931.87042398428,2501.49263996618,2280.11732400346,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2021.14629909874,1973.02999619494,1759.90066790761,1901.14932374463,1963.20574278164
40.595009596929,2931.87042398428,2506.47303471419,2272.88508742477,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2021.14629909874,1973.02999619494,1759.90066790761,1901.14932374463,1963.20574278164
40.6909788867562,2933.74837910185,2504.62784332991,2272.88508742477,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2021.14629909874,1973.02999619494,1759.90066790761,1901.14932374463,1963.20574278164
40.7869481765835,2933.84974052364,2504.62784332991,2272.88508742477,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2021.14629909874,1973.02999619494,1759.90066790761,1901.14932374463,1963.03017329195
40.8829174664107,2933.97037863986,2504.62784332991,2272.88508742477,2353.90668873487,2028.15388588597,1895.70492521901,2186.66955642744,2021.14629909874,1972.69200927813,1759.90066790761,1901.14932374463,1963.03017329195
40.978886756238,2934.32311410675,2504.62784332991,2272.88508742477,2353.90668873487,2028.15388588597,1895.70492521901,2185.96196225102,2021.14629909874,1972.69200927813,1759.90066790761,1901.14932374463,1963.03017329195
41.0748560460653,2934.42775114256,2504.62784332991,2272.88508742477,2353.90668873487,2028.15388588597,1895.24835529496,2185.96196225102,2021.14629909874,1972.69200927813,1759.90066790761,1901.14932374463,1963.03017329195
41.1708253358925,2936.25975217528,2502.82079721242,2272.88508742477,2353.90668873487,2028.15388588597,1895.24835529496,2185.96196225102,2021.14629909874,1972.69200927813,1759.90066790761,1901.14932374463,1963.03017329195
41.2667946257198,2936.35949765817,2502.82079721242,2272.88508742477,2353.90668873487,2028.15388588597,1895.24835529496,2185.96196225102,2021.14629909874,1972.69200927813,1759.90066790761,1901.14932374463,1962.85639386024
41.362763915547,2936.4457060908,2502.82079721242,2272.88508742477,2353.90668873487,2028.15388588597,1895.24835529496,2185.96196225102,2021.14629909874,1972.69200927813,1759.90066790761,1900.87279935533,1962.85639386024
41.4587332053743,2937.3040645551,2502.82079721242,2272.88508742477,2352.00840429311,2028.15388588597,1895.24835529496,2185.96196225102,2021.14629909874,1972.69200927813,1759.90066790761,1900.87279935533,1962.85639386024
41.5547024952015,2937.34781537431,2502.82079721242,2272.88508742477,2352.00840429311,2028.15388588597,1895.24835529496,2185.96196225102,2021.14629909874,1972.69200927813,1759.75109679035,1900.87279935533,1962.85639386024
41.6506717850288,2937.50294936515,2502.82079721242,2272.88508742477,2352.00840429311,2028.15388588597,1895.24835529496,2185.96196225102,2020.68865148291,1972.69200927813,1759.75109679035,1900.87279935533,1962.85639386024
41.746641074856,2938.03517349476,2502.82079721242,2272.12891414621,2352.00840429311,2028.15388588597,1895.24835529496,2185.96196225102,2020.68865148291,1972.69200927813,1759.75109679035,1900.87279935533,1962.85639386024
41.8426103646833,2938.87779192474,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1895.24835529496,2185.96196225102,2020.68865148291,1972.69200927813,1759.75109679035,1900.87279935533,1962.85639386024
41.9385796545106,2938.96278020899,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1895.24835529496,2185.96196225102,2020.68865148291,1972.69200927813,1759.75109679035,1900.60014047392,1962.85639386024
42.0345489443378,2939.06457656724,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1894.80449127042,2185.96196225102,2020.68865148291,1972.69200927813,1759.75109679035,1900.60014047392,1962.85639386024
42.1305182341651,2939.14964343015,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1894.80449127042,2185.96196225102,2020.68865148291,1972.69200927813,1759.75109679035,1900.32822351939,1962.85639386024
42.2264875239923,2939.49229088907,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1894.80449127042,2185.27047698745,2020.68865148291,1972.69200927813,1759.75109679035,1900.32822351939,1962.85639386024
42.3224568138196,2939.59108775339,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1894.80449127042,2185.27047698745,2020.68865148291,1972.69200927813,1759.75109679035,1900.32822351939,1962.68371906582
42.4184261036468,2939.63468620146,2502.82079721242,2272.12891414621,2350.15743899946,2028.15388588597,1894.80449127042,2185.27047698745,2020.68865148291,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
42.5143953934741,2939.63468620146,2509.39798598388,2272.12891414621,2335.40740643001,2028.15388588597,1894.80449127042,2185.27047698745,2020.68865148291,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
42.6103646833013,2939.63468620146,2510.82631513305,2272.12891414621,2335.40740643001,2028.15388588597,1894.80449127042,2185.27047698745,2015.95139966868,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
42.7063339731286,2939.63468620146,2515.34081159132,2265.43612973032,2335.40740643001,2028.15388588597,1894.80449127042,2185.27047698745,2015.95139966868,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
42.8023032629559,2941.53768349301,2513.5252945318,2265.43612973032,2335.40740643001,2028.15388588597,1894.80449127042,2185.27047698745,2015.95139966868,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
42.8982725527831,2941.6855197672,2513.5252945318,2265.43612973032,2335.40740643001,2028.15388588597,1894.80449127042,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
42.9942418426104,2942.44421229799,2513.5252945318,2265.43612973032,2333.84132805914,2028.15388588597,1894.80449127042,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.0902111324376,2942.54467337984,2513.5252945318,2265.43612973032,2333.84132805914,2028.15388588597,1894.36962863802,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.1861804222649,2944.39040600372,2511.75374914594,2265.43612973032,2333.84132805914,2028.15388588597,1894.36962863802,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.2821497120921,2944.88194416783,2511.75374914594,2264.74418832335,2333.84132805914,2028.15388588597,1894.36962863802,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.3781190019194,2944.88194416783,2516.01121999273,2258.43709453193,2333.84132805914,2028.15388588597,1894.36962863802,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.4740882917466,2944.98052041773,2516.01121999273,2258.43709453193,2333.84132805914,2028.15388588597,1893.94238872958,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.5700575815739,2945.07890714587,2516.01121999273,2258.43709453193,2333.84132805914,2028.15388588597,1893.5172256604,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.6660268714012,2945.25370745907,2516.01121999273,2258.43709453193,2333.84132805914,2027.47069385692,1893.5172256604,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.32822351939,1962.68371906582
43.7619961612284,2945.3365560413,2516.01121999273,2258.43709453193,2333.84132805914,2027.47069385692,1893.5172256604,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.68371906582
43.8579654510557,2945.43496199457,2516.01121999273,2258.43709453193,2333.84132805914,2027.47069385692,1893.0943373577,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.68371906582
43.9539347408829,2945.53140855338,2516.01121999273,2258.43709453193,2333.84132805914,2027.47069385692,1893.0943373577,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.51358269555
44.0499040307102,2946.27193161261,2516.01121999273,2258.43709453193,2332.31626263665,2027.47069385692,1893.0943373577,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.51358269555
44.1458733205374,2946.36785928511,2516.01121999273,2258.43709453193,2332.31626263665,2027.47069385692,1893.0943373577,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.34417586354
44.2418426103647,2947.09867907546,2516.01121999273,2258.43709453193,2330.82004064081,2027.47069385692,1893.0943373577,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.34417586354
44.3378119001919,2947.19612958949,2516.01121999273,2258.43709453193,2330.82004064081,2027.47069385692,1892.67687118361,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.34417586354
44.4337811900192,2947.19612958949,2520.09974945655,2252.48681246801,2330.82004064081,2027.47069385692,1892.67687118361,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1900.06390838073,1962.34417586354
44.5297504798464,2947.27869667403,2520.09974945655,2252.48681246801,2330.82004064081,2027.47069385692,1892.67687118361,2185.27047698745,2015.52546163497,1972.69200927813,1759.60297520863,1899.80195534399,1962.34417586354
44.6257197696737,2947.32116676095,2520.09974945655,2252.48681246801,2330.82004064081,2027.47069385692,1892.67687118361,2185.27047698745,2015.52546163497,1972.69200927813,1759.45976402741,1899.80195534399,1962.34417586354
44.721689059501,2947.41727797507,2520.09974945655,2252.48681246801,2330.82004064081,2027.47069385692,1892.67687118361,2185.27047698745,2015.52546163497,1972.69200927813,1759.45976402741,1899.80195534399,1962.17479926424
44.8176583493282,2949.30113344606,2518.32503106979,2252.48681246801,2330.82004064081,2027.47069385692,1892.67687118361,2185.27047698745,2015.52546163497,1972.69200927813,1759.45976402741,1899.80195534399,1962.17479926424
44.9136276391555,2949.39745044262,2518.32503106979,2252.48681246801,2330.82004064081,2027.47069385692,1892.26561617948,2185.27047698745,2015.52546163497,1972.69200927813,1759.45976402741,1899.80195534399,1962.17479926424
45.0095969289827,2949.5403470419,2518.32503106979,2252.48681246801,2330.82004064081,2027.47069385692,1892.26561617948,2185.27047698745,2015.11385720103,1972.69200927813,1759.45976402741,1899.80195534399,1962.17479926424
45.10556621881,2949.63499445714,2518.32503106979,2252.48681246801,2330.82004064081,2027.47069385692,1892.26561617948,2185.27047698745,2015.11385720103,1972.69200927813,1759.45976402741,1899.80195534399,1962.00711012228
45.2015355086372,2949.63499445714,2519.06010053784,2252.48681246801,2330.82004064081,2027.47069385692,1892.26561617948,2185.27047698745,2015.11385720103,1972.69200927813,1759.45976402741,1896.98206725101,1962.00711012228
45.2975047984645,2949.63499445714,2519.43014036498,2252.48681246801,2330.82004064081,2027.47069385692,1892.26561617948,2185.27047698745,2015.11385720103,1972.69200927813,1757.89188352763,1896.98206725101,1962.00711012228
45.3934740882917,2949.6766773292,2519.43014036498,2252.48681246801,2330.82004064081,2027.47069385692,1892.26561617948,2185.27047698745,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1962.00711012228
45.489443378119,2949.7736741004,2519.43014036498,2252.48681246801,2330.82004064081,2027.47069385692,1891.85589453849,2185.27047698745,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1962.00711012228
45.5854126679463,2949.86911080814,2519.43014036498,2252.48681246801,2330.82004064081,2027.47069385692,1891.85589453849,2185.27047698745,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1961.8388484996
45.6813819577735,2949.86911080814,2524.89111854451,2252.48681246801,2318.62959762531,2027.47069385692,1891.85589453849,2185.27047698745,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1961.8388484996
45.7773512476008,2949.86911080814,2527.64788110711,2252.48681246801,2318.62959762531,2027.47069385692,1891.85589453849,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1961.8388484996
45.873320537428,2949.86911080814,2532.52385050882,2252.48681246801,2307.94707970753,2027.47069385692,1891.85589453849,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1961.8388484996
45.9692898272553,2949.86911080814,2533.35136296576,2252.48681246801,2307.94707970753,2027.47069385692,1891.85589453849,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1960.14691565199
46.0652591170825,2949.86911080814,2534.04306346862,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1960.14691565199
46.1612284069098,2949.86911080814,2534.85385458862,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1958.49560531653
46.257197696737,2949.86911080814,2535.65217159486,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1956.87885891069
46.3531669865643,2951.92611062261,2533.84466163262,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.98206725101,1956.87885891069
46.4491362763916,2952.00667760644,2533.84466163262,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.73251740536,1956.87885891069
46.5451055662188,2954.00897905273,2532.08115496645,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.75268165708,1896.73251740536,1956.87885891069
46.6410748560461,2954.05000438643,2532.08115496645,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.69200927813,1757.61622084813,1896.73251740536,1956.87885891069
46.7370441458733,2954.16230346822,2532.08115496645,2252.48681246801,2307.94707970753,2027.47069385692,1887.78501129071,2178.9312972591,2015.11385720103,1972.37847651475,1757.61622084813,1896.73251740536,1956.87885891069
46.8330134357006,2954.33323369406,2532.08115496645,2252.48681246801,2307.94707970753,2026.81606721424,1887.78501129071,2178.9312972591,2015.11385720103,1972.37847651475,1757.61622084813,1896.73251740536,1956.87885891069
46.9289827255278,2954.47496859115,2532.08115496645,2252.48681246801,2307.94707970753,2026.81606721424,1887.78501129071,2178.9312972591,2014.7096805219,1972.37847651475,1757.61622084813,1896.73251740536,1956.87885891069
47.0249520153551,2954.92277872213,2532.08115496645,2251.87541710497,2307.94707970753,2026.81606721424,1887.78501129071,2178.9312972591,2014.7096805219,1972.37847651475,1757.61622084813,1896.73251740536,1956.87885891069
47.1209213051823,2955.09273062985,2532.08115496645,2251.87541710497,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.37847651475,1757.61622084813,1896.73251740536,1956.87885891069
47.2168905950096,2955.17198735449,2532.08115496645,2251.87541710497,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.37847651475,1757.61622084813,1896.48700267594,1956.87885891069
47.3128598848369,2955.21314458856,2532.08115496645,2251.87541710497,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.37847651475,1757.48030536713,1896.48700267594,1956.87885891069
47.4088291746641,2955.32564065703,2532.08115496645,2251.87541710497,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.06644276153,1757.48030536713,1896.48700267594,1956.87885891069
47.5047984644914,2957.28531431414,2530.33624415788,2251.87541710497,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.06644276153,1757.48030536713,1896.48700267594,1956.87885891069
47.6007677543186,2957.72423259418,2530.33624415788,2251.27198266175,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.06644276153,1757.48030536713,1896.48700267594,1956.87885891069
47.6967370441459,2957.72423259418,2530.66788606263,2251.27198266175,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.06644276153,1756.02711507081,1896.48700267594,1956.87885891069
47.7927063339731,2957.72423259418,2534.19090390629,2245.77402087281,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1972.06644276153,1756.02711507081,1896.48700267594,1956.87885891069
47.8886756238004,2957.8348192715,2534.19090390629,2245.77402087281,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1971.75894292423,1756.02711507081,1896.48700267594,1956.87885891069
47.9846449136276,2957.8348192715,2534.82222007536,2245.77402087281,2307.94707970753,2026.16804188326,1887.78501129071,2178.9312972591,2014.7096805219,1971.75894292423,1756.02711507081,1893.95889744293,1956.87885891069
48.0806142034549,2957.92653206168,2534.82222007536,2245.77402087281,2307.94707970753,2026.16804188326,1887.40891436526,2178.9312972591,2014.7096805219,1971.75894292423,1756.02711507081,1893.95889744293,1956.87885891069
48.1765834932822,2958.06675226106,2534.82222007536,2245.77402087281,2307.94707970753,2026.16804188326,1887.40891436526,2178.9312972591,2014.31183181958,1971.75894292423,1756.02711507081,1893.95889744293,1956.87885891069
48.2725527831094,2958.23505454143,2534.82222007536,2245.77402087281,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.75894292423,1756.02711507081,1893.95889744293,1956.87885891069
48.3685220729367,2958.3253251922,2534.82222007536,2245.77402087281,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.75894292423,1756.02711507081,1893.95889744293,1956.72186485582
48.4644913627639,2958.3253251922,2535.1429508908,2245.77402087281,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.75894292423,1754.62756201815,1893.95889744293,1956.72186485582
48.5604606525912,2958.43676875362,2535.1429508908,2245.77402087281,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.45184657273,1754.62756201815,1893.95889744293,1956.72186485582
48.6564299424184,2960.41427889672,2533.40269862026,2245.77402087281,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.45184657273,1754.62756201815,1893.95889744293,1956.72186485582
48.7523992322457,2960.49052899254,2533.40269862026,2245.77402087281,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.45184657273,1754.62756201815,1893.72576249417,1956.72186485582
48.8483685220729,2960.49052899254,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.45184657273,1754.62756201815,1893.72576249417,1956.72186485582
48.9443378119002,2960.60023271328,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2014.31183181958,1971.14881248588,1754.62756201815,1893.72576249417,1956.72186485582
49.0403071017274,2960.73902318401,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2013.91927740708,1971.14881248588,1754.62756201815,1893.72576249417,1956.72186485582
49.1362763915547,2960.77868912,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.9312972591,2013.91927740708,1971.14881248588,1754.49894940642,1893.72576249417,1956.72186485582
49.232245681382,2961.08731249825,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.31671672889,2013.91927740708,1971.14881248588,1754.49894940642,1893.72576249417,1956.72186485582
49.3282149712092,2961.12697658818,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.31671672889,2013.91927740708,1971.14881248588,1754.37062587991,1893.72576249417,1956.72186485582
49.4241842610365,2961.216656842,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.31671672889,2013.91927740708,1971.14881248588,1754.37062587991,1893.72576249417,1956.56562094228
49.5201535508637,2961.32679194962,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.31671672889,2013.91927740708,1970.84664735597,1754.37062587991,1893.72576249417,1956.56562094228
49.616122840691,2961.41660040211,2536.78372628969,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.31671672889,2013.91927740708,1970.84664735597,1754.37062587991,1893.72576249417,1956.40942878947
49.7120921305182,2961.41660040211,2537.09991970275,2240.52642326497,2307.94707970753,2025.53225928138,1887.40891436526,2178.31671672889,2013.91927740708,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
49.8080614203455,2961.50843457338,2537.09991970275,2240.52642326497,2307.94707970753,2025.53225928138,1887.03898964859,2178.31671672889,2013.91927740708,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
49.9040307101727,2961.81831942633,2537.09991970275,2240.52642326497,2307.94707970753,2025.53225928138,1887.03898964859,2177.70411326902,2013.91927740708,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
50,2963.8051270034,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1887.03898964859,2177.70411326902,2013.91927740708,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
50.0959692898273,2963.89508391869,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2177.70411326902,2013.91927740708,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
50.1919385796545,2964.19808559598,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2177.10215168824,2013.91927740708,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
50.2879078694818,2964.33532835509,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2177.10215168824,2013.5328679433,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
50.383877159309,2964.63712268471,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2176.50440940548,2013.5328679433,1970.84664735597,1753.00329442727,1893.72576249417,1956.40942878947
50.4798464491363,2964.7255093102,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2176.50440940548,2013.5328679433,1970.84664735597,1753.00329442727,1893.72576249417,1956.25481201068
50.5758157389635,2964.76439663685,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2176.50440940548,2013.5328679433,1970.84664735597,1752.87883437291,1893.72576249417,1956.25481201068
50.6717850287908,2964.90169184952,2535.35854886433,2240.52642326497,2307.94707970753,2025.53225928138,1886.67538579939,2176.50440940548,2013.14821760677,1970.84664735597,1752.87883437291,1893.72576249417,1956.25481201068
50.767754318618,2965.06717274402,2535.35854886433,2240.52642326497,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,1970.84664735597,1752.87883437291,1893.72576249417,1956.25481201068
50.8637236084453,2965.15587339097,2535.35854886433,2240.52642326497,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,1970.84664735597,1752.87883437291,1893.72576249417,1956.10005941519
50.9596928982726,2965.24460163332,2535.35854886433,2240.52642326497,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,1970.84664735597,1752.87883437291,1893.72576249417,1955.94545727561
51.0556621880998,2965.32102789377,2535.35854886433,2240.52642326497,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,1970.84664735597,1752.87883437291,1893.49598631257,1955.94545727561
51.1516314779271,2965.32102789377,2535.35854886433,2240.52642326497,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,2005.33461828928,1752.87883437291,1893.49598631257,1936.1007363383
51.2476007677543,2965.39761276357,2535.35854886433,2240.52642326497,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,2005.33461828928,1752.87883437291,1893.2665701861,1936.1007363383
51.3435700575816,2965.39761276357,2535.35854886433,2247.29012098356,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,1990.9100355938,1752.87883437291,1893.2665701861,1936.1007363383
51.4395393474088,2965.39761276357,2538.86330191653,2242.11242960605,2307.94707970753,2024.91709077517,1886.67538579939,2176.50440940548,2013.14821760677,1990.9100355938,1752.87883437291,1893.2665701861,1936.1007363383
51.5355086372361,2965.56446960919,2538.86330191653,2242.11242960605,2307.94707970753,2024.305069184,1886.67538579939,2176.50440940548,2013.14821760677,1990.9100355938,1752.87883437291,1893.2665701861,1936.1007363383
51.6314779270633,2966.18060218403,2538.86330191653,2242.11242960605,2306.79288330694,2024.305069184,1886.67538579939,2176.50440940548,2013.14821760677,1990.9100355938,1752.87883437291,1893.2665701861,1936.1007363383
51.7274472168906,2966.21992615933,2538.86330191653,2242.11242960605,2306.79288330694,2024.305069184,1886.67538579939,2176.50440940548,2013.14821760677,1990.9100355938,1752.75465146571,1893.2665701861,1936.1007363383
51.8234165067178,2966.38572776439,2538.86330191653,2242.11242960605,2306.79288330694,2023.69916490683,1886.67538579939,2176.50440940548,2013.14821760677,1990.9100355938,1752.75465146571,1893.2665701861,1936.1007363383
51.9193857965451,2966.69050531469,2538.86330191653,2242.11242960605,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,1990.9100355938,1752.75465146571,1893.2665701861,1936.1007363383
52.0153550863724,2966.76723113241,2538.86330191653,2242.11242960605,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,1990.9100355938,1752.75465146571,1893.03832143894,1936.1007363383
52.1113243761996,2966.88473023911,2538.86330191653,2242.11242960605,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,1990.62877641117,1752.75465146571,1893.03832143894,1936.1007363383
52.2072936660269,2967.29885445312,2538.86330191653,2241.58610053609,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,1990.62877641117,1752.75465146571,1893.03832143894,1936.1007363383
52.3032629558541,2967.33820810878,2538.86330191653,2241.58610053609,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,1990.62877641117,1752.63099955813,1893.03832143894,1936.1007363383
52.3992322456814,2967.33820810878,2538.86330191653,2241.58610053609,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,2017.09368854798,1752.63099955813,1893.03832143894,1918.98873298801
52.4952015355086,2967.47127189794,2538.86330191653,2241.58610053609,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2013.14821760677,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
52.5911708253359,2967.61039012,2538.86330191653,2241.58610053609,2306.79288330694,2023.69916490683,1886.67538579939,2175.90711667298,2012.76540517777,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
52.6871401151631,2967.61039012,2539.55395328843,2241.58610053609,2306.79288330694,2023.69916490683,1882.84843540261,2175.90711667298,2012.76540517777,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
52.7831094049904,2967.77669339324,2539.55395328843,2241.58610053609,2306.79288330694,2023.09884538467,1882.84843540261,2175.90711667298,2012.76540517777,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
52.8790786948177,2969.79057115963,2537.76912929455,2241.58610053609,2306.79288330694,2023.09884538467,1882.84843540261,2175.90711667298,2012.76540517777,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
52.9750479846449,2969.92717610449,2537.76912929455,2241.58610053609,2306.79288330694,2023.09884538467,1882.84843540261,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
53.0710172744722,2969.92717610449,2538.44505037053,2241.58610053609,2306.79288330694,2023.09884538467,1879.15127906723,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
53.1669865642994,2971.89746583251,2536.69977589282,2241.58610053609,2306.79288330694,2023.09884538467,1879.15127906723,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
53.2629558541267,2971.89746583251,2537.35874869612,2241.58610053609,2306.79288330694,2023.09884538467,1875.57806470459,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1918.98873298801
53.3589251439539,2971.89746583251,2538.02281672394,2241.58610053609,2306.79288330694,2023.09884538467,1875.57806470459,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1917.75038997044
53.4548944337812,2973.8353870884,2536.31412760478,2241.58610053609,2306.79288330694,2023.09884538467,1875.57806470459,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1917.75038997044
53.5508637236084,2973.8353870884,2536.95436365263,2241.58610053609,2306.79288330694,2023.09884538467,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1917.75038997044
53.6468330134357,2973.8353870884,2538.22146262526,2241.58610053609,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1917.75038997044
53.742802303263,2975.74811103847,2536.54678213722,2241.58610053609,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1917.75038997044
53.8387715930902,2975.81528502568,2536.54678213722,2241.58610053609,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1893.03832143894,1917.64233252908
53.9347408829175,2975.81528502568,2537.18127716271,2241.58610053609,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1890.55245151312,1917.64233252908
54.0307101727447,2975.81528502568,2540.51683158087,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1752.63099955813,1890.55245151312,1917.64233252908
54.126679462572,2975.81528502568,2540.82632657182,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1751.29048654301,1890.55245151312,1917.64233252908
54.2226487523992,2975.85252595377,2540.82632657182,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1917.64233252908
54.3186180422265,2975.85252595377,2541.45632428367,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.90711667298,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.43195078091
54.4145873320537,2976.14315911474,2541.45632428367,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.32970456883,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.43195078091
54.510556621881,2978.07291495983,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.32970456883,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.43195078091
54.6065259117083,2978.13906112437,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1872.13183733984,2175.32970456883,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.32578614872
54.7024952015355,2978.21593782701,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1871.84257517795,2175.32970456883,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.32578614872
54.7984644913628,2978.28223748831,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1871.84257517795,2175.32970456883,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.21954116062
54.89443378119,2978.35916943275,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1871.55417858545,2175.32970456883,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.21954116062
54.9904030710173,2978.64486353045,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1871.55417858545,2174.76071072702,2012.38836445179,2016.79582531166,1751.1735733506,1890.55245151312,1916.21954116062
55.0863723608445,2978.77518072035,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1871.55417858545,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1890.55245151312,1916.21954116062
55.1823416506718,2978.85205686378,2539.79585466092,2236.5130135759,2306.79288330694,2016.87726166426,1871.26710172392,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1890.55245151312,1916.21954116062
55.278310940499,2979.00135199,2539.79585466092,2236.5130135759,2306.79288330694,2016.34891309877,1871.26710172392,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1890.55245151312,1916.21954116062
55.3742802303263,2979.06794332042,2539.79585466092,2236.5130135759,2306.79288330694,2016.34891309877,1871.26710172392,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1890.55245151312,1916.11303836273
55.4702495201536,2979.13458976044,2539.79585466092,2236.5130135759,2306.79288330694,2016.34891309877,1871.26710172392,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1890.55245151312,1916.00655712391
55.5662188099808,2979.21168853217,2539.79585466092,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1890.55245151312,1916.00655712391
55.6621880998081,2979.21168853217,2540.41796543354,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1888.15204260463,1916.00655712391
55.7581573896353,2981.12180465774,2538.76048065108,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2016.79582531166,1751.1735733506,1888.15204260463,1916.00655712391
55.8541266794626,2981.24577980072,2538.76048065108,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2016.51330448953,1751.1735733506,1888.15204260463,1916.00655712391
55.9500959692898,2983.10747162753,2537.14081481347,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2016.51330448953,1751.1735733506,1888.15204260463,1916.00655712391
56.0460652591171,2983.22916181773,2537.14081481347,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2016.23452049475,1751.1735733506,1888.15204260463,1916.00655712391
56.1420345489443,2983.35073814455,2537.14081481347,2236.5130135759,2306.79288330694,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.95654259695,1751.1735733506,1888.15204260463,1916.00655712391
56.2380038387716,2983.91292144545,2537.14081481347,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.95654259695,1751.1735733506,1888.15204260463,1916.00655712391
56.3339731285988,2984.03391922411,2537.14081481347,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.68004636727,1751.1735733506,1888.15204260463,1916.00655712391
56.4299424184261,2985.84575215607,2535.55244806636,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.68004636727,1751.1735733506,1888.15204260463,1916.00655712391
56.5259117082534,2985.84575215607,2535.8733520948,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.68004636727,1749.80161574994,1888.15204260463,1916.00655712391
56.6218809980806,2987.61918027732,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.68004636727,1749.80161574994,1888.15204260463,1916.00655712391
56.7178502879079,2987.73631761135,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2015.4095086672,1749.80161574994,1888.15204260463,1916.00655712391
56.8138195777351,2987.73631761135,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1870.98093368131,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1916.00655712391
56.9097888675624,2987.80891461427,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1870.70831777542,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1916.00655712391
57.0057581573896,2987.88146529,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1870.43650210362,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1916.00655712391
57.1017274472169,2987.95396991497,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1870.16548167162,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1916.00655712391
57.1976967370441,2987.95396991497,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1938.3564647924,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1894.99217066211
57.2936660268714,2988.00973214604,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1938.3564647924,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1894.90465920204
57.3896353166987,2988.10508122284,2534.31840449915,2236.5130135759,2305.70656010961,2016.34891309877,1938.02528093908,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1894.90465920204
57.4856046065259,2988.10508122284,2515.64764056807,2236.5130135759,2305.70656010961,2127.7658618723,1938.02528093908,2174.76071072702,2012.02631466802,2026.87220203075,1730.19720003115,1888.15204260463,1894.90465920204
57.5815738963532,2988.23004988504,2515.64764056807,2236.5130135759,2305.70656010961,2127.7658618723,1938.02528093908,2174.76071072702,2012.02631466802,2026.59673292671,1730.19720003115,1888.15204260463,1894.90465920204
57.6775431861804,2988.35489925918,2515.64764056807,2236.5130135759,2305.70656010961,2127.7658618723,1938.02528093908,2174.76071072702,2012.02631466802,2026.32204643549,1730.19720003115,1888.15204260463,1894.90465920204
57.7735124760077,2988.45051288564,2515.64764056807,2236.5130135759,2305.70656010961,2127.7658618723,1937.69520402045,2174.76071072702,2012.02631466802,2026.32204643549,1730.19720003115,1888.15204260463,1894.90465920204
57.8694817658349,2988.45051288564,2516.93995199336,2236.5130135759,2305.70656010961,2127.7658618723,1937.69520402045,2174.76071072702,2007.42579297297,2026.32204643549,1730.19720003115,1888.15204260463,1894.90465920204
57.9654510556622,2989.00065497353,2516.93995199336,2236.5130135759,2304.64321615517,2127.7658618723,1937.69520402045,2174.76071072702,2007.42579297297,2026.32204643549,1730.19720003115,1888.15204260463,1894.90465920204
58.0614203454894,2989.12534595484,2516.93995199336,2236.5130135759,2304.64321615517,2127.7658618723,1937.69520402045,2174.76071072702,2007.42579297297,2026.04839171195,1730.19720003115,1888.15204260463,1894.90465920204
58.1573896353167,2989.24637933138,2516.93995199336,2236.5130135759,2304.64321615517,2127.7658618723,1937.69520402045,2174.76071072702,2007.09596022384,2026.04839171195,1730.19720003115,1888.15204260463,1894.90465920204
58.253358925144,2989.37106477274,2516.93995199336,2236.5130135759,2304.64321615517,2127.7658618723,1937.69520402045,2174.76071072702,2007.09596022384,2025.77543635793,1730.19720003115,1888.15204260463,1894.90465920204
58.3493282149712,2989.46668316635,2516.93995199336,2236.5130135759,2304.64321615517,2127.7658618723,1937.36717584574,2174.76071072702,2007.09596022384,2025.77543635793,1730.19720003115,1888.15204260463,1894.90465920204
58.4452975047985,2989.46668316635,2518.19906098216,2236.5130135759,2304.64321615517,2127.7658618723,1937.36717584574,2174.76071072702,2002.74065783094,2025.77543635793,1730.19720003115,1888.15204260463,1894.90465920204
58.5412667946257,2989.46668316635,2518.51338559307,2236.5130135759,2304.64321615517,2127.7658618723,1937.36717584574,2174.76071072702,2002.74065783094,2025.77543635793,1728.96376916637,1888.15204260463,1894.90465920204
58.637236084453,2989.74143817507,2518.51338559307,2236.5130135759,2304.64321615517,2127.7658618723,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1888.15204260463,1894.90465920204
58.7332053742802,2989.809255839,2518.51338559307,2236.5130135759,2304.64321615517,2127.7658618723,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1887.95508792412,1894.90465920204
58.8291746641075,2989.809255839,2519.21119882647,2236.5130135759,2304.64321615517,2127.7658618723,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1894.90465920204
58.9251439539347,2989.809255839,2522.85449232996,2230.83869019815,2304.64321615517,2127.7658618723,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1894.90465920204
59.021113243762,2990.06374126749,2522.85449232996,2230.83869019815,2304.64321615517,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1894.90465920204
59.1170825335893,2991.73572047325,2521.41499541766,2230.83869019815,2304.64321615517,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1894.90465920204
59.2130518234165,2992.27836846503,2521.41499541766,2230.83869019815,2303.597128912,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1894.90465920204
59.3090211132438,2992.27836846503,2524.87609427128,2225.47828518536,2303.597128912,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1894.90465920204
59.404990403071,2992.27836846503,2524.87609427128,2225.47828518536,2308.22647038095,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1891.02033419195
59.5009596928983,2992.33297887454,2524.87609427128,2225.47828518536,2308.22647038095,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1890.93593979095
59.5969289827255,2992.88550677923,2524.87609427128,2225.47828518536,2307.18926876719,2126.85884625021,1937.36717584574,2174.20910575925,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1890.93593979095
59.6928982725528,2993.1557718946,2524.87609427128,2225.47828518536,2307.18926876719,2126.85884625021,1937.36717584574,2173.6655730614,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1890.93593979095
59.78886756238,2994.81415022904,2523.45501588876,2225.47828518536,2307.18926876719,2126.85884625021,1937.36717584574,2173.6655730614,2002.74065783094,2025.77543635793,1728.96376916637,1885.28881480929,1890.93593979095
59.8848368522073,2994.84365917051,2523.45501588876,2225.47828518536,2307.18926876719,2126.85884625021,1937.36717584574,2173.6655730614,2002.74065783094,2025.77543635793,1728.87789943956,1885.28881480929,1890.93593979095
59.9808061420346,2994.93712411982,2523.45501588876,2225.47828518536,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2025.77543635793,1728.87789943956,1885.28881480929,1890.93593979095
60.0767754318618,2994.93712411982,2524.06532658198,2225.47828518536,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2025.77543635793,1728.87789943956,1885.28881480929,1889.79199534839
60.1727447216891,2994.93712411982,2524.71897427307,2225.47828518536,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2025.77543635793,1728.87789943956,1882.75980270584,1889.79199534839
60.2687140115163,2996.57977475457,2523.31537283374,2225.47828518536,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2025.77543635793,1728.87789943956,1882.75980270584,1889.79199534839
60.3646833013436,2996.57977475457,2523.31537283374,2225.47828518536,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2025.77543635793,1701.43119923456,1882.75980270584,1901.06832847326
60.4606525911708,2996.57977475457,2523.31537283374,2230.05826403921,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2025.77543635793,1701.43119923456,1882.75980270584,1895.61608346283
60.5566218809981,2996.57977475457,2523.31537283374,2206.84262453183,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2070.6686182954,1701.43119923456,1882.75980270584,1895.61608346283
60.6525911708253,2996.73284346812,2523.31537283374,2206.84262453183,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2070.34644607619,1701.43119923456,1882.75980270584,1895.61608346283
60.7485604606526,2996.73284346812,2523.31537283374,2216.46138692189,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2052.78373115966,1701.43119923456,1882.75980270584,1895.61608346283
60.8445297504798,2996.73284346812,2523.31537283374,2220.74964885998,2307.18926876719,2126.85884625021,1937.04783532733,2173.6655730614,2002.74065783094,2052.78373115966,1701.43119923456,1882.75980270584,1890.19307521725
60.9404990403071,2996.8262735285,2523.31537283374,2220.74964885998,2307.18926876719,2126.85884625021,1936.73135849203,2173.6655730614,2002.74065783094,2052.78373115966,1701.43119923456,1882.75980270584,1890.19307521725
61.0364683301344,2996.87896065417,2523.31537283374,2220.74964885998,2307.18926876719,2126.85884625021,1936.73135849203,2173.6655730614,2002.74065783094,2052.78373115966,1701.43119923456,1882.75980270584,1890.11759051656
61.1324376199616,2997.12515608662,2523.31537283374,2220.74964885998,2307.18926876719,2125.98689806954,1936.73135849203,2173.6655730614,2002.74065783094,2052.78373115966,1701.43119923456,1882.75980270584,1890.11759051656
61.2284069097889,2997.2185903366,2523.31537283374,2220.74964885998,2307.18926876719,2125.98689806954,1936.41617680429,2173.6655730614,2002.74065783094,2052.78373115966,1701.43119923456,1882.75980270584,1890.11759051656
61.3243761996161,2997.35672841892,2523.31537283374,2220.74964885998,2307.18926876719,2125.98689806954,1936.41617680429,2173.6655730614,2002.74065783094,2052.51123173113,1701.43119923456,1882.75980270584,1890.11759051656
61.4203454894434,2997.35672841892,2523.31537283374,2220.74964885998,2307.18926876719,2125.98689806954,1936.41617680429,2173.6655730614,2002.74065783094,2052.51123173113,1701.43119923456,1925.63359022993,1872.37958035969
61.5163147792706,2997.4339789142,2523.31537283374,2220.74964885998,2307.18926876719,2125.98689806954,1936.41617680429,2173.6655730614,2002.74065783094,2052.51123173113,1701.43119923456,1925.43045697733,1872.37958035969
61.6122840690979,2997.4339789142,2523.31537283374,2231.15083332874,2307.18926876719,2088.27539037775,1936.41617680429,2173.6655730614,2002.74065783094,2052.51123173113,1701.43119923456,1925.43045697733,1872.37958035969
61.7082533589251,2997.4585786977,2523.31537283374,2231.15083332874,2307.18926876719,2088.27539037775,1936.41617680429,2173.6655730614,2002.74065783094,2052.51123173113,1701.36574356816,1925.43045697733,1872.37958035969
61.8042226487524,2997.53613646968,2523.31537283374,2231.15083332874,2307.18926876719,2088.27539037775,1936.41617680429,2173.6655730614,2002.74065783094,2052.51123173113,1701.36574356816,1925.22741960289,1872.37958035969
61.9001919385797,2997.63035609677,2523.31537283374,2231.15083332874,2307.18926876719,2088.27539037775,1936.10153554267,2173.6655730614,2002.74065783094,2052.51123173113,1701.36574356816,1925.22741960289,1872.37958035969
61.9961612284069,2997.72446333974,2523.31537283374,2231.15083332874,2307.18926876719,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.51123173113,1701.36574356816,1925.22741960289,1872.37958035969
62.0921305182342,2999.37049981143,2521.88980013326,2231.15083332874,2307.18926876719,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.51123173113,1701.36574356816,1925.22741960289,1872.37958035969
62.1880998080614,2999.39485400566,2521.88980013326,2231.15083332874,2307.18926876719,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.51123173113,1701.30087809641,1925.22741960289,1872.37958035969
62.2840690978887,2999.44223747311,2521.88980013326,2231.15083332874,2307.18926876719,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.51123173113,1701.30087809641,1925.22741960289,1872.31417136237
62.3800383877159,2999.78119277595,2521.88980013326,2230.76000729459,2307.18926876719,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.51123173113,1701.30087809641,1925.22741960289,1872.31417136237
62.4760076775432,3000.32138531152,2521.88980013326,2230.76000729459,2306.1737832669,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.51123173113,1701.30087809641,1925.22741960289,1872.31417136237
62.5719769673704,3000.45851060368,2521.88980013326,2230.76000729459,2306.1737832669,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2052.24085828986,1701.30087809641,1925.22741960289,1872.31417136237
62.6679462571977,3000.59548307763,2521.88980013326,2230.76000729459,2306.1737832669,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.97123536692,1701.30087809641,1925.22741960289,1872.31417136237
62.763915547025,3002.20271593503,2520.48424978634,2230.76000729459,2306.1737832669,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.97123536692,1701.30087809641,1925.22741960289,1872.31417136237
62.8598848368522,3002.73025736033,2520.48424978634,2230.76000729459,2305.17922724246,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.97123536692,1701.30087809641,1925.22741960289,1872.31417136237
62.9558541266795,3002.75415886455,2520.48424978634,2230.76000729459,2305.17922724246,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.97123536692,1701.23702643038,1925.22741960289,1872.31417136237
63.0518234165067,3003.27763716795,2520.48424978634,2230.76000729459,2304.19646379789,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.97123536692,1701.23702643038,1925.22741960289,1872.31417136237
63.147792706334,3003.41170347565,2520.48424978634,2230.76000729459,2304.19646379789,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.70557272527,1701.23702643038,1925.22741960289,1872.31417136237
63.2437619961612,3003.45803949922,2520.48424978634,2230.76000729459,2304.19646379789,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.70557272527,1701.23702643038,1925.22741960289,1872.24941448056
63.3397312859885,3005.02459125127,2519.10151720206,2230.76000729459,2304.19646379789,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.70557272527,1701.23702643038,1925.22741960289,1872.24941448056
63.4357005758157,3005.04816308348,2519.10151720206,2230.76000729459,2304.19646379789,2088.27539037775,1935.78798939497,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1925.22741960289,1872.24941448056
63.531669865643,3005.04816308348,2519.10151720206,2230.76000729459,2310.08836802269,2088.27539037775,1922.55474784924,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1925.22741960289,1872.24941448056
63.6276391554702,3005.57726164939,2519.10151720206,2230.76000729459,2309.11740638592,2088.27539037775,1922.55474784924,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1925.22741960289,1872.24941448056
63.7236084452975,3006.10138903,2519.10151720206,2230.76000729459,2308.15861879353,2088.27539037775,1922.55474784924,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1925.22741960289,1872.24941448056
63.8195777351248,3006.1752821565,2519.10151720206,2230.76000729459,2308.15861879353,2088.27539037775,1922.55474784924,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1925.03211947372,1872.24941448056
63.915547024952,3006.25665322308,2519.10151720206,2230.76000729459,2308.15861879353,2088.27539037775,1922.29404026757,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1925.03211947372,1872.24941448056
64.0115163147793,3006.33064224741,2519.10151720206,2230.76000729459,2308.15861879353,2088.27539037775,1922.29404026757,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1924.8371193875,1872.24941448056
64.1074856046065,3006.41207248944,2519.10151720206,2230.76000729459,2308.15861879353,2088.27539037775,1922.03400421301,2173.6655730614,2002.74065783094,2051.70557272527,1701.17389486629,1924.8371193875,1872.24941448056
64.2034548944338,3006.52381390204,2519.10151720206,2230.76000729459,2308.15861879353,2088.27539037775,1922.03400421301,2173.6655730614,2002.44422257754,2051.70557272527,1701.17389486629,1924.8371193875,1872.24941448056
64.299424184261,3008.06006359526,2517.73014208321,2230.76000729459,2308.15861879353,2088.27539037775,1922.03400421301,2173.6655730614,2002.44422257754,2051.70557272527,1701.17389486629,1924.8371193875,1872.24941448056
64.3953934740883,3008.13317297149,2517.73014208321,2230.76000729459,2308.15861879353,2088.27539037775,1922.03400421301,2173.6655730614,2002.44422257754,2051.70557272527,1701.17389486629,1924.64408687428,1872.24941448056
64.4913627639155,3008.3174171379,2517.73014208321,2230.76000729459,2308.15861879353,2087.69506981126,1922.03400421301,2173.6655730614,2002.44422257754,2051.70557272527,1701.17389486629,1924.64408687428,1872.24941448056
64.5873320537428,3008.39786773316,2517.73014208321,2230.76000729459,2308.15861879353,2087.69506981126,1921.77706076798,2173.6655730614,2002.44422257754,2051.70557272527,1701.17389486629,1924.64408687428,1872.24941448056
64.6833013435701,3008.65257678365,2517.73014208321,2230.76000729459,2308.15861879353,2087.69506981126,1921.77706076798,2173.14551468692,2002.44422257754,2051.70557272527,1701.17389486629,1924.64408687428,1872.24941448056
64.7792706333973,3008.72575625062,2517.73014208321,2230.76000729459,2308.15861879353,2087.69506981126,1921.77706076798,2173.14551468692,2002.44422257754,2051.70557272527,1701.17389486629,1924.45155792051,1872.24941448056
64.8752399232246,3009.04875643777,2517.73014208321,2230.37410642259,2308.15861879353,2087.69506981126,1921.77706076798,2173.14551468692,2002.44422257754,2051.70557272527,1701.17389486629,1924.45155792051,1872.24941448056
64.9712092130518,3009.15904735424,2517.73014208321,2230.37410642259,2308.15861879353,2087.69506981126,1921.77706076798,2173.14551468692,2002.15165621456,2051.70557272527,1701.17389486629,1924.45155792051,1872.24941448056
65.0671785028791,3009.67538802122,2517.73014208321,2230.37410642259,2307.2145567487,2087.69506981126,1921.77706076798,2173.14551468692,2002.15165621456,2051.70557272527,1701.17389486629,1924.45155792051,1872.24941448056
65.1631477927063,3009.75555838578,2517.73014208321,2230.37410642259,2307.2145567487,2087.69506981126,1921.5220107161,2173.14551468692,2002.15165621456,2051.70557272527,1701.17389486629,1924.45155792051,1872.24941448056
65.2591170825336,3009.82855828361,2517.73014208321,2230.37410642259,2307.2145567487,2087.69506981126,1921.5220107161,2173.14551468692,2002.15165621456,2051.70557272527,1701.17389486629,1924.25998590699,1872.24941448056
65.3550863723608,3009.85195082582,2517.73014208321,2230.37410642259,2307.2145567487,2087.69506981126,1921.5220107161,2173.14551468692,2002.15165621456,2051.70557272527,1701.11173127298,1924.25998590699,1872.24941448056
65.4510556621881,3009.93233408694,2517.73014208321,2230.37410642259,2307.2145567487,2087.69506981126,1921.26746839557,2173.14551468692,2002.15165621456,2051.70557272527,1701.11173127298,1924.25998590699,1872.24941448056
65.5470249520153,3010.0637561151,2517.73014208321,2230.37410642259,2307.2145567487,2087.69506981126,1921.26746839557,2173.14551468692,2002.15165621456,2051.44432235573,1701.11173127298,1924.25998590699,1872.24941448056
65.6429942418426,3010.57856552815,2517.73014208321,2230.37410642259,2306.27882027172,2087.69506981126,1921.26746839557,2173.14551468692,2002.15165621456,2051.44432235573,1701.11173127298,1924.25998590699,1872.24941448056
65.7389635316699,3010.65160439502,2517.73014208321,2230.37410642259,2306.27882027172,2087.69506981126,1921.26746839557,2173.14551468692,2002.15165621456,2051.44432235573,1701.11173127298,1924.06903286835,1872.24941448056
65.8349328214971,3010.83562197477,2517.73014208321,2230.37410642259,2306.27882027172,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2051.44432235573,1701.11173127298,1924.06903286835,1872.24941448056
65.9309021113244,3011.34646623726,2517.73014208321,2230.37410642259,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2051.44432235573,1701.11173127298,1924.06903286835,1872.24941448056
66.0268714011516,3011.34646623726,2521.57338897306,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2051.44432235573,1701.11173127298,1924.06903286835,1872.24941448056
66.1228406909789,3011.34646623726,2523.15881198854,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1701.11173127298,1924.06903286835,1872.24941448056
66.2188099808061,3012.89752425187,2521.77823626095,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1701.11173127298,1924.06903286835,1872.24941448056
66.3147792706334,3012.96959936739,2521.77823626095,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1701.11173127298,1923.88030494496,1872.24941448056
66.4107485604606,3012.96959936739,2521.77823626095,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1681.03370765351,1941.6831878668,1872.24941448056
66.5067178502879,3013.04721679993,2521.77823626095,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1681.03370765351,1941.48988210257,1872.24941448056
66.6026871401152,3013.06733532838,2521.77823626095,2225.24534205046,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.48988210257,1872.24941448056
66.6986564299424,3013.3775963213,2521.77823626095,2224.87809779702,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.48988210257,1872.24941448056
66.7946257197697,3013.45526088335,2521.77823626095,2224.87809779702,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.24941448056
66.8905950095969,3013.50037292709,2521.77823626095,2224.87809779702,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.18497780445
66.9865642994242,3015.02941465042,2520.40907335123,2224.87809779702,2305.353684952,2087.12192724974,1921.26746839557,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.18497780445
67.0825335892514,3015.10816532237,2520.40907335123,2224.87809779702,2305.353684952,2087.12192724974,1921.01894408084,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.18497780445
67.1785028790787,3016.60631093204,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1921.01894408084,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.18497780445
67.2744721689059,3016.65026437235,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1921.01894408084,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.1214632616
67.3704414587332,3016.72803098569,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1920.77311459479,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.1214632616
67.4664107485605,3016.77209962959,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1920.77311459479,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.05785133635
67.5623800383877,3016.84995338683,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1920.5278271588,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1872.05785133635
67.658349328215,3016.89413684654,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1920.5278271588,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1871.99414239241
67.7543186180422,3016.89413684654,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1913.8163910593,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1874.24065220333
67.8502879078695,3016.93866114421,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1913.8163910593,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1874.1789608123
67.9462571976967,3017.00998677011,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1913.61261027597,2173.14551468692,2002.15165621456,2047.69203507711,1680.98331049347,1941.29699530774,1874.1789608123
68.042226487524,3017.00998677011,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1913.61261027597,2173.14551468692,2002.15165621456,2047.69203507711,1742.60182864161,1941.29699530774,1848.3214546988
68.1381957773512,3017.04848860503,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1913.61261027597,2173.14551468692,2002.15165621456,2047.69203507711,1742.60182864161,1941.29699530774,1848.26986619341
68.2341650671785,3017.12007641092,2519.06529593154,2224.87809779702,2305.353684952,2087.12192724974,1913.40899235659,2173.14551468692,2002.15165621456,2047.69203507711,1742.60182864161,1941.29699530774,1848.26986619341
68.3301343570058,3017.12007641092,2520.67274075747,2224.87809779702,2305.353684952,2087.12192724974,1913.40899235659,2173.14551468692,2002.15165621456,2043.96039061333,1742.60182864161,1941.29699530774,1848.26986619341
68.426103646833,3017.12007641092,2524.36329796935,2219.88011704232,2305.353684952,2087.12192724974,1913.40899235659,2173.14551468692,2002.15165621456,2043.96039061333,1742.60182864161,1941.29699530774,1848.26986619341
68.5220729366603,3017.12007641092,2524.36329796935,2219.88011704232,2305.353684952,2087.12192724974,1913.40899235659,2173.14551468692,2002.15165621456,2000.38243492034,1807.20265160537,1941.29699530774,1848.26986619341
68.6180422264875,3017.12007641092,2524.81953660241,2219.88011704232,2305.353684952,2087.12192724974,1913.40899235659,2173.14551468692,2002.15165621456,2000.38243492034,1805.84959627446,1941.29699530774,1848.26986619341
68.7140115163148,3017.12007641092,2528.30935061308,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2173.14551468692,2002.15165621456,2000.38243492034,1805.84959627446,1941.29699530774,1848.26986619341
68.809980806142,3017.12007641092,2528.30935061308,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2036.68256469809,1805.84959627446,1941.29699530774,1848.26986619341
68.9059500959693,3017.12007641092,2529.70420742608,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2033.67394961642,1805.84959627446,1941.29699530774,1848.26986619341
69.0019193857965,3017.12007641092,2529.70420742608,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2033.67394961642,1783.37643941245,1964.57254704857,1848.26986619341
69.0978886756238,3017.12007641092,2531.06285867332,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2030.77475630836,1783.37643941245,1964.57254704857,1848.26986619341
69.1938579654511,2992.06358354833,2552.27883116062,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2030.77475630836,1783.37643941245,1964.57254704857,1848.26986619341
69.2898272552783,2992.06358354833,2552.61195434758,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2030.77475630836,1782.44615653274,1964.57254704857,1848.26986619341
69.3857965451056,2992.10016478617,2552.61195434758,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2002.15165621456,2030.77475630836,1782.36626318478,1964.57254704857,1848.26986619341
69.4817658349328,2992.22643311519,2552.61195434758,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2001.82072155967,2030.77475630836,1782.36626318478,1964.57254704857,1848.26986619341
69.5777351247601,2992.32553926397,2552.61195434758,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2001.82072155967,2030.77475630836,1782.36626318478,1964.34168286027,1848.26986619341
69.6737044145873,2994.37888270243,2550.853534837,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.63185814437,2001.82072155967,2030.77475630836,1782.36626318478,1964.34168286027,1848.26986619341
69.7696737044146,2994.60723111091,2550.853534837,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2133.18917271047,2001.82072155967,2030.77475630836,1782.36626318478,1964.34168286027,1848.26986619341
69.8656429942418,2994.83483910027,2550.853534837,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2132.74880608207,2001.82072155967,2030.77475630836,1782.36626318478,1964.34168286027,1848.26986619341
69.9616122840691,2994.87078712643,2550.853534837,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2132.74880608207,2001.82072155967,2030.77475630836,1782.28737635121,1964.34168286027,1848.26986619341
70.0575815738964,2994.99464614182,2550.853534837,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2030.77475630836,1782.28737635121,1964.34168286027,1848.26986619341
70.1535508637236,2995.03066468998,2550.853534837,2215.18070106757,2305.353684952,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2030.77475630836,1782.20848908066,1964.34168286027,1848.26986619341
70.2495201535509,2995.60277290795,2550.853534837,2215.18070106757,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2030.77475630836,1782.20848908066,1964.34168286027,1848.26986619341
70.3454894433781,2997.5957571557,2549.12943623264,2215.18070106757,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2030.77475630836,1782.20848908066,1964.34168286027,1848.26986619341
70.4414587332054,2997.5957571557,2552.11757445676,2211.06215730617,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2030.77475630836,1782.20848908066,1964.34168286027,1848.26986619341
70.5374280230326,2997.5957571557,2552.11757445676,2211.06215730617,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2049.74710567507,1782.20848908066,1936.80249568692,1848.26986619341
70.6333973128599,2997.5957571557,2552.11757445676,2211.06215730617,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.30600689129
70.7293666026871,2997.5957571557,2554.98227367667,2207.1430171418,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.30600689129
70.8253358925144,2999.6076652438,2553.28426091648,2207.1430171418,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.30600689129
70.9213051823417,2999.64826595092,2553.28426091648,2207.1430171418,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.25184620365
71.0172744721689,2999.68892109487,2553.28426091648,2207.1430171418,2304.30747505443,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.19764545305
71.1132437619962,3000.23989994874,2553.28426091648,2207.1430171418,2303.29091607533,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.19764545305
71.2092130518234,3000.23989994874,2557.6137420971,2207.1430171418,2293.54037567884,2087.12192724974,1913.40899235659,2132.74880608207,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.19764545305
71.3051823416507,3000.46027029644,2557.6137420971,2207.1430171418,2293.54037567884,2087.12192724974,1913.40899235659,2132.318465556,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.19764545305
71.4011516314779,3000.65994869709,2557.6137420971,2207.1430171418,2293.54037567884,2086.50077338622,1913.40899235659,2132.318465556,2001.49505596641,2060.89260247864,1782.20848908066,1936.80249568692,1839.19764545305
71.4971209213052,3000.73921918536,2557.6137420971,2207.1430171418,2293.54037567884,2086.50077338622,1913.40899235659,2132.318465556,2001.49505596641,2060.89260247864,1782.20848908066,1936.6287974414,1839.19764545305
71.5930902111324,3000.8184928771,2557.6137420971,2207.1430171418,2293.54037567884,2086.50077338622,1913.40899235659,2132.318465556,2001.49505596641,2060.89260247864,1782.20848908066,1936.45535844315,1839.19764545305
71.6890595009597,3001.01778410854,2557.6137420971,2207.1430171418,2293.54037567884,2085.88404318711,1913.40899235659,2132.318465556,2001.49505596641,2060.89260247864,1782.20848908066,1936.45535844315,1839.19764545305
71.785028790787,3001.09705838282,2557.6137420971,2207.1430171418,2293.54037567884,2085.88404318711,1913.40899235659,2132.318465556,2001.49505596641,2060.89260247864,1782.20848908066,1936.28222776148,1839.19764545305
71.8809980806142,3001.24114316055,2557.6137420971,2207.1430171418,2293.54037567884,2085.88404318711,1913.40899235659,2132.318465556,2001.49505596641,2060.65910589688,1782.20848908066,1936.28222776148,1839.19764545305
71.9769673704415,3001.28194360808,2557.6137420971,2207.1430171418,2293.54037567884,2085.88404318711,1913.40899235659,2132.318465556,2001.49505596641,2060.65910589688,1782.20848908066,1936.28222776148,1839.14315575193
72.0729366602687,3001.31706211886,2557.6137420971,2207.1430171418,2293.54037567884,2085.88404318711,1913.40899235659,2132.318465556,2001.49505596641,2060.65910589688,1782.13129213982,1936.28222776148,1839.14315575193
72.168905950096,3001.31706211886,2557.6137420971,2207.1430171418,2293.54037567884,2111.74698477015,1888.22592721776,2132.318465556,2001.49505596641,2060.65910589688,1782.13129213982,1936.28222776148,1839.14315575193
72.2648752399232,3001.31706211886,2557.6137420971,2207.1430171418,2293.54037567884,2083.47881566876,1888.22592721776,2132.318465556,2001.49505596641,2060.65910589688,1782.13129213982,1936.28222776148,1849.88451039415
72.3608445297505,3001.31706211886,2557.6137420971,2207.1430171418,2293.54037567884,2103.76290630069,1866.9936162885,2132.318465556,2001.49505596641,2060.65910589688,1782.13129213982,1936.28222776148,1849.88451039415
72.4568138195777,3001.31706211886,2557.6137420971,2209.87522633714,2293.54037567884,2103.76290630069,1866.9936162885,2132.318465556,2001.49505596641,2060.65910589688,1776.1218538636,1936.28222776148,1849.88451039415
72.552783109405,3001.31706211886,2557.6137420971,2209.87522633714,2293.54037567884,2114.64400873292,1866.9936162885,2132.318465556,2001.49505596641,2060.65910589688,1766.56558776163,1936.28222776148,1849.88451039415
72.6487523992323,3001.31706211886,2560.39620836888,2206.08292086842,2293.54037567884,2114.64400873292,1866.9936162885,2132.318465556,2001.49505596641,2060.65910589688,1766.56558776163,1936.28222776148,1849.88451039415
72.7447216890595,3001.31706211886,2563.05995945775,2202.47280223232,2293.54037567884,2114.64400873292,1866.9936162885,2132.318465556,2001.49505596641,2060.65910589688,1766.56558776163,1936.28222776148,1849.88451039415
72.8406909788868,3001.31706211886,2564.32886153863,2202.47280223232,2293.54037567884,2114.64400873292,1866.9936162885,2132.318465556,2001.49505596641,2058.08545099978,1766.56558776163,1936.28222776148,1849.88451039415
72.936660268714,3001.31706211886,2564.32886153863,2211.3977687463,2293.54037567884,2114.64400873292,1866.9936162885,2132.318465556,2001.49505596641,2044.6036494335,1766.56558776163,1936.28222776148,1849.88451039415
73.0326295585413,3003.43685553602,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.9936162885,2132.318465556,2001.49505596641,2044.6036494335,1766.56558776163,1936.28222776148,1849.88451039415
73.1285988483685,3003.65759575285,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.9936162885,2131.88994815964,2001.49505596641,2044.6036494335,1766.56558776163,1936.28222776148,1849.88451039415
73.2245681381958,3003.71588197047,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.84932867646,2131.88994815964,2001.49505596641,2044.6036494335,1766.56558776163,1936.28222776148,1849.88451039415
73.320537428023,3003.79539763886,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.84932867646,2131.88994815964,2001.49505596641,2044.6036494335,1766.56558776163,1936.10972204688,1849.88451039415
73.4165067178503,3004.01601168436,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.84932867646,2131.46306766032,2001.49505596641,2044.6036494335,1766.56558776163,1936.10972204688,1849.88451039415
73.5124760076775,3004.2359396213,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.84932867646,2131.03833815754,2001.49505596641,2044.6036494335,1766.56558776163,1936.10972204688,1849.88451039415
73.6084452975048,3004.45518792518,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.84932867646,2130.61573643663,2001.49505596641,2044.6036494335,1766.56558776163,1936.10972204688,1849.88451039415
73.7044145873321,3004.51351391738,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.70540677583,2130.61573643663,2001.49505596641,2044.6036494335,1766.56558776163,1936.10972204688,1849.88451039415
73.8003838771593,3004.73239142975,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.70540677583,2130.19494992051,2001.49505596641,2044.6036494335,1766.56558776163,1936.10972204688,1849.88451039415
73.8963531669866,3004.86316395989,2562.59602856619,2211.3977687463,2293.54037567884,2114.64400873292,1866.70540677583,2130.19494992051,2001.49505596641,2044.40363153417,1766.56558776163,1936.10972204688,1849.88451039415
73.9923224568138,3005.07698368203,2562.59602856619,2211.3977687463,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.49505596641,2044.40363153417,1766.56558776163,1936.10972204688,1849.88451039415
74.0882917466411,3005.20762907177,2562.59602856619,2211.3977687463,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.49505596641,2044.20395296751,1766.56558776163,1936.10972204688,1849.88451039415
74.1842610364683,3005.25093392506,2562.59602856619,2211.3977687463,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.49505596641,2044.20395296751,1766.56558776163,1936.10972204688,1849.82764496532
74.2802303262956,3005.25093392506,2565.31937482224,2207.82236985139,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.49505596641,2044.20395296751,1766.56558776163,1936.10972204688,1849.82764496532
74.3761996161228,3005.29438203663,2565.31937482224,2207.82236985139,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.49505596641,2044.20395296751,1766.56558776163,1936.10972204688,1849.77065169192
74.4721689059501,3005.29438203663,2567.93635160069,2204.40491445732,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.49505596641,2044.20395296751,1766.56558776163,1936.10972204688,1849.77065169192
74.5681381957774,3005.41618628551,2567.93635160069,2204.40491445732,2293.54037567884,2114.12084579262,1866.70540677583,2130.19494992051,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.77065169192
74.6641074856046,3005.47504484529,2567.93635160069,2204.40491445732,2293.54037567884,2114.12084579262,1866.56141155796,2130.19494992051,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.77065169192
74.7600767754319,3005.53392454957,2567.93635160069,2204.40491445732,2293.54037567884,2114.12084579262,1866.41758460113,2130.19494992051,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.77065169192
74.8560460652591,3005.5776722724,2567.93635160069,2204.40491445732,2293.54037567884,2114.12084579262,1866.41758460113,2130.19494992051,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.71334742568
74.9520153550864,3005.5776722724,2570.47252399321,2201.11507583562,2293.54037567884,2114.12084579262,1866.41758460113,2130.19494992051,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.71334742568
75.0479846449136,3005.5776722724,2572.91111225675,2197.96543767276,2293.54037567884,2114.12084579262,1866.41758460113,2130.19494992051,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.71334742568
75.1439539347409,3005.79956034644,2572.91111225675,2197.96543767276,2293.54037567884,2114.12084579262,1866.41758460113,2129.77273113193,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.71334742568
75.2399232245681,3005.84352372921,2572.91111225675,2197.96543767276,2293.54037567884,2114.12084579262,1866.41758460113,2129.77273113193,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.65581692189
75.3358925143954,3005.90282423871,2572.91111225675,2197.96543767276,2293.54037567884,2114.12084579262,1866.2736205021,2129.77273113193,2001.1794910262,2044.20395296751,1766.56558776163,1936.10972204688,1849.65581692189
75.4318618042226,3005.90282423871,2572.91111225675,2200.35753751481,2293.54037567884,2114.12084579262,1866.2736205021,2129.77273113193,2001.1794910262,2044.20395296751,1761.05582374143,1936.10972204688,1849.65581692189
75.5278310940499,3005.90282423871,2575.30882747262,2197.31477930692,2293.54037567884,2114.12084579262,1866.2736205021,2129.77273113193,2001.1794910262,2044.20395296751,1761.05582374143,1936.10972204688,1849.65581692189
75.6238003838772,3005.96238352666,2575.30882747262,2197.31477930692,2293.54037567884,2114.12084579262,1866.1295911006,2129.77273113193,2001.1794910262,2044.20395296751,1761.05582374143,1936.10972204688,1849.65581692189
75.7197696737044,3006.09609222554,2575.30882747262,2197.31477930692,2293.54037567884,2114.12084579262,1866.1295911006,2129.77273113193,2001.1794910262,2044.00131728508,1761.05582374143,1936.10972204688,1849.65581692189
75.8157389635317,3006.09609222554,2577.63045005213,2194.38251349161,2293.54037567884,2114.12084579262,1866.1295911006,2129.77273113193,2001.1794910262,2044.00131728508,1761.05582374143,1936.10972204688,1849.65581692189
75.9117082533589,3006.12734233667,2577.63045005213,2194.38251349161,2293.54037567884,2114.12084579262,1866.1295911006,2129.77273113193,2001.1794910262,2044.00131728508,1760.99357127613,1936.10972204688,1849.65581692189
76.0076775431862,3006.26142971141,2577.63045005213,2194.38251349161,2293.54037567884,2114.12084579262,1866.1295911006,2129.77273113193,2001.1794910262,2043.79855309443,1760.99357127613,1936.10972204688,1849.65581692189
76.1036468330134,3006.48542604026,2577.63045005213,2194.38251349161,2293.54037567884,2114.12084579262,1866.1295911006,2129.34989564547,2001.1794910262,2043.79855309443,1760.99357127613,1936.10972204688,1849.65581692189
76.1996161228407,3006.60953185848,2577.63045005213,2194.38251349161,2293.54037567884,2114.12084579262,1866.1295911006,2129.34989564547,2000.86327313821,2043.79855309443,1760.99357127613,1936.10972204688,1849.65581692189
76.2955854126679,3006.60953185848,2577.63045005213,2202.42919961862,2293.54037567884,2114.12084579262,1866.1295911006,2129.34989564547,2000.86327313821,2030.85117837373,1760.99357127613,1936.10972204688,1849.65581692189
76.3915547024952,3006.60953185848,2577.63045005213,2202.42919961862,2293.54037567884,2114.12084579262,1893.71523336234,2129.34989564547,2000.86327313821,2030.85117837373,1739.18963553272,1936.10972204688,1849.65581692189
76.4875239923225,3006.65425505261,2577.63045005213,2202.42919961862,2293.54037567884,2114.12084579262,1893.71523336234,2129.34989564547,2000.86327313821,2030.85117837373,1739.18963553272,1936.10972204688,1849.59745225543
76.5834932821497,3006.65425505261,2577.63045005213,2209.66924809196,2293.54037567884,2114.12084579262,1893.71523336234,2129.34989564547,2000.86327313821,2019.45663192806,1739.18963553272,1936.10972204688,1849.59745225543
76.679462571977,3006.65425505261,2577.63045005213,2215.7105658407,2293.54037567884,2114.12084579262,1893.71523336234,2129.34989564547,1981.34630127157,2019.45663192806,1739.18963553272,1936.10972204688,1849.59745225543
76.7754318618042,3006.65425505261,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.34630127157,2019.45663192806,1739.18963553272,1936.10972204688,1849.59745225543
76.8714011516315,3006.69929946774,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.34630127157,2019.45663192806,1739.18963553272,1936.10972204688,1849.53878281792
76.9673704414587,3006.81611516629,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.34630127157,2019.29516589983,1739.18963553272,1936.10972204688,1849.53878281792
77.063339731286,3006.92639169983,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.29516589983,1739.18963553272,1936.10972204688,1849.53878281792
77.1593090211132,3006.95395620967,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.29516589983,1739.13826048193,1936.10972204688,1849.53878281792
77.2552783109405,3007.03722346505,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.29516589983,1739.13826048193,1935.93444320588,1849.53878281792
77.3512476007677,3007.08251119574,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.29516589983,1739.13826048193,1935.93444320588,1849.47984500618
77.447216890595,3007.19985654783,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1739.13826048193,1935.93444320588,1849.47984500618
77.5431861804223,3007.24522528314,2577.63045005213,2219.35801050564,2293.54037567884,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1739.13826048193,1935.93444320588,1849.42082728149
77.6391554702495,3007.78938111354,2577.63045005213,2219.35801050564,2292.60061706555,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1739.13826048193,1935.93444320588,1849.42082728149
77.7351247600768,3007.78938111354,2577.63045005213,2219.35801050564,2292.60061706555,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1782.13712739584,1887.35308474873,1849.42082728149
77.831094049904,3007.78938111354,2578.01569407088,2219.35801050564,2292.60061706555,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1782.13712739584,1887.35308474873,1848.7827436199
77.9270633397313,3007.78938111354,2578.01569407088,2219.35801050564,2295.52290265415,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1778.85026449842,1887.35308474873,1848.7827436199
78.0230326295585,3008.1279738806,2578.01569407088,2219.05106135112,2295.52290265415,2114.12084579262,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1778.85026449842,1887.35308474873,1848.7827436199
78.1190019193858,3008.35162954096,2578.01569407088,2219.05106135112,2295.52290265415,2113.59298306607,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1778.85026449842,1887.35308474873,1848.7827436199
78.214971209213,3008.5743911121,2578.01569407088,2219.05106135112,2295.52290265415,2113.06850651492,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1778.85026449842,1887.35308474873,1848.7827436199
78.3109404990403,3008.61958726369,2578.01569407088,2219.05106135112,2295.52290265415,2113.06850651492,1883.14491981369,2129.34989564547,1981.08611563216,2019.13323474403,1778.85026449842,1887.35308474873,1848.7239814686
78.4069097888676,3008.61958726369,2578.01569407088,2219.05106135112,2295.52290265415,2113.06850651492,1913.99015275718,2129.34989564547,1981.08611563216,2019.13323474403,1778.85026449842,1887.35308474873,1832.29229496517
78.5028790786948,3008.61958726369,2578.01569407088,2219.05106135112,2295.52290265415,2113.06850651492,1954.20936042575,2129.34989564547,1981.08611563216,1994.33475544145,1778.85026449842,1887.35308474873,1832.29229496517
78.5988483685221,3008.61958726369,2578.01569407088,2222.58823761306,2295.52290265415,2113.06850651492,1954.20936042575,2129.34989564547,1981.08611563216,1994.33475544145,1778.85026449842,1878.6637792012,1832.29229496517
78.6948176583493,3008.61958726369,2578.01569407088,2237.28967773933,2266.06888886895,2113.06850651492,1954.20936042575,2129.34989564547,1981.08611563216,1994.33475544145,1778.85026449842,1878.6637792012,1832.29229496517
78.7907869481766,3008.61958726369,2578.01569407088,2245.74427920804,2266.06888886895,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.33475544145,1778.85026449842,1878.6637792012,1832.29229496517
78.8867562380038,3008.61958726369,2578.01569407088,2257.99953526853,2241.76228529097,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.33475544145,1778.85026449842,1878.6637792012,1832.29229496517
78.9827255278311,3008.61958726369,2581.27539436454,2254.69555136175,2241.76228529097,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.33475544145,1778.85026449842,1878.6637792012,1832.29229496517
79.0786948176583,3008.61958726369,2584.39131220529,2251.53808216471,2241.76228529097,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.33475544145,1778.85026449842,1878.6637792012,1832.29229496517
79.1746641074856,3008.72282977396,2584.39131220529,2251.53808216471,2241.76228529097,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1878.6637792012,1832.29229496517
79.2706333973129,3011.16518366983,2582.48382846381,2251.53808216471,2241.76228529097,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1878.6637792012,1832.29229496517
79.3666026871401,3011.16518366983,2585.37818084536,2251.53808216471,2236.02244453032,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1878.6637792012,1832.29229496517
79.4625719769674,3011.16518366983,2588.29853984556,2248.51052366511,2236.02244453032,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1878.6637792012,1832.29229496517
79.5585412667946,3011.55629609834,2588.29853984556,2248.19862978197,2236.02244453032,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1878.6637792012,1832.29229496517
79.6545105566219,3011.55629609834,2588.73801975499,2248.19862978197,2236.02244453032,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1832.29229496517
79.7504798464491,3014.00088373524,2586.87095683824,2248.19862978197,2236.02244453032,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1832.29229496517
79.8464491362764,3014.37919300698,2586.87095683824,2248.19862978197,2235.4599643797,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1832.29229496517
79.9424184261036,3014.41888553685,2586.87095683824,2248.19862978197,2235.4599643797,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1832.24184711287
80.0383877159309,3014.41888553685,2586.87095683824,2248.19862978197,2239.64295800277,2113.06850651492,1954.20936042575,2109.6864980986,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1828.63037430662
80.1343570057582,3014.61549600458,2586.87095683824,2248.19862978197,2239.64295800277,2113.06850651492,1954.20936042575,2109.33835299847,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1828.63037430662
80.2303262955854,3014.70227162532,2586.87095683824,2248.19862978197,2239.64295800277,2113.06850651492,1954.04267772598,2109.33835299847,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1828.63037430662
80.3262955854127,3014.78903459813,2586.87095683824,2248.19862978197,2239.64295800277,2113.06850651492,1953.87622978749,2109.33835299847,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1828.63037430662
80.4222648752399,3015.17478316164,2586.87095683824,2248.19862978197,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1981.08611563216,1994.19869887029,1778.85026449842,1877.49816682567,1828.63037430662
80.5182341650672,3015.28268521102,2586.87095683824,2248.19862978197,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.19869887029,1778.85026449842,1877.49816682567,1828.63037430662
80.6142034548944,3015.31551556222,2586.87095683824,2248.19862978197,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.19869887029,1778.7917936585,1877.49816682567,1828.63037430662
80.7101727447217,3015.41447657919,2586.87095683824,2248.19862978197,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1778.7917936585,1877.49816682567,1828.63037430662
80.8061420345489,3015.79645835265,2586.87095683824,2247.88630875442,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1778.7917936585,1877.49816682567,1828.63037430662
80.9021113243762,3015.82928308731,2586.87095683824,2247.88630875442,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1778.73336273999,1877.49816682567,1828.63037430662
80.9980806142035,3018.1989978038,2585.02535049783,2247.88630875442,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1778.73336273999,1877.49816682567,1828.63037430662
81.0940499040307,3018.1989978038,2585.28740358857,2247.88630875442,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1778.09898156045,1877.49816682567,1828.63037430662
81.190019193858,3018.1989978038,2585.54829525157,2247.88630875442,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1777.46942620965,1877.49816682567,1828.63037430662
81.2859884836852,3018.1989978038,2585.80804116187,2247.88630875442,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1776.84462097574,1877.49816682567,1828.63037430662
81.3819577735125,3018.1989978038,2588.68716806248,2244.84383339626,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1776.84462097574,1877.49816682567,1828.63037430662
81.4779270633397,3018.1989978038,2588.93881028451,2244.84383339626,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1776.23433691646,1877.49816682567,1828.63037430662
81.573896353167,3018.1989978038,2589.18940748223,2244.84383339626,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1775.62849389724,1877.49816682567,1828.63037430662
81.6698656429942,3018.1989978038,2589.50379261963,2244.84383339626,2239.08124966239,2113.06850651492,1953.87622978749,2109.33835299847,1980.83253701695,1994.06534261006,1775.62849389724,1877.49816682567,1828.10800739412
81.7658349328215,3018.1989978038,2589.50379261963,2248.67264639001,2239.08124966239,2113.06850651492,1943.78452136144,2109.33835299847,1980.83253701695,1994.06534261006,1775.62849389724,1877.49816682567,1828.10800739412
81.8618042226488,3018.1989978038,2590.28478000476,2248.67264639001,2239.08124966239,2113.06850651492,1943.78452136144,2109.33835299847,1978.20430074885,1994.06534261006,1775.62849389724,1877.49816682567,1828.10800739412
81.957773512476,3018.1989978038,2593.08685479843,2245.74170479484,2239.08124966239,2113.06850651492,1943.78452136144,2109.33835299847,1978.20430074885,1994.06534261006,1775.62849389724,1877.49816682567,1828.10800739412
82.0537428023033,3018.1989978038,2594.55922145043,2245.74170479484,2239.08124966239,2108.05341123292,1943.78452136144,2109.33835299847,1978.20430074885,1994.06534261006,1775.62849389724,1877.49816682567,1828.10800739412
82.1497120921305,3018.1989978038,2594.55922145043,2247.32475372836,2239.08124966239,2108.05341123292,1943.78452136144,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.2456813819578,3018.28013537124,2594.55922145043,2247.32475372836,2239.08124966239,2108.05341123292,1943.63523981451,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.341650671785,3018.4896709195,2594.55922145043,2247.32475372836,2239.08124966239,2107.57254557351,1943.63523981451,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.4376199616123,3018.6984545524,2594.55922145043,2247.32475372836,2239.08124966239,2107.09447327181,1943.63523981451,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.5335892514395,3018.6984545524,2597.26515965959,2244.49981233719,2239.08124966239,2107.09447327181,1943.63523981451,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.6295585412668,3019.07087190891,2597.26515965959,2244.20774895639,2239.08124966239,2107.09447327181,1943.63523981451,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.7255278310941,3019.15192888824,2597.26515965959,2244.20774895639,2239.08124966239,2107.09447327181,1943.48625789415,2109.33835299847,1978.20430074885,1994.06534261006,1771.73095761637,1877.49816682567,1828.10800739412
82.8214971209213,3019.25086422423,2597.26515965959,2244.20774895639,2239.08124966239,2107.09447327181,1943.48625789415,2109.33835299847,1978.20430074885,1993.93121969144,1771.73095761637,1877.49816682567,1828.10800739412
82.9174664107486,3019.25086422423,2597.68043528956,2244.20774895639,2239.08124966239,2107.09447327181,1943.48625789415,2109.33835299847,1978.20430074885,1993.93121969144,1771.73095761637,1876.37448780874,1828.10800739412
83.0134357005758,3019.63605623782,2597.68043528956,2244.20774895639,2238.51875329573,2107.09447327181,1943.48625789415,2109.33835299847,1978.20430074885,1993.93121969144,1771.73095761637,1876.37448780874,1828.10800739412
83.1094049904031,3019.67497324798,2597.68043528956,2244.20774895639,2238.51875329573,2107.09447327181,1943.48625789415,2109.33835299847,1978.20430074885,1993.93121969144,1771.73095761637,1876.37448780874,1828.05890385901
83.2053742802303,3019.87183712835,2597.68043528956,2244.20774895639,2238.51875329573,2107.09447327181,1943.48625789415,2108.99093176641,1978.20430074885,1993.93121969144,1771.73095761637,1876.37448780874,1828.05890385901
83.3013435700576,3019.92907748134,2597.68043528956,2244.20774895639,2238.51875329573,2107.09447327181,1943.48625789415,2108.99093176641,1978.20430074885,1993.93121969144,1771.73095761637,1876.26603842896,1828.05890385901
83.3973128598848,3019.92907748134,2600.31808608966,2241.45652098479,2238.51875329573,2107.09447327181,1943.48625789415,2108.99093176641,1978.20430074885,1993.93121969144,1771.73095761637,1876.26603842896,1828.05890385901
83.4932821497121,3020.01052256964,2600.31808608966,2241.45652098479,2238.51875329573,2107.09447327181,1943.33710750432,2108.99093176641,1978.20430074885,1993.93121969144,1771.73095761637,1876.26603842896,1828.05890385901
83.5892514395394,3020.01052256964,2601.04228218025,2241.45652098479,2238.51875329573,2107.09447327181,1943.33710750432,2108.99093176641,1978.20430074885,1992.58566320498,1771.73095761637,1876.26603842896,1828.05890385901
83.6852207293666,3020.20804840541,2601.04228218025,2241.45652098479,2238.51875329573,2107.09447327181,1943.33710750432,2108.64374949949,1978.20430074885,1992.58566320498,1771.73095761637,1876.26603842896,1828.05890385901
83.7811900191939,3020.20804840541,2601.04228218025,2244.11733917745,2238.51875329573,2107.09447327181,1943.33710750432,2108.64374949949,1978.20430074885,1992.58566320498,1771.73095761637,1868.98130752665,1828.05890385901
83.8771593090211,3020.24730919497,2601.04228218025,2244.11733917745,2238.51875329573,2107.09447327181,1943.33710750432,2108.64374949949,1978.20430074885,1992.58566320498,1771.73095761637,1868.98130752665,1828.00940693248
83.9731285988484,3020.24730919497,2601.04228218025,2245.66868610601,2238.51875329573,2107.09447327181,1943.33710750432,2108.64374949949,1978.20430074885,1992.58566320498,1767.89717503075,1868.98130752665,1828.00940693248
84.0690978886756,3020.24730919497,2601.04228218025,2247.16783757163,2238.51875329573,2107.09447327181,1943.33710750432,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.98130752665,1828.00940693248
84.1650671785029,3020.24730919497,2601.04228218025,2250.63025104861,2238.51875329573,2107.09447327181,1934.10395609754,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.98130752665,1828.00940693248
84.2610364683301,3020.30254270923,2601.04228218025,2250.63025104861,2238.51875329573,2107.09447327181,1934.10395609754,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.88033160342,1828.00940693248
84.3570057581574,3020.30254270923,2601.04228218025,2253.85827568435,2238.51875329573,2107.09447327181,1925.75511685799,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.88033160342,1828.00940693248
84.4529750479847,3020.37602147491,2601.04228218025,2253.85827568435,2238.51875329573,2107.09447327181,1925.63031617054,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.88033160342,1828.00940693248
84.5489443378119,3020.37602147491,2601.04228218025,2256.8819592773,2238.51875329573,2107.09447327181,1918.02835459666,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.88033160342,1828.00940693248
84.6449136276392,3020.37602147491,2601.04228218025,2266.81068467276,2217.84928727593,2107.09447327181,1918.02835459666,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.88033160342,1828.00940693248
84.7408829174664,3020.37602147491,2603.97875434942,2264.03227830188,2217.84928727593,2107.09447327181,1918.02835459666,2108.64374949949,1978.20430074885,1992.58566320498,1764.24036659117,1868.88033160342,1828.00940693248
84.8368522072937,3020.37602147491,2603.97875434942,2264.03227830188,2217.84928727593,2107.09447327181,1918.02835459666,2108.64374949949,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1828.00940693248
84.9328214971209,3020.57704341425,2603.97875434942,2264.03227830188,2217.84928727593,2107.09447327181,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1828.00940693248
85.0287907869482,3020.61703448558,2603.97875434942,2264.03227830188,2217.84928727593,2107.09447327181,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1827.95915358542
85.1247600767754,3020.65706996795,2603.97875434942,2264.03227830188,2217.84928727593,2107.09447327181,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1827.90886617034
85.2207293666027,3021.00634335401,2603.97875434942,2264.03227830188,2217.37139665784,2107.09447327181,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1827.90886617034
85.3166986564299,3021.2203044968,2603.97875434942,2264.03227830188,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1827.90886617034
85.4126679462572,3023.86095765034,2602.01733546413,2264.03227830188,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.50812891995,1827.90886617034
85.5086372360845,3023.90443230767,2602.01733546413,2264.03227830188,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.43303586928,1827.90886617034
85.6046065259117,3023.90443230767,2604.88895965016,2261.28328685277,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.43303586928,1827.90886617034
85.700575815739,3023.90443230767,2607.64990305566,2258.63836904689,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1797.80115962708,1831.43303586928,1827.90886617034
85.7965451055662,3023.90443230767,2607.64990305566,2260.13924261011,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1794.08799347125,1831.43303586928,1827.90886617034
85.8925143953935,3023.90443230767,2607.64990305566,2261.59179537451,2217.37139665784,2106.61482058385,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.54014668246,1831.43303586928,1827.90886617034
85.9884836852207,3023.90443230767,2607.64990305566,2267.48415903496,2217.37139665784,2084.63857135526,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.54014668246,1831.43303586928,1827.90886617034
86.084452975048,3023.90443230767,2610.44362831046,2264.90090249692,2217.37139665784,2084.63857135526,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.54014668246,1831.43303586928,1827.90886617034
86.1804222648752,3026.59257428189,2608.50976936526,2264.90090249692,2217.37139665784,2084.63857135526,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.54014668246,1831.43303586928,1827.90886617034
86.2763915547025,3026.77059867283,2608.50976936526,2264.90090249692,2217.37139665784,2084.26319861846,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.54014668246,1831.43303586928,1827.90886617034
86.3723608445298,3026.80363929794,2608.50976936526,2264.90090249692,2217.37139665784,2084.26319861846,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.48859374625,1831.43303586928,1827.90886617034
86.468330134357,3026.83671909062,2608.50976936526,2264.90090249692,2217.37139665784,2084.26319861846,1918.02835459666,2108.29397472147,1978.20430074885,1992.58566320498,1790.43701916284,1831.43303586928,1827.90886617034
86.5642994241843,3026.90454101273,2608.50976936526,2264.90090249692,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1978.20430074885,1992.58566320498,1790.43701916284,1831.43303586928,1827.90886617034
86.6602687140115,3026.90454101273,2609.1961082632,2264.90090249692,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1992.58566320498,1790.43701916284,1831.43303586928,1827.90886617034
86.7562380038388,3026.90454101273,2611.90444779511,2262.35791078396,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1992.58566320498,1790.43701916284,1831.43303586928,1827.90886617034
86.852207293666,3026.90454101273,2614.51476457135,2259.90455944811,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1992.58566320498,1790.43701916284,1831.43303586928,1827.90886617034
86.9481765834933,3026.90454101273,2617.03381515839,2257.53476466975,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1992.58566320498,1790.43701916284,1831.43303586928,1827.90886617034
87.0441458733205,3026.90454101273,2617.31057217103,2257.53476466975,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1992.58566320498,1790.43701916284,1830.71915040747,1827.90886617034
87.1401151631478,3026.90454101273,2617.94359028636,2257.53476466975,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.236084452975,3026.90454101273,2620.36643948123,2255.24184637514,2217.37139665784,2084.26319861846,1917.91522682173,2108.29397472147,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.3320537428023,3026.90454101273,2621.52650239113,2255.24184637514,2217.37139665784,2084.26319861846,1917.91522682173,2105.1962549591,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.4280230326296,3026.90454101273,2623.84866402359,2253.02931023531,2217.37139665784,2084.26319861846,1917.91522682173,2105.1962549591,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.5239923224568,3027.24463773008,2623.84866402359,2253.02931023531,2216.8991049707,2084.26319861846,1917.91522682173,2105.1962549591,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.6199616122841,3027.43684677472,2623.84866402359,2253.02931023531,2216.8991049707,2084.26319861846,1917.91522682173,2104.86386209325,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.7159309021113,3027.77518663915,2623.84866402359,2253.02931023531,2216.42958265437,2084.26319861846,1917.91522682173,2104.86386209325,1975.83297631532,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.8119001919386,3027.87996145775,2623.84866402359,2253.02931023531,2216.42958265437,2084.26319861846,1917.91522682173,2104.86386209325,1975.59796375193,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
87.9078694817658,3028.21688943543,2623.84866402359,2253.02931023531,2215.96254750306,2084.26319861846,1917.91522682173,2104.86386209325,1975.59796375193,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
88.0038387715931,3028.40803284419,2623.84866402359,2253.02931023531,2215.96254750306,2084.26319861846,1917.91522682173,2104.53330613274,1975.59796375193,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
88.0998080614203,3028.47665016862,2623.84866402359,2253.02931023531,2215.96254750306,2084.26319861846,1917.801363921,2104.53330613274,1975.59796375193,1991.32604836386,1790.43701916284,1830.71915040747,1827.90886617034
88.1957773512476,3028.52000852783,2623.84866402359,2253.02931023531,2215.96254750306,2084.26319861846,1917.801363921,2104.53330613274,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.2917466410749,3028.85599886355,2623.84866402359,2253.02931023531,2215.49733932002,2084.26319861846,1917.801363921,2104.53330613274,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.3877159309021,3028.92460487363,2623.84866402359,2253.02931023531,2215.49733932002,2084.26319861846,1917.68759373951,2104.53330613274,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.4836852207294,3029.11557638334,2623.84866402359,2253.02931023531,2215.49733932002,2084.26319861846,1917.68759373951,2104.2036966965,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.5796545105566,3029.18418661843,2623.84866402359,2253.02931023531,2215.49733932002,2084.26319861846,1917.57390548726,2104.2036966965,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.6756238003839,3029.2528180155,2623.84866402359,2253.02931023531,2215.49733932002,2084.26319861846,1917.4602863518,2104.2036966965,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.7715930902111,3032.09588918275,2621.87913214421,2253.02931023531,2215.49733932002,2084.26319861846,1917.4602863518,2104.2036966965,1975.59796375193,1991.32604836386,1790.43701916284,1830.64466899156,1827.90886617034
88.8675623800384,3032.09588918275,2621.87913214421,2256.78595167032,2215.49733932002,2084.26319861846,1917.4602863518,2104.2036966965,1975.59796375193,1983.25726603139,1790.43701916284,1830.64466899156,1827.90886617034
88.9635316698656,3032.09588918275,2624.25448787142,2254.5325470775,2215.49733932002,2084.26319861846,1917.4602863518,2104.2036966965,1975.59796375193,1983.25726603139,1790.43701916284,1830.64466899156,1827.90886617034
89.0595009596929,3032.09588918275,2624.67131174452,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2104.2036966965,1975.59796375193,1983.25726603139,1790.43701916284,1830.64466899156,1827.90886617034
89.1554702495201,3032.09588918275,2625.24502534684,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2104.2036966965,1975.59796375193,1982.13129189437,1790.43701916284,1830.64466899156,1827.90886617034
89.2514395393474,3034.89930491746,2623.3196797517,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2104.2036966965,1975.59796375193,1982.13129189437,1790.43701916284,1830.64466899156,1827.90886617034
89.3474088291747,3034.93657547497,2623.3196797517,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2104.2036966965,1975.59796375193,1982.13129189437,1790.43701916284,1830.64466899156,1827.85992909761
89.4433781190019,3034.97388893523,2623.3196797517,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2104.2036966965,1975.59796375193,1982.13129189437,1790.43701916284,1830.64466899156,1827.81096036667
89.5393474088292,3035.00605327133,2623.3196797517,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2104.2036966965,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
89.6353166986564,3035.1886016733,2623.3196797517,2254.5325470775,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
89.7312859884837,3035.55813489483,2623.3196797517,2254.28143137313,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
89.8272552783109,3035.55813489483,2625.63671127222,2252.05024023273,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
89.9232245681382,3035.55813489483,2627.88074586938,2249.88820027375,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.0191938579654,3035.55813489483,2630.05624330481,2247.79112573466,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.1151631477927,3035.55813489483,2632.16727769085,2245.75519005229,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.21113243762,3035.55813489483,2634.21757992492,2243.77688660331,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.3071017274472,3038.43852855101,2632.31208970337,2243.77688660331,2215.49733932002,2084.26319861846,1916.41073064921,2103.88337532567,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.4030710172745,3038.61671200572,2632.31208970337,2243.77688660331,2215.49733932002,2084.26319861846,1916.41073064921,2103.56827287477,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.4990403071017,3038.61671200572,2634.3152584034,2241.82457803616,2215.49733932002,2084.26319861846,1916.41073064921,2103.56827287477,1975.59796375193,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.595009596929,3038.71504448895,2634.3152584034,2241.82457803616,2215.49733932002,2084.26319861846,1916.41073064921,2103.56827287477,1975.37382915864,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.6909788867562,3038.77899271823,2634.3152584034,2241.82457803616,2215.49733932002,2084.26319861846,1916.30265794902,2103.56827287477,1975.37382915864,1982.13129189437,1790.38619958512,1830.64466899156,1827.81096036667
90.7869481765835,3038.77899271823,2634.3152584034,2243.62875244863,2215.49733932002,2084.26319861846,1916.30265794902,2103.56827287477,1975.37382915864,1982.13129189437,1790.38619958512,1825.18025415347,1827.81096036667
90.8829174664107,3038.87753724217,2634.3152584034,2243.62875244863,2215.49733932002,2084.26319861846,1916.30265794902,2103.56827287477,1975.14995167156,1982.13129189437,1790.38619958512,1825.18025415347,1827.81096036667
90.978886756238,3038.87753724217,2634.3152584034,2247.22230654774,2215.49733932002,2084.26319861846,1916.30265794902,2103.56827287477,1975.14995167156,1974.19955449651,1790.38619958512,1825.18025415347,1827.81096036667
91.0748560460653,3038.87753724217,2636.34215150297,2245.29330048566,2215.49733932002,2084.26319861846,1916.30265794902,2103.56827287477,1975.14995167156,1974.19955449651,1790.38619958512,1825.18025415347,1827.81096036667
91.1708253358925,3038.87753724217,2638.31334613702,2243.41612231165,2215.49733932002,2084.26319861846,1916.30265794902,2103.56827287477,1975.14995167156,1974.19955449651,1790.38619958512,1825.18025415347,1827.81096036667
91.2667946257198,3038.87753724217,2638.31334613702,2243.41612231165,2229.4291434783,2061.64889928638,1916.30265794902,2103.56827287477,1975.14995167156,1974.19955449651,1790.38619958512,1825.18025415347,1827.81096036667
91.362763915547,3038.87753724217,2638.31334613702,2243.41612231165,2229.4291434783,2061.64889928638,1936.8033684544,2103.56827287477,1975.14995167156,1974.19955449651,1790.38619958512,1825.18025415347,1812.45031450932
91.4587332053743,3038.87753724217,2638.31334613702,2246.81152895757,2229.4291434783,2061.64889928638,1936.8033684544,2103.56827287477,1975.14995167156,1966.76723640558,1790.38619958512,1825.18025415347,1812.45031450932
91.5547024952015,3038.87753724217,2638.8457603454,2246.81152895757,2229.4291434783,2061.64889928638,1936.8033684544,2103.56827287477,1973.14953701911,1966.76723640558,1790.38619958512,1825.18025415347,1812.45031450932
91.6506717850288,3038.87753724217,2638.8457603454,2246.81152895757,2229.4291434783,2085.4207353736,1936.8033684544,2103.56827287477,1973.14953701911,1952.55822411766,1790.38619958512,1825.18025415347,1812.45031450932
91.746641074856,3038.87753724217,2638.8457603454,2248.33631239414,2229.4291434783,2085.4207353736,1936.8033684544,2103.56827287477,1973.14953701911,1952.55822411766,1790.38619958512,1825.18025415347,1809.20747303275
91.8426103646833,3038.87753724217,2638.8457603454,2248.33631239414,2229.4291434783,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1940.61452752879,1790.38619958512,1825.18025415347,1809.20747303275
91.9385796545106,3038.87753724217,2638.8457603454,2251.1517177693,2229.4291434783,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1935.09326092012,1790.38619958512,1825.18025415347,1809.20747303275
92.0345489443378,3038.87753724217,2638.8457603454,2259.58346814867,2209.69277610046,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1935.09326092012,1790.38619958512,1825.18025415347,1809.20747303275
92.1305182341651,3038.87753724217,2638.8457603454,2260.93984516259,2209.69277610046,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1935.09326092012,1790.38619958512,1825.18025415347,1806.25930630823
92.2264875239923,3038.87753724217,2638.8457603454,2262.26033813893,2209.69277610046,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1935.09326092012,1790.38619958512,1825.18025415347,1803.41697093347
92.3224568138196,3038.87753724217,2638.8457603454,2264.72602752937,2209.69277610046,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1930.16574993853,1790.38619958512,1825.18025415347,1803.41697093347
92.4184261036468,3038.9419910496,2638.8457603454,2264.72602752937,2209.69277610046,2104.67721102327,1936.8033684544,2103.56827287477,1973.14953701911,1930.09349584545,1790.38619958512,1825.18025415347,1803.41697093347
92.5143953934741,3039.12595056429,2638.8457603454,2264.72602752937,2209.69277610046,2104.67721102327,1936.8033684544,2103.24816354261,1973.14953701911,1930.09349584545,1790.38619958512,1825.18025415347,1803.41697093347
92.6103646833013,3039.12595056429,2638.8457603454,2264.72602752937,2209.69277610046,2120.13193026085,1936.8033684544,2103.24816354261,1973.14953701911,1920.66282482045,1790.38619958512,1825.18025415347,1803.41697093347
92.7063339731286,3039.18688366504,2638.8457603454,2264.72602752937,2209.69277610046,2120.13193026085,1936.8033684544,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.18025415347,1803.41697093347
92.8023032629559,3039.22757229409,2638.8457603454,2264.72602752937,2209.69277610046,2120.13193026085,1936.8033684544,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.41697093347
92.8982725527831,3039.2601740172,2638.8457603454,2264.72602752937,2209.69277610046,2120.13193026085,1936.8033684544,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.37740733629
92.9942418426104,3042.23083953388,2636.87843981205,2264.72602752937,2209.69277610046,2120.13193026085,1936.8033684544,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.37740733629
93.0902111324376,3042.301676562,2636.87843981205,2264.72602752937,2209.69277610046,2120.13193026085,1936.6901835481,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.37740733629
93.1861804222649,3042.33338860655,2636.87843981205,2264.72602752937,2209.69277610046,2120.13193026085,1936.6901835481,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.33845737402
93.2821497120921,3045.19775190073,2634.96594183851,2264.72602752937,2209.69277610046,2120.13193026085,1936.6901835481,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.33845737402
93.3781190019194,3045.26670827072,2634.96594183851,2264.72602752937,2209.69277610046,2120.13193026085,1936.57885808689,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.33845737402
93.4740882917466,3048.02856728335,2633.10913952116,2264.72602752937,2209.69277610046,2120.13193026085,1936.57885808689,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.33845737402
93.5700575815739,3050.6924122599,2631.30843030639,2264.72602752937,2209.69277610046,2120.13193026085,1936.57885808689,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.33845737402
93.6660268714012,3050.75775769913,2631.30843030639,2264.72602752937,2209.69277610046,2120.13193026085,1936.47108702748,2103.24816354261,1973.14953701911,1920.5966625448,1790.38619958512,1825.11130740835,1803.33845737402
93.7619961612284,3050.81260432186,2631.30843030639,2264.72602752937,2209.69277610046,2120.13193026085,1936.47108702748,2103.24816354261,1973.14953701911,1920.53409599921,1790.38619958512,1825.11130740835,1803.33845737402
93.8579654510557,3050.81260432186,2631.30843030639,2264.72602752937,2209.69277610046,2120.13193026085,1936.47108702748,2103.24816354261,1973.14953701911,1898.21447738393,1825.96067864857,1825.11130740835,1803.33845737402
93.9539347408829,3050.84794096102,2631.30843030639,2264.72602752937,2209.69277610046,2120.13193026085,1936.47108702748,2103.24816354261,1973.14953701911,1898.21447738393,1825.9054241391,1825.11130740835,1803.33845737402
94.0499040307102,3050.87736139738,2631.30843030639,2264.72602752937,2209.69277610046,2120.13193026085,1936.47108702748,2103.24816354261,1973.14953701911,1898.21447738393,1825.9054241391,1825.11130740835,1803.30109762321
94.1458733205374,3050.87736139738,2631.30843030639,2264.72602752937,2209.69277610046,2129.07733792639,1936.47108702748,2103.24816354261,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.2418426103647,3051.0444001621,2631.30843030639,2264.72602752937,2209.69277610046,2129.07733792639,1936.47108702748,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.3378119001919,3051.32566194905,2631.30843030639,2264.72602752937,2209.31334787959,2129.07733792639,1936.47108702748,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.4337811900192,3051.68030752311,2631.30843030639,2264.49845249079,2209.31334787959,2129.07733792639,1936.47108702748,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.5297504798465,3051.95995168797,2631.30843030639,2264.49845249079,2208.9359643712,2129.07733792639,1936.47108702748,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.6257197696737,3052.02555881042,2631.30843030639,2264.49845249079,2208.9359643712,2129.07733792639,1936.36309833562,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.721689059501,3052.02555881042,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,1991.60966358385,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.11130740835,1803.30109762321
94.8176583493282,3052.06244292594,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,1991.60966358385,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.04641800503,1803.30109762321
94.9136276391555,3052.15140699953,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,1991.46328623247,2102.94633381403,1973.14953701911,1898.21447738393,1817.59626936008,1825.04641800503,1803.30109762321
95.0095969289827,3052.19994253162,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,1991.46328623247,2102.94633381403,1973.14953701911,1898.16080862508,1817.59626936008,1825.04641800503,1803.30109762321
95.10556621881,3052.22953060232,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,1991.46328623247,2102.94633381403,1973.14953701911,1898.16080862508,1817.59626936008,1825.04641800503,1803.26346718877
95.2015355086372,3052.31873502441,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,1991.31681404029,2102.94633381403,1973.14953701911,1898.16080862508,1817.59626936008,1825.04641800503,1803.26346718877
95.2975047984645,3052.31873502441,2611.40842214538,2264.49845249079,2208.9359643712,2129.07733792639,2024.45416230571,2066.36027029471,1973.14953701911,1898.16080862508,1817.59626936008,1825.04641800503,1803.26346718877
95.3934740882917,3052.31873502441,2611.40842214538,2247.54189503502,2208.9359643712,2129.07733792639,2024.45416230571,2066.36027029471,1973.14953701911,1928.74790021233,1817.59626936008,1825.04641800503,1803.26346718877
95.489443378119,3052.31873502441,2611.40842214538,2247.54189503502,2208.9359643712,2129.07733792639,2051.24444313037,2037.02652101356,1973.14953701911,1928.74790021233,1817.59626936008,1825.04641800503,1803.26346718877
95.5854126679463,3052.31873502441,2611.40842214538,2249.02721360366,2208.9359643712,2129.07733792639,2051.24444313037,2037.02652101356,1973.14953701911,1928.74790021233,1817.59626936008,1825.04641800503,1800.17721295241
95.6813819577735,3052.35274451058,2611.40842214538,2249.02721360366,2208.9359643712,2129.07733792639,2051.24444313037,2037.02652101356,1973.14953701911,1928.74790021233,1817.54492564065,1825.04641800503,1800.17721295241
95.7773512476008,3052.35274451058,2611.40842214538,2249.02721360366,2220.96357040522,2129.07733792639,2037.64262717143,2037.02652101356,1973.14953701911,1928.74790021233,1817.54492564065,1825.04641800503,1800.17721295241
95.873320537428,3052.35274451058,2611.40842214538,2249.02721360366,2235.4796093835,2109.66305489189,2037.64262717143,2037.02652101356,1973.14953701911,1928.74790021233,1817.54492564065,1825.04641800503,1800.17721295241
95.9692898272553,3052.35274451058,2611.40842214538,2249.02721360366,2235.4796093835,2109.66305489189,2037.64262717143,1998.29363347719,1973.14953701911,1928.74790021233,1854.97743942021,1825.04641800503,1800.17721295241
96.0652591170825,3052.35274451058,2612.65456990581,2249.02721360366,2235.4796093835,2106.78041564078,2037.64262717143,1998.29363347719,1973.14953701911,1928.74790021233,1854.97743942021,1825.04641800503,1800.17721295241
96.1612284069098,3052.44560460202,2612.65456990581,2249.02721360366,2235.4796093835,2106.78041564078,2037.64262717143,1998.29363347719,1972.94004601708,1928.74790021233,1854.97743942021,1825.04641800503,1800.17721295241
96.257197696737,3054.84581853367,2610.98703029611,2249.02721360366,2235.4796093835,2106.78041564078,2037.64262717143,1998.29363347719,1972.94004601708,1928.74790021233,1854.97743942021,1825.04641800503,1800.17721295241
96.3531669865643,3054.93596464128,2610.98703029611,2249.02721360366,2235.4796093835,2106.78041564078,2037.64262717143,1998.1560076631,1972.94004601708,1928.74790021233,1854.97743942021,1825.04641800503,1800.17721295241
96.4491362763916,3054.97284595935,2610.98703029611,2249.02721360366,2235.4796093835,2106.78041564078,2037.64262717143,1998.1560076631,1972.94004601708,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
96.5451055662188,3055.06368544854,2610.98703029611,2249.02721360366,2235.4796093835,2106.78041564078,2037.64262717143,1998.1560076631,1972.73381174246,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
96.6410748560461,3055.22771263083,2610.98703029611,2249.02721360366,2235.4796093835,2106.52659568428,2037.64262717143,1998.1560076631,1972.73381174246,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
96.7370441458733,3055.31849756704,2610.98703029611,2249.02721360366,2235.4796093835,2106.52659568428,2037.64262717143,1998.1560076631,1972.52806006389,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
96.8330134357006,3055.31849756704,2610.98703029611,2249.02721360366,2242.73662900404,2106.52659568428,2037.64262717143,1998.1560076631,1957.1077633332,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
96.9289827255278,3055.48268217057,2610.98703029611,2249.02721360366,2242.73662900404,2106.27301294777,2037.64262717143,1998.1560076631,1957.1077633332,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
97.0249520153551,3055.59332927695,2610.98703029611,2249.02721360366,2242.73662900404,2106.27301294777,2037.48510668371,1998.1560076631,1957.1077633332,1928.74790021233,1854.97743942021,1824.98163128948,1800.17721295241
97.1209213051823,3055.63431102733,2610.98703029611,2249.02721360366,2242.73662900404,2106.27301294777,2037.48510668371,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1800.17721295241
97.2168905950096,3057.97439921458,2609.33648511891,2249.02721360366,2242.73662900404,2106.27301294777,2037.48510668371,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1800.17721295241
97.3128598848369,3057.97439921458,2609.33648511891,2253.62893581985,2242.73662900404,2106.27301294777,2026.87719590714,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1800.17721295241
97.4088291746641,3057.97439921458,2609.33648511891,2255.07764159084,2242.73662900404,2106.27301294777,2026.87719590714,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1797.21228283121
97.5047984644914,3057.97439921458,2611.90846608265,2252.74680624707,2242.73662900404,2106.27301294777,2026.87719590714,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1797.21228283121
97.6007677543186,3060.28344107277,2610.2898364534,2252.74680624707,2242.73662900404,2106.27301294777,2026.87719590714,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1797.21228283121
97.6967370441459,3062.52232255599,2608.71363806643,2252.74680624707,2242.73662900404,2106.27301294777,2026.87719590714,1998.1560076631,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1797.21228283121
97.7927063339731,3062.60754314575,2608.71363806643,2252.74680624707,2242.73662900404,2106.27301294777,2026.87719590714,1998.02270075367,1957.1077633332,1928.74790021233,1854.91730295829,1824.98163128948,1797.21228283121
97.8886756238004,3062.64245652864,2608.71363806643,2252.74680624707,2242.73662900404,2106.27301294777,2026.87719590714,1998.02270075367,1957.1077633332,1928.74790021233,1854.91730295829,1824.91903248113,1797.21228283121
97.9846449136276,3062.69667592953,2608.71363806643,2252.74680624707,2242.73662900404,2106.27301294777,2026.87719590714,1998.02270075367,1957.1077633332,1928.68637995877,1854.91730295829,1824.91903248113,1797.21228283121
98.0806142034549,3063.01024361827,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.87719590714,1998.02270075367,1957.1077633332,1928.68637995877,1854.91730295829,1824.91903248113,1797.21228283121
98.1765834932822,3063.0874142913,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.87719590714,1998.02270075367,1956.93882554654,1928.68637995877,1854.91730295829,1824.91903248113,1797.21228283121
98.2725527831094,3063.12605793306,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.87719590714,1998.02270075367,1956.93882554654,1928.68637995877,1854.85915468203,1824.91903248113,1797.21228283121
98.3685220729367,3063.16474243569,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.87719590714,1998.02270075367,1956.93882554654,1928.68637995877,1854.80098656245,1824.91903248113,1797.21228283121
98.4644913627639,3063.20346772764,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.87719590714,1998.02270075367,1956.93882554654,1928.68637995877,1854.74279866056,1824.91903248113,1797.21228283121
98.5604606525912,3063.24223373741,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.87719590714,1998.02270075367,1956.93882554654,1928.68637995877,1854.68459103728,1824.91903248113,1797.21228283121
98.6564299424184,3063.34032046758,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.73948103132,1998.02270075367,1956.93882554654,1928.68637995877,1854.68459103728,1824.91903248113,1797.21228283121
98.7523992322457,3063.43839282735,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.60188338929,1998.02270075367,1956.93882554654,1928.68637995877,1854.68459103728,1824.91903248113,1797.21228283121
98.8483685220729,3063.47726074741,2608.71363806643,2252.74680624707,2242.34465406142,2106.27301294777,2026.60188338929,1998.02270075367,1956.93882554654,1928.68637995877,1854.62629311733,1824.91903248113,1797.21228283121
98.9443378119002,3063.63321090091,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.60188338929,1998.02270075367,1956.93882554654,1928.68637995877,1854.62629311733,1824.91903248113,1797.21228283121
99.0403071017274,3063.73141742072,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.4642132818,1998.02270075367,1956.93882554654,1928.68637995877,1854.62629311733,1824.91903248113,1797.21228283121
99.1362763915547,3063.73141742072,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.4642132818,1998.02270075367,1956.93882554654,1928.68637995877,1876.03608712409,1797.8845185465,1797.21228283121
99.232245681382,3063.82978786025,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.32648225115,1998.02270075367,1956.93882554654,1928.68637995877,1876.03608712409,1797.8845185465,1797.21228283121
99.3282149712092,3063.88469190628,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.32648225115,1998.02270075367,1956.93882554654,1928.62394955922,1876.03608712409,1797.8845185465,1797.21228283121
99.4241842610365,3063.92803013302,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.32648225115,1998.02270075367,1956.93882554654,1928.62394955922,1875.97426069054,1797.8845185465,1797.21228283121
99.5201535508637,3064.02663574133,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.18859756748,1998.02270075367,1956.93882554654,1928.62394955922,1875.97426069054,1797.8845185465,1797.21228283121
99.616122840691,3064.1252244472,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.05083200171,1998.02270075367,1956.93882554654,1928.62394955922,1875.97426069054,1797.8845185465,1797.21228283121
99.7120921305182,3064.16867021802,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.05083200171,1998.02270075367,1956.93882554654,1928.62394955922,1875.91233317169,1797.8845185465,1797.21228283121
99.8080614203455,3064.22385270604,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.05083200171,1998.02270075367,1956.93882554654,1928.56119118545,1875.91233317169,1797.8845185465,1797.21228283121
99.9040307101727,3064.30245867981,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.05083200171,1998.02270075367,1956.76899599788,1928.56119118545,1875.91233317169,1797.8845185465,1797.21228283121
100,3064.34604228153,2608.71363806643,2252.74680624707,2242.34465406142,2106.02669278901,2026.05083200171,1998.02270075367,1956.76899599788,1928.56119118545,1875.85027974486,1797.8845185465,1797.21228283121
"eventtime","A","B","C","D","E","F","G","H","I","J","K","L"
0.0743494423791822,2200,2200,2200,2334.87330434716,2200,2200,2200,2200,2200,2200,2065.12669565284,2200
0.148698884758364,2200,2200,2200,2412.5966102581,2099.14092651884,2200,2200,2200,2200,2200,2065.12669565284,2200
0.223048327137546,2065.12669565284,2334.87330434716,2200,2412.5966102581,2099.14092651884,2200,2200,2200,2200,2200,2065.12669565284,2200
0.297397769516729,2065.12669565284,2334.87330434716,2200,2412.5966102581,2099.14092651884,2200,2200,2065.12669565284,2200,2334.87330434716,2065.12669565284,2200
0.371747211895911,2010.91311093159,2334.87330434716,2200,2412.5966102581,2099.14092651884,2200,2200,2065.12669565284,2200,2389.08103063208,2065.12669565284,2200
0.446096654275093,2010.91311093159,2334.87330434716,2200,2412.5966102581,2099.14092651884,2200,2200,2065.12669565284,2112.5251436923,2446.38746745082,2065.12669565284,2200
0.520446096654275,2010.91311093159,2334.87330434716,2200,2412.5966102581,2099.14092651884,2200,2200,2028.61450004535,2112.5251436923,2473.51633217642,2065.12669565284,2200
0.594795539033457,2010.91311093159,2334.87330434716,2200,2412.5966102581,2210.72344611413,2200,2200,2028.61450004535,2000.40464734136,2473.51633217642,2065.12669565284,2200
0.669144981412639,2010.91311093159,2334.87330434716,2200,2412.5966102581,2210.72344611413,2200,2200,2028.61450004535,2100.69307079241,2473.51633217642,1934.98867626069,2200
0.743494423791822,2010.91311093159,2334.87330434716,2200,2412.5966102581,2210.72344611413,2200,2200,1944.51561585433,2163.46004944257,2473.51633217642,1934.98867626069,2200
0.817843866171004,2010.91311093159,2334.87330434716,2200,2412.5966102581,2199.79318794248,2200,2200,1944.51561585433,2170.70267354257,2473.51633217642,1934.98867626069,2200
0.892193308550186,2010.91311093159,2334.87330434716,2200,2412.5966102581,2199.79318794248,2200,2200,1944.51561585433,2199.64211378291,2473.51633217642,1888.73216700459,2200
0.966542750929368,2010.91311093159,2255.6470955911,2200,2412.5966102581,2199.79318794248,2200,2200,1944.51561585433,2199.64211378291,2525.93701857001,1888.73216700459,2200
1.04089219330855,2010.91311093159,2214.15912000749,2200,2412.5966102581,2199.79318794248,2200,2200,1944.51561585433,2199.64211378291,2556.54568327922,1888.73216700459,2200
1.11524163568773,2010.91311093159,2214.15912000749,2200,2429.34583416313,2199.79318794248,2200,2200,1944.51561585433,2199.64211378291,2556.54568327922,1874.98226851629,2200
1.18959107806691,2010.91311093159,2214.15912000749,2200,2306.43499917158,2199.79318794248,2430.67350390059,2200,1944.51561585433,2199.64211378291,2556.54568327922,1874.98226851629,2200
1.2639405204461,2010.91311093159,2214.15912000749,2200,2306.43499917158,2122.77538326841,2430.67350390059,2200,1944.51561585433,2252.65336562548,2556.54568327922,1874.98226851629,2200
1.33828996282528,2010.91311093159,2214.15912000749,2200,2306.43499917158,2122.77538326841,2430.67350390059,2200,1944.51561585433,2266.18025542684,2556.54568327922,1853.67632590197,2200
1.41263940520446,2010.91311093159,2214.15912000749,2077.88077655492,2306.43499917158,2122.77538326841,2430.67350390059,2200,1944.51561585433,2299.89347916601,2556.54568327922,1853.67632590197,2200
1.48698884758364,2010.91311093159,2214.15912000749,2077.88077655492,2306.43499917158,2122.77538326841,2430.67350390059,2200,1918.64033526354,2312.95491157326,2556.54568327922,1853.67632590197,2200
1.56133828996283,2010.91311093159,2214.15912000749,2077.88077655492,2324.2087238612,2122.77538326841,2430.67350390059,2200,1918.64033526354,2312.95491157326,2556.54568327922,1838.51320945503,2200
1.63568773234201,2010.91311093159,2214.15912000749,2077.88077655492,2324.2087238612,2086.33632921245,2430.67350390059,2200,1918.64033526354,2335.7218997824,2556.54568327922,1838.51320945503,2200
1.71003717472119,2010.91311093159,2214.15912000749,2077.88077655492,2324.2087238612,2086.33632921245,2279.35617867193,2200,1918.64033526354,2376.60344239814,2556.54568327922,1838.51320945503,2200
1.78438661710037,2010.91311093159,2214.15912000749,2077.88077655492,2324.2087238612,2086.33632921245,2279.35617867193,2200,1918.64033526354,2381.27526562321,2556.54568327922,1830.0407075786,2200
1.85873605947955,2010.91311093159,2214.15912000749,2077.88077655492,2324.2087238612,2111.51084721323,2279.35617867193,2200,1918.64033526354,2381.27526562321,2556.54568327922,1801.34935654524,2200
1.93308550185874,2010.91311093159,2214.15912000749,2077.88077655492,2324.2087238612,2140.10833804424,2279.35617867193,2200,1875.53251369482,2381.27526562321,2556.54568327922,1801.34935654524,2200
2.00743494423792,2010.91311093159,2214.15912000749,2026.63676226326,2360.98878709611,2140.10833804424,2279.35617867193,2200,1875.53251369482,2381.27526562321,2556.54568327922,1801.34935654524,2200
2.0817843866171,2010.91311093159,2186.94864938698,2026.63676226326,2360.98878709611,2140.10833804424,2279.35617867193,2200,1875.53251369482,2381.27526562321,2577.66005535129,1801.34935654524,2200
2.15613382899628,2010.91311093159,2186.94864938698,2026.63676226326,2360.98878709611,2140.10833804424,2296.43787715559,2200,1875.53251369482,2381.27526562321,2577.66005535129,1790.19663753566,2200
2.23048327137546,2010.91311093159,2186.94864938698,2026.63676226326,2360.98878709611,2140.10833804424,2296.43787715559,2200,1875.53251369482,2432.74869610158,2483.24927795197,1790.19663753566,2200
2.30483271375465,2010.91311093159,2186.94864938698,2026.63676226326,2373.46822479791,2140.10833804424,2296.43787715559,2200,1863.62945791436,2432.74869610158,2483.24927795197,1790.19663753566,2200
2.37918215613383,2010.91311093159,2186.94864938698,2026.63676226326,2373.46822479791,2154.39486138663,2296.43787715559,2200,1863.62945791436,2432.74869610158,2483.24927795197,1773.36031848147,2200
2.45353159851301,2010.91311093159,2186.94864938698,2026.63676226326,2383.97266724056,2154.39486138663,2296.43787715559,2200,1853.58195811228,2432.74869610158,2483.24927795197,1773.36031848147,2200
2.52788104089219,2010.91311093159,2186.94864938698,2026.63676226326,2383.97266724056,2154.39486138663,2296.43787715559,2200,1853.58195811228,2435.00338939919,2483.24927795197,1769.9329501502,2200
2.60223048327138,2010.91311093159,2186.94864938698,1998.19721917022,2403.87475276085,2154.39486138663,2296.43787715559,2200,1853.58195811228,2435.00338939919,2483.24927795197,1769.9329501502,2200
2.67657992565056,2010.91311093159,2186.94864938698,1998.19721917022,2403.87475276085,2211.52054310675,2177.03859919616,2200,1853.58195811228,2435.00338939919,2483.24927795197,1769.9329501502,2200
2.75092936802974,2010.91311093159,2186.94864938698,1998.19721917022,2403.87475276085,2219.67995322154,2177.03859919616,2200,1853.58195811228,2435.00338939919,2483.24927795197,1759.78857357575,2200
2.82527881040892,2010.91311093159,2186.94864938698,1998.19721917022,2403.87475276085,2219.67995322154,2177.03859919616,2200,1853.58195811228,2437.03924478948,2483.24927795197,1756.83503617802,2200
2.8996282527881,1948.16468368548,2186.94864938698,1998.19721917022,2403.87475276085,2219.67995322154,2219.56481833146,2200,1853.58195811228,2437.03924478948,2483.24927795197,1756.83503617802,2200
2.97397769516729,1930.84686525341,2186.94864938698,1998.19721917022,2416.22746345429,2219.67995322154,2219.56481833146,2200,1853.58195811228,2437.03924478948,2483.24927795197,1756.83503617802,2200
3.04832713754647,1930.84686525341,2186.94864938698,1998.19721917022,2423.06840439344,2219.67995322154,2219.56481833146,2200,1846.26698569294,2437.03924478948,2483.24927795197,1756.83503617802,2200
3.12267657992565,1930.84686525341,2186.94864938698,1998.19721917022,2423.06840439344,2219.67995322154,2192.45299175224,2200,1846.26698569294,2437.03924478948,2506.0736334601,1756.83503617802,2200
3.19702602230483,1930.84686525341,2186.94864938698,1998.19721917022,2368.36470451575,2219.67995322154,2192.45299175224,2200,1846.26698569294,2468.05095187979,2506.0736334601,1756.83503617802,2200
3.27137546468401,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2254.98469207415,2192.45299175224,2200,1846.26698569294,2468.05095187979,2506.0736334601,1756.83503617802,2200
3.3457249070632,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2254.98469207415,2241.52056631664,2052.17588410381,1846.26698569294,2468.05095187979,2506.0736334601,1756.83503617802,2200
3.42007434944238,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2260.46053784427,2241.52056631664,2052.17588410381,1846.26698569294,2468.05095187979,2506.0736334601,1749.61218744775,2200
3.49442379182156,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2265.46107331757,2241.52056631664,2052.17588410381,1846.26698569294,2468.05095187979,2506.0736334601,1743.0734337944,2200
3.56877323420074,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2265.46107331757,2249.48876878913,2052.17588410381,1846.26698569294,2468.05095187979,2506.0736334601,1736.00941794815,2200
3.64312267657993,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2265.46107331757,2249.48876878913,2052.17588410381,1846.26698569294,2469.41298171018,2506.0736334601,1734.07930749621,2200
3.71747211895911,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2265.46107331757,2249.48876878913,2052.17588410381,1846.26698569294,2502.27113371393,2450.17786891241,1734.07930749621,2200
3.79182156133829,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2299.09056415637,2200.06310433631,2052.17588410381,1846.26698569294,2502.27113371393,2450.17786891241,1734.07930749621,2200
3.86617100371747,1930.84686525341,2117.35611803689,1998.19721917022,2368.36470451575,2299.09056415637,2200.06310433631,2052.17588410381,1846.26698569294,2503.30812849391,2450.17786891241,1732.52124702895,2200
3.94052044609665,1930.84686525341,2117.35611803689,1943.96583800207,2368.36470451575,2299.09056415637,2200.06310433631,2052.17588410381,1846.26698569294,2503.30812849391,2450.17786891241,1757.03292676949,2200
4.01486988847584,1930.84686525341,2117.35611803689,1909.15546650439,2368.36470451575,2299.09056415637,2200.06310433631,2052.17588410381,1846.26698569294,2503.30812849391,2450.17786891241,1774.58725557438,2200
4.08921933085502,1930.84686525341,2117.35611803689,1897.40582106216,2377.49274379833,2299.09056415637,2200.06310433631,2052.17588410381,1846.26698569294,2503.30812849391,2450.17786891241,1774.58725557438,2200
4.1635687732342,1930.84686525341,2117.35611803689,2022.24164292011,2285.73456594579,2299.09056415637,2200.06310433631,2052.17588410381,1846.26698569294,2503.30812849391,2450.17786891241,1774.58725557438,2200
4.23791821561338,1930.84686525341,2117.35611803689,2022.24164292011,2285.73456594579,2299.09056415637,2200.06310433631,2052.17588410381,1773.71459928957,2503.30812849391,2450.17786891241,1819.18199168604,2200
4.31226765799256,1930.84686525341,2117.35611803689,2022.24164292011,2285.73456594579,2299.09056415637,2200.06310433631,2052.17588410381,1773.71459928957,2503.30812849391,2450.17786891241,1809.06630720342,2243.83378107602
4.38661710037175,1930.84686525341,2117.35611803689,2022.24164292011,2285.73456594579,2278.5219136657,2200.06310433631,2052.17588410381,1773.71459928957,2503.30812849391,2478.09319651248,1809.06630720342,2243.83378107602
4.46096654275093,1930.84686525341,2117.35611803689,2022.24164292011,2292.98202131079,2278.5219136657,2200.06310433631,2052.17588410381,1773.71459928957,2503.30812849391,2478.09319651248,1803.54696739489,2243.83378107602
4.53531598513011,1930.84686525341,2117.35611803689,2022.24164292011,2313.0356161118,2278.5219136657,2200.06310433631,2000.56303936166,1773.71459928957,2503.30812849391,2478.09319651248,1803.54696739489,2243.83378107602
4.60966542750929,1930.84686525341,2117.35611803689,2022.24164292011,2313.0356161118,2278.5219136657,2200.06310433631,2000.56303936166,1773.71459928957,2504.69838873259,2478.09319651248,1801.91851932794,2243.83378107602
4.68401486988848,1930.84686525341,2101.66749509004,2022.24164292011,2313.0356161118,2278.5219136657,2200.06310433631,2000.56303936166,1773.71459928957,2511.64045339972,2478.09319651248,1801.91851932794,2243.83378107602
4.75836431226766,1930.84686525341,2101.66749509004,2022.24164292011,2313.0356161118,2278.5219136657,2200.06310433631,2000.56303936166,1770.9449116063,2511.64045339972,2480.2809035628,1801.91851932794,2243.83378107602
4.83271375464684,1930.84686525341,2101.66749509004,2022.24164292011,2318.54618578915,2278.5219136657,2200.06310433631,2000.56303936166,1770.9449116063,2511.64045339972,2480.2809035628,1797.44224054487,2243.83378107602
4.90706319702602,1930.84686525341,2144.19308974289,2022.24164292011,2318.54618578915,2278.5219136657,2200.06310433631,1933.55139687231,1770.9449116063,2511.64045339972,2480.2809035628,1797.44224054487,2243.83378107602
4.9814126394052,1930.84686525341,2144.19308974289,2022.24164292011,2318.54618578915,2278.5219136657,2182.55829610893,1933.55139687231,1770.9449116063,2511.64045339972,2495.611608859,1797.44224054487,2243.83378107602
5.05576208178439,1930.84686525341,2144.19308974289,2022.24164292011,2318.54618578915,2278.5219136657,2192.77891523285,1933.55139687231,1770.9449116063,2511.64045339972,2495.611608859,1789.47970344008,2243.83378107602
5.13011152416357,1930.84686525341,2144.19308974289,2022.24164292011,2323.32627656708,2278.5219136657,2192.77891523285,1933.55139687231,1764.91721954178,2511.64045339972,2495.611608859,1789.47970344008,2243.83378107602
5.20446096654275,1930.84686525341,2144.19308974289,2022.24164292011,2323.32627656708,2302.57096479448,2160.8943778671,1933.55139687231,1764.91721954178,2511.64045339972,2495.611608859,1789.47970344008,2243.83378107602
5.27881040892193,1930.84686525341,2144.19308974289,2022.24164292011,2327.74348862117,2302.57096479448,2160.8943778671,1933.55139687231,1759.38184811931,2511.64045339972,2495.611608859,1789.47970344008,2243.83378107602
5.35315985130112,1930.84686525341,2144.19308974289,2022.24164292011,2332.21312767219,2302.57096479448,2160.8943778671,1933.55139687231,1759.38184811931,2511.64045339972,2495.611608859,1785.80186914203,2243.83378107602
5.4275092936803,1930.84686525341,2144.19308974289,2022.24164292011,2332.21312767219,2305.89526016024,2160.8943778671,1933.55139687231,1753.79780461441,2511.64045339972,2495.611608859,1785.80186914203,2243.83378107602
5.50185873605948,1911.33267561018,2144.19308974289,2022.24164292011,2341.49481107505,2305.89526016024,2160.8943778671,1933.55139687231,1753.79780461441,2511.64045339972,2495.611608859,1785.80186914203,2243.83378107602
5.57620817843866,1895.68342395884,2144.19308974289,2022.24164292011,2349.31917048231,2305.89526016024,2160.8943778671,1933.55139687231,1753.79780461441,2511.64045339972,2495.611608859,1785.80186914203,2243.83378107602
5.65055762081784,1895.68342395884,2144.19308974289,2022.24164292011,2275.90547727262,2305.89526016024,2160.8943778671,1933.55139687231,1858.67732052084,2511.64045339972,2495.611608859,1785.80186914203,2243.83378107602
5.72490706319703,1895.68342395884,2144.19308974289,2022.24164292011,2275.90547727262,2305.89526016024,2160.8943778671,1933.55139687231,1930.39688796735,2511.64045339972,2495.611608859,1785.80186914203,1968.99148445887
5.79925650557621,1895.68342395884,2144.19308974289,2022.24164292011,2275.90547727262,2305.89526016024,2160.8943778671,1933.55139687231,1973.99332612942,2511.64045339972,2495.611608859,1785.80186914203,1846.66761701046
5.87360594795539,1895.68342395884,2144.19308974289,2022.24164292011,2275.90547727262,2305.89526016024,2160.8943778671,1866.54406775017,2009.4297679347,2511.64045339972,2495.611608859,1785.80186914203,1846.66761701046
5.94795539033457,1895.68342395884,2144.19308974289,2022.24164292011,2275.90547727262,2309.36527346735,2160.8943778671,1866.54406775017,2009.4297679347,2511.64045339972,2495.611608859,1781.96647374194,1846.66761701046
6.02230483271375,1895.68342395884,2144.19308974289,2022.24164292011,2275.90547727262,2312.64822859954,2160.8943778671,1866.54406775017,2009.4297679347,2511.64045339972,2495.611608859,1778.34472632586,1846.66761701046
6.09665427509294,1895.68342395884,2144.19308974289,2022.24164292011,2283.90568312688,2312.64822859954,2160.8943778671,1852.40049594752,2009.4297679347,2511.64045339972,2495.611608859,1778.34472632586,1846.66761701046
6.17100371747212,1895.68342395884,2164.26532383145,2022.24164292011,2283.90568312688,2312.64822859954,2160.8943778671,1852.40049594752,2009.4297679347,2511.64045339972,2495.611608859,1778.34472632586,1813.53151633702
6.2453531598513,1895.68342395884,2164.26532383145,2022.24164292011,2283.90568312688,2312.64822859954,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1778.34472632586,1813.53151633702
6.31970260223048,1866.4793572155,2184.85243722162,2022.24164292011,2283.90568312688,2312.64822859954,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1778.34472632586,1813.53151633702
6.39405204460967,1866.4793572155,2197.67374487084,2022.24164292011,2283.90568312688,2312.64822859954,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1778.34472632586,1792.13634138209
6.46840148698885,1866.4793572155,2163.03692013628,2022.24164292011,2310.52276365433,2312.64822859954,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1778.34472632586,1792.13634138209
6.54275092936803,1866.4793572155,2172.56363140728,2022.24164292011,2310.52276365433,2312.64822859954,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1771.00183052773,1792.13634138209
6.61710037174721,1866.4793572155,2180.97088402627,2022.24164292011,2310.52276365433,2312.64822859954,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1764.45075464844,1792.13634138209
6.69144981412639,1866.4793572155,2180.97088402627,2022.24164292011,2343.09005592554,2284.35958337991,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1764.45075464844,1792.13634138209
6.76579925650558,1845.00445919139,2193.35833472894,2022.24164292011,2343.09005592554,2284.35958337991,2160.8943778671,1852.40049594752,2089.04474912215,2456.14114544875,2495.611608859,1764.45075464844,1792.13634138209
6.84014869888476,1845.00445919139,2193.35833472894,2022.24164292011,2343.09005592554,2284.35958337991,2160.8943778671,1852.40049594752,2079.38903611715,2463.24712388994,2495.611608859,1764.45075464844,1792.13634138209
6.91449814126394,1845.00445919139,2193.35833472894,2022.24164292011,2343.09005592554,2284.35958337991,2173.68166038377,1831.71766533195,2079.38903611715,2463.24712388994,2495.611608859,1764.45075464844,1792.13634138209
6.98884758364312,1845.00445919139,2193.35833472894,2022.24164292011,2354.93716417763,2284.35958337991,2173.68166038377,1831.71766533195,2064.78891776373,2463.24712388994,2495.611608859,1764.45075464844,1792.13634138209
7.0631970260223,1845.00445919139,2193.35833472894,2022.24164292011,2393.30220447521,2284.35958337991,2173.68166038377,1831.71766533195,2064.78891776373,2463.24712388994,2441.90011857021,1764.45075464844,1792.13634138209
7.13754646840149,1845.00445919139,2193.35833472894,2022.24164292011,2405.95932952608,2284.35958337991,2156.50281533305,1831.71766533195,2064.78891776373,2463.24712388994,2441.90011857021,1764.45075464844,1792.13634138209
7.21189591078067,1845.00445919139,2193.35833472894,2022.24164292011,2413.12930288688,2284.35958337991,2156.50281533305,1831.71766533195,2055.03824297192,2463.24712388994,2441.90011857021,1764.45075464844,1792.13634138209
7.28624535315985,1845.00445919139,2193.35833472894,2022.24164292011,2419.54624416952,2284.35958337991,2156.50281533305,1831.71766533195,2046.4225930177,2463.24712388994,2441.90011857021,1764.45075464844,1792.13634138209
7.36059479553903,1845.00445919139,2193.35833472894,2022.24164292011,2444.69282558604,2284.35958337991,2156.50281533305,1831.71766533195,2046.4225930177,2463.24712388994,2403.84229859059,1764.45075464844,1792.13634138209
7.43494423791822,1845.00445919139,2193.35833472894,2022.24164292011,2446.52224606603,2284.35958337991,2156.50281533305,1827.44992748638,2046.4225930177,2463.24712388994,2403.84229859059,1764.45075464844,1792.13634138209
7.5092936802974,1845.00445919139,2193.35833472894,2022.24164292011,2404.92622382883,2284.35958337991,2156.50281533305,1827.44992748638,2107.96992921436,2463.24712388994,2403.84229859059,1764.45075464844,1792.13634138209
7.58364312267658,1845.00445919139,2193.35833472894,2022.24164292011,2426.6714903497,2284.35958337991,2156.50281533305,1827.44992748638,2107.96992921436,2463.24712388994,2371.13608845922,1764.45075464844,1792.13634138209
7.65799256505576,1828.03060561111,2203.61187296827,2022.24164292011,2426.6714903497,2284.35958337991,2156.50281533305,1827.44992748638,2107.96992921436,2463.24712388994,2371.13608845922,1764.45075464844,1792.13634138209
7.73234200743494,1828.03060561111,2203.61187296827,2022.24164292011,2426.6714903497,2284.35958337991,2156.50281533305,1872.96624933456,2107.96992921436,2463.24712388994,2371.13608845922,1740.60179623662,1792.13634138209
7.80669144981413,1828.03060561111,2203.61187296827,2022.24164292011,2426.6714903497,2287.1257106657,2156.50281533305,1872.96624933456,2107.96992921436,2463.24712388994,2371.13608845922,1737.72429456984,1792.13634138209
7.88104089219331,1828.03060561111,2203.61187296827,2022.24164292011,2426.6714903497,2291.09490174139,2156.50281533305,1872.96624933456,2107.96992921436,2463.24712388994,2371.13608845922,1737.72429456984,1781.51848941391
7.95539033457249,1828.03060561111,2203.61187296827,2022.24164292011,2427.66884078473,2291.09490174139,2156.50281533305,1872.96624933456,2107.96992921436,2463.24712388994,2371.13608845922,1736.43561539802,1781.51848941391
8.02973977695167,1828.03060561111,2203.61187296827,2022.24164292011,2429.83159445023,2291.09490174139,2156.50281533305,1868.1388094468,2107.96992921436,2463.24712388994,2371.13608845922,1736.43561539802,1781.51848941391
8.10408921933086,1828.03060561111,2203.61187296827,2022.24164292011,2429.83159445023,2293.63129928625,2156.50281533305,1868.1388094468,2107.96992921436,2463.24712388994,2371.13608845922,1733.77190797639,1781.51848941391
8.17843866171004,1828.03060561111,2203.61187296827,2022.24164292011,2430.77745849476,2293.63129928625,2156.50281533305,1868.1388094468,2107.96992921436,2463.24712388994,2371.13608845922,1732.55584522526,1781.51848941391
8.25278810408922,1828.03060561111,2187.62821534432,2022.24164292011,2440.15555744222,2293.63129928625,2156.50281533305,1868.1388094468,2107.96992921436,2463.24712388994,2371.13608845922,1732.55584522526,1781.51848941391
8.3271375464684,1823.84698258815,2187.62821534432,2022.24164292011,2441.74887000987,2293.63129928625,2156.50281533305,1868.1388094468,2107.96992921436,2463.24712388994,2371.13608845922,1732.55584522526,1781.51848941391
8.40148698884758,1823.84698258815,2187.62821534432,2022.24164292011,2441.74887000987,2330.95527666571,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2371.13608845922,1732.55584522526,1781.51848941391
8.47583643122677,1939.87531999079,2187.62821534432,2022.24164292011,2441.74887000987,2285.55011835335,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2371.13608845922,1732.55584522526,1781.51848941391
8.55018587360595,1939.87531999079,2187.62821534432,2022.24164292011,2441.74887000987,2287.9028180904,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2371.13608845922,1729.9287179452,1781.51848941391
8.62453531598513,1939.87531999079,2187.62821534432,2022.24164292011,2457.71869031932,2287.9028180904,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2346.47188533935,1729.9287179452,1781.51848941391
8.69888475836431,1939.87531999079,2187.62821534432,2022.24164292011,2458.89425716609,2287.9028180904,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2346.47188533935,1729.9287179452,1777.64666772549
8.7732342007435,2039.91248947266,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2346.47188533935,1729.9287179452,1777.64666772549
8.84758364312268,2039.91248947266,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2288.59156445886,1784.90320823118,1777.64666772549
8.92193308550186,2122.271161192,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2156.50281533305,1868.1388094468,2107.96992921436,2422.76099747395,2245.73305617046,1784.90320823118,1777.64666772549
8.99628252788104,2171.39109364867,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2120.26440214595,1868.1388094468,2107.96992921436,2422.76099747395,2245.73305617046,1784.90320823118,1777.64666772549
9.07063197026022,2238.93420079934,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2120.26440214595,1868.1388094468,2107.96992921436,2380.99478626643,2245.73305617046,1784.90320823118,1777.64666772549
9.1449814126394,2245.66860250112,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2120.26440214595,1868.1388094468,2107.96992921436,2380.99478626643,2245.73305617046,1784.90320823118,1765.6259978285
9.21933085501859,2254.78674331871,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2120.26440214595,1856.43646150706,2107.96992921436,2380.99478626643,2245.73305617046,1784.90320823118,1765.6259978285
9.29368029739777,2277.9717354799,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2099.70777800264,1856.43646150706,2107.96992921436,2380.99478626643,2245.73305617046,1784.90320823118,1765.6259978285
9.36802973977695,2284.52935532938,2187.62821534432,2022.24164292011,2458.89425716609,2247.51114130614,2099.70777800264,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1784.90320823118,1765.6259978285
9.44237918215613,2284.52935532938,2187.62821534432,2022.24164292011,2458.89425716609,2251.11988030279,2099.70777800264,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1780.80089158567,1765.6259978285
9.51672862453532,2284.52935532938,2212.7844769553,2022.24164292011,2458.89425716609,2251.11988030279,2077.22072712946,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1780.80089158567,1765.6259978285
9.5910780669145,2284.52935532938,2212.7844769553,1921.38267337914,2458.89425716609,2251.11988030279,2077.22072712946,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1819.74442736436,1765.6259978285
9.66542750929368,2284.52935532938,2212.7844769553,1921.38267337914,2458.89425716609,2251.11988030279,2088.32024202318,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1809.64401984548,1765.6259978285
9.73977695167286,2284.52935532938,2212.7844769553,1889.39879960284,2458.89425716609,2251.11988030279,2103.32711035108,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1809.64401984548,1765.6259978285
9.81412639405204,2302.15619499799,2212.7844769553,1889.39879960284,2458.89425716609,2251.11988030279,2089.65693772561,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1809.64401984548,1765.6259978285
9.88847583643123,2302.15619499799,2212.7844769553,1889.39879960284,2458.89425716609,2255.05527367094,2089.65693772561,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1805.5412656465,1765.6259978285
9.96282527881041,2302.15619499799,2171.84732715051,1889.39879960284,2458.89425716609,2255.05527367094,2121.06220121934,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1805.5412656465,1765.6259978285
10.0371747211896,2306.07684419819,2171.84732715051,1889.39879960284,2458.89425716609,2255.05527367094,2121.06220121934,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1802.42815441843,1765.6259978285
10.1115241635688,2331.57804607533,2171.84732715051,1889.39879960284,2458.89425716609,2235.52714063765,2121.06220121934,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1802.42815441843,1765.6259978285
10.185873605948,2334.46992685185,2171.84732715051,1889.39879960284,2458.89425716609,2235.52714063765,2121.06220121934,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1802.42815441843,1759.01231723918
10.2602230483271,2347.50860086763,2171.84732715051,1889.39879960284,2458.89425716609,2235.52714063765,2110.18636446931,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1802.42815441843,1759.01231723918
10.3345724907063,2358.71317583199,2171.84732715051,1889.39879960284,2458.89425716609,2235.52714063765,2100.74879309558,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1802.42815441843,1759.01231723918
10.4089219330855,2313.40649490613,2171.84732715051,1990.03265292992,2458.89425716609,2235.52714063765,2100.74879309558,1847.44941558668,2107.96992921436,2380.99478626643,2245.73305617046,1802.42815441843,1759.01231723918
10.4832713754647,2313.40649490613,2171.84732715051,1990.03265292992,2458.89425716609,2235.52714063765,2100.74879309558,1847.44941558668,2107.96992921436,2383.16916951167,2245.73305617046,1800.43232397037,1759.01231723918
10.5576208178439,2316.25941602756,2171.84732715051,1990.03265292992,2458.89425716609,2235.52714063765,2100.74879309558,1847.44941558668,2107.96992921436,2383.16916951167,2245.73305617046,1797.67275178806,1759.01231723918
10.631970260223,2316.25941602756,2171.84732715051,1990.03265292992,2464.01332650243,2235.52714063765,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2245.73305617046,1797.67275178806,1759.01231723918
10.7063197026022,2335.51800029441,2171.84732715051,1990.03265292992,2464.01332650243,2235.52714063765,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1759.01231723918
10.7806691449814,2337.73557210934,2171.84732715051,1990.03265292992,2464.01332650243,2235.52714063765,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1753.05179386297
10.8550185873606,2337.73557210934,2171.84732715051,2069.05919204138,2464.01332650243,2202.15817960774,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1753.05179386297
10.9293680297398,2337.73557210934,2171.84732715051,2154.68631497064,2430.24187048491,2202.15817960774,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1753.05179386297
11.003717472119,2305.94575178613,2171.84732715051,2217.62987339839,2430.24187048491,2202.15817960774,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1753.05179386297
11.0780669144981,2305.94575178613,2171.84732715051,2224.20717767117,2430.24187048491,2202.15817960774,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1742.4790537768
11.1524163568773,2305.94575178613,2171.84732715051,2282.83903437593,2402.35143809777,2202.15817960774,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1742.4790537768
11.2267657992565,2305.94575178613,2145.3233164388,2282.83903437593,2402.35143809777,2221.36276092915,2100.74879309558,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1797.67275178806,1742.4790537768
11.3011152416357,2305.94575178613,2145.3233164388,2282.83903437593,2402.35143809777,2221.36276092915,2107.64514197595,1847.44941558668,2099.49837655996,2383.16916951167,2223.77500254364,1790.08555194198,1742.4790537768
11.3754646840149,2305.94575178613,2177.7315838053,2282.83903437593,2402.35143809777,2221.36276092915,2107.64514197595,1847.44941558668,2099.49837655996,2383.16916951167,2192.96857960365,1790.08555194198,1742.4790537768
11.4498141263941,2305.94575178613,2177.7315838053,2282.83903437593,2402.35143809777,2249.9281887986,2107.64514197595,1847.44941558668,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.5241635687732,2305.94575178613,2177.7315838053,2282.83903437593,2376.43735714654,2277.29784668669,2107.64514197595,1847.44941558668,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.5985130111524,2305.94575178613,2177.7315838053,2317.33755858528,2376.43735714654,2259.53217079678,2107.64514197595,1847.44941558668,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.6728624535316,2305.94575178613,2177.7315838053,2317.33755858528,2376.43735714654,2263.07064312622,2107.64514197595,1838.59712015946,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.7472118959108,2305.94575178613,2177.7315838053,2317.33755858528,2353.17204871285,2286.00394013506,2107.64514197595,1838.59712015946,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.82156133829,2305.94575178613,2177.7315838053,2317.33755858528,2353.17204871285,2288.81594213203,2107.64514197595,1831.48622779743,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.8959107806691,2305.94575178613,2177.7315838053,2317.33755858528,2353.17204871285,2291.45567543511,2107.64514197595,1824.95899926355,2099.49837655996,2345.87769323776,2192.96857960365,1790.08555194198,1742.4790537768
11.9702602230483,2305.94575178613,2177.7315838053,2317.33755858528,2353.17204871285,2303.41157806174,2107.64514197595,1824.95899926355,2099.49837655996,2345.87769323776,2175.05346320452,1790.08555194198,1742.4790537768
12.0446096654275,2305.94575178613,2182.50698313679,2317.33755858528,2353.17204871285,2303.41157806174,2107.64514197595,1824.95899926355,2099.49837655996,2345.87769323776,2175.05346320452,1790.08555194198,1731.24406831582
12.1189591078067,2305.94575178613,2182.50698313679,2317.33755858528,2353.17204871285,2313.78792420011,2107.64514197595,1824.95899926355,2099.49837655996,2345.87769323776,2159.86530600745,1790.08555194198,1731.24406831582
12.1933085501859,2305.94575178613,2182.50698313679,2349.27621410177,2353.17204871285,2299.08207822222,2107.64514197595,1824.95899926355,2099.49837655996,2345.87769323776,2159.86530600745,1790.08555194198,1731.24406831582
12.2676579925651,2305.94575178613,2182.50698313679,2361.82081008187,2353.17204871285,2299.08207822222,2098.76273423988,1824.95899926355,2099.49837655996,2345.87769323776,2159.86530600745,1790.08555194198,1731.24406831582
12.3420074349442,2305.94575178613,2165.1909015967,2361.82081008187,2353.17204871285,2309.12908709581,2098.76273423988,1824.95899926355,2099.49837655996,2345.87769323776,2159.86530600745,1790.08555194198,1731.24406831582
12.4163568773234,2305.94575178613,2165.1909015967,2361.82081008187,2353.17204871285,2315.9245659548,2098.76273423988,1824.95899926355,2084.11890499514,2345.87769323776,2159.86530600745,1790.08555194198,1731.24406831582
12.4907063197026,2305.94575178613,2165.1909015967,2386.46987409259,2353.17204871285,2304.02089559411,2098.76273423988,1824.95899926355,2084.11890499514,2345.87769323776,2159.86530600745,1790.08555194198,1731.24406831582
12.5650557620818,2305.94575178613,2169.6007451938,2386.46987409259,2353.17204871285,2304.02089559411,2098.76273423988,1824.95899926355,2084.11890499514,2345.87769323776,2159.86530600745,1790.08555194198,1720.56224753781
12.639405204461,2305.94575178613,2169.6007451938,2386.46987409259,2353.17204871285,2312.33085164756,2098.76273423988,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1790.08555194198,1720.56224753781
12.7137546468401,2305.94575178613,2169.6007451938,2386.46987409259,2333.77175924172,2326.83869031278,2098.76273423988,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1790.08555194198,1720.56224753781
12.7881040892193,2305.94575178613,2188.2529137692,2386.46987409259,2333.77175924172,2326.83869031278,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1790.08555194198,1720.56224753781
12.8624535315985,2305.94575178613,2177.21904728507,2399.71593785972,2333.77175924172,2326.83869031278,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1790.08555194198,1720.56224753781
12.9368029739777,2305.94575178613,2177.21904728507,2399.71593785972,2333.77175924172,2327.84194034374,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1790.08555194198,1716.48781309311
13.0111524163569,2305.94575178613,2177.21904728507,2399.71593785972,2333.77175924172,2328.81320579063,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1790.08555194198,1712.60744174405
13.0855018587361,2305.94575178613,2177.21904728507,2399.71593785972,2333.77175924172,2330.06151019003,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1787.80195109927,1712.60744174405
13.1598513011152,2305.94575178613,2177.21904728507,2399.71593785972,2333.77175924172,2330.99305137252,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1787.80195109927,1708.92788628782
13.2342007434944,2285.08647697533,2177.21904728507,2399.71593785972,2333.77175924172,2342.51347107559,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1787.80195109927,1708.92788628782
13.3085501858736,2285.08647697533,2177.21904728507,2399.71593785972,2333.77175924172,2343.34008087065,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1787.80195109927,1705.62336411201
13.3828996282528,2267.33438594715,2177.21904728507,2399.71593785972,2333.77175924172,2353.42241998443,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2146.19503001921,1787.80195109927,1705.62336411201
13.457249070632,2267.33438594715,2177.21904728507,2399.71593785972,2333.77175924172,2359.07965405163,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2135.96663630223,1787.80195109927,1705.62336411201
13.5315985130112,2267.33438594715,2165.79250900527,2399.71593785972,2333.77175924172,2365.21803015301,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2135.96663630223,1787.80195109927,1705.62336411201
13.6059479553903,2267.33438594715,2165.79250900527,2397.26259242152,2333.77175924172,2366.26383487776,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2135.96663630223,1787.80195109927,1705.62336411201
13.6802973977695,2267.33438594715,2169.07429961023,2397.26259242152,2333.77175924172,2366.26383487776,2082.3915633624,1824.95899926355,2084.11890499514,2345.87769323776,2135.96663630223,1787.80195109927,1697.39746052717
13.7546468401487,2267.33438594715,2184.31393114131,2397.26259242152,2333.77175924172,2366.26383487776,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2135.96663630223,1787.80195109927,1697.39746052717
13.8289962825279,2267.33438594715,2184.31393114131,2397.26259242152,2318.31812808894,2376.24217964549,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2135.96663630223,1787.80195109927,1697.39746052717
13.9033457249071,2267.33438594715,2184.31393114131,2397.26259242152,2318.31812808894,2380.71396830261,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2127.40084247491,1787.80195109927,1697.39746052717
13.9776951672862,2267.33438594715,2184.31393114131,2397.26259242152,2318.31812808894,2384.86609029839,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2119.60341766114,1787.80195109927,1697.39746052717
14.0520446096654,2267.33438594715,2184.31393114131,2405.75092409593,2318.31812808894,2384.86609029839,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2112.79537777194,1787.80195109927,1697.39746052717
14.1263940520446,2267.33438594715,2187.01943908117,2405.75092409593,2318.31812808894,2384.86609029839,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2112.79537777194,1787.80195109927,1690.49648636396
14.2007434944238,2267.33438594715,2202.05601673692,2405.75092409593,2318.31812808894,2384.86609029839,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2098.14014954211,1787.80195109927,1690.49648636396
14.275092936803,2267.33438594715,2189.62420314017,2405.75092409593,2329.48133398004,2384.86609029839,2067.36708769645,1824.95899926355,2084.11890499514,2345.87769323776,2098.14014954211,1787.80195109927,1690.49648636396
14.3494423791822,2267.33438594715,2189.62420314017,2405.75092409593,2329.48133398004,2385.84753217376,2067.36708769645,1821.25284953283,2084.11890499514,2345.87769323776,2098.14014954211,1787.80195109927,1690.49648636396
14.4237918215613,2267.33438594715,2189.62420314017,2405.75092409593,2335.93109723795,2385.84753217376,2067.36708769645,1821.25284953283,2071.45018787416,2345.87769323776,2098.14014954211,1787.80195109927,1690.49648636396
14.4981412639405,2267.33438594715,2189.62420314017,2405.75092409593,2337.37961340915,2385.84753217376,2067.36708769645,1821.25284953283,2071.45018787416,2345.87769323776,2098.14014954211,1785.59389902601,1690.49648636396
14.5724907063197,2291.53660199288,2189.62420314017,2405.75092409593,2337.37961340915,2385.84753217376,2067.36708769645,1821.25284953283,2071.45018787416,2314.95789309221,2098.14014954211,1785.59389902601,1690.49648636396
14.6468401486989,2311.76376395628,2189.62420314017,2405.75092409593,2337.37961340915,2385.84753217376,2067.36708769645,1821.25284953283,2071.45018787416,2289.56050701237,2098.14014954211,1785.59389902601,1690.49648636396
14.7211895910781,2311.76376395628,2189.62420314017,2405.75092409593,2337.37961340915,2386.59650379885,2067.36708769645,1821.25284953283,2071.45018787416,2289.56050701237,2098.14014954211,1783.96832665296,1690.49648636396
14.7955390334572,2320.4220726858,2189.62420314017,2405.75092409593,2337.37961340915,2386.59650379885,2067.36708769645,1821.25284953283,2071.45018787416,2289.56050701237,2089.75833601487,1783.96832665296,1690.49648636396
14.8698884758364,2320.4220726858,2189.62420314017,2405.75092409593,2324.09791762054,2395.68371913315,2067.36708769645,1821.25284953283,2071.45018787416,2289.56050701237,2089.75833601487,1783.96832665296,1690.49648636396
14.9442379182156,2328.21309382748,2189.62420314017,2405.75092409593,2324.09791762054,2395.68371913315,2067.36708769645,1821.25284953283,2071.45018787416,2289.56050701237,2082.20619065726,1783.96832665296,1690.49648636396
15.0185873605948,2328.21309382748,2189.62420314017,2405.75092409593,2324.09791762054,2395.68371913315,2075.2835704061,1804.30705088393,2071.45018787416,2289.56050701237,2082.20619065726,1783.96832665296,1690.49648636396
15.092936802974,2335.28405734565,2189.62420314017,2405.75092409593,2324.09791762054,2395.68371913315,2075.2835704061,1804.30705088393,2071.45018787416,2289.56050701237,2075.34402006458,1783.96832665296,1690.49648636396
15.1672862453532,2335.28405734565,2189.62420314017,2405.75092409593,2324.09791762054,2396.16187593849,2075.2835704061,1804.30705088393,2071.45018787416,2289.56050701237,2075.34402006458,1783.96832665296,1688.45959701261
15.2416356877323,2335.28405734565,2189.62420314017,2407.54077386051,2324.09791762054,2396.16187593849,2075.2835704061,1801.44880091997,2071.45018787416,2289.56050701237,2075.34402006458,1783.96832665296,1688.45959701261
15.3159851301115,2335.28405734565,2189.62420314017,2408.56100647251,2324.09791762054,2396.16187593849,2075.2835704061,1801.44880091997,2071.45018787416,2289.56050701237,2075.34402006458,1783.96832665296,1686.45917992316
15.3903345724907,2341.76751715375,2189.62420314017,2408.56100647251,2324.09791762054,2396.16187593849,2075.2835704061,1801.44880091997,2071.45018787416,2289.56050701237,2069.04487666422,1783.96832665296,1686.45917992316
15.4646840148699,2341.76751715375,2189.62420314017,2380.29454357893,2342.13052459745,2396.16187593849,2075.2835704061,1801.44880091997,2071.45018787416,2289.56050701237,2069.04487666422,1783.96832665296,1686.45917992316
15.5390334572491,2341.76751715375,2189.62420314017,2403.00115810058,2342.13052459745,2385.4077840939,2075.2835704061,1801.44880091997,2071.45018787416,2289.56050701237,2069.04487666422,1783.96832665296,1686.45917992316
15.6133828996283,2341.76751715375,2189.62420314017,2408.79662152593,2342.13052459745,2385.4077840939,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2069.04487666422,1783.96832665296,1686.45917992316
15.6877323420074,2341.76751715375,2189.62420314017,2408.79662152593,2342.13052459745,2388.41244232932,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1686.45917992316
15.7620817843866,2341.76751715375,2189.62420314017,2427.66741151419,2342.13052459745,2378.998277376,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1686.45917992316
15.8364312267658,2341.76751715375,2189.62420314017,2444.06940933637,2342.13052459745,2370.55497049148,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1686.45917992316
15.910780669145,2341.76751715375,2189.62420314017,2444.7131672847,2342.13052459745,2370.55497049148,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1684.89126723662
15.9851301115242,2341.76751715375,2189.62420314017,2457.64107133913,2331.71464304654,2370.55497049148,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1684.89126723662
16.0594795539033,2341.76751715375,2189.62420314017,2457.64107133913,2331.71464304654,2371.04430556592,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1682.6884758246
16.1338289962825,2341.76751715375,2189.62420314017,2470.80586719247,2331.71464304654,2363.70957327526,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1682.6884758246
16.2081784386617,2341.76751715375,2179.7092475065,2470.80586719247,2331.71464304654,2368.89045310931,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1783.96832665296,1682.6884758246
16.2825278810409,2341.76751715375,2179.7092475065,2470.80586719247,2331.71464304654,2369.60329893074,2069.94232646668,1801.44880091997,2071.45018787416,2289.56050701237,2064.31171062255,1782.18972823684,1682.6884758246
16.3568773234201,2341.76751715375,2179.7092475065,2470.80586719247,2331.71464304654,2372.59947575961,2069.94232646668,1801.44880091997,2061.81368336297,2289.56050701237,2064.31171062255,1782.18972823684,1682.6884758246
16.4312267657993,2341.76751715375,2201.81691523668,2470.80586719247,2331.71464304654,2372.59947575961,2069.94232646668,1801.44880091997,2061.81368336297,2259.59735783353,2064.31171062255,1782.18972823684,1682.6884758246
16.5055762081784,2341.76751715375,2201.81691523668,2470.80586719247,2331.71464304654,2372.59947575961,2076.30752900408,1801.44880091997,2061.81368336297,2259.59735783353,2064.31171062255,1774.13932132408,1682.6884758246
16.5799256505576,2341.76751715375,2212.83105566899,2470.80586719247,2331.71464304654,2372.59947575961,2064.27172852183,1801.44880091997,2061.81368336297,2259.59735783353,2064.31171062255,1774.13932132408,1682.6884758246
16.6542750929368,2341.76751715375,2214.6289542872,2470.80586719247,2331.71464304654,2372.59947575961,2064.27172852183,1801.44880091997,2061.81368336297,2259.59735783353,2064.31171062255,1774.13932132408,1677.53988457117
16.728624535316,2341.76751715375,2224.23403767692,2470.80586719247,2331.71464304654,2372.59947575961,2064.27172852183,1801.44880091997,2061.81368336297,2259.59735783353,2054.63129846656,1774.13932132408,1677.53988457117
16.8029739776952,2341.76751715375,2224.23403767692,2470.80586719247,2331.71464304654,2372.59947575961,2070.15198052415,1801.44880091997,2061.81368336297,2259.59735783353,2054.63129846656,1766.43654100731,1677.53988457117
16.8773234200744,2341.76751715375,2224.23403767692,2471.48904892004,2331.71464304654,2372.59947575961,2070.15198052415,1801.44880091997,2061.81368336297,2259.59735783353,2054.63129846656,1765.54502235261,1677.53988457117
16.9516728624535,2341.76751715375,2224.23403767692,2474.51118107744,2331.71464304654,2372.59947575961,2070.15198052415,1801.44880091997,2061.81368336297,2259.59735783353,2051.80986818058,1765.54502235261,1677.53988457117
17.0260223048327,2341.76751715375,2224.23403767692,2477.63488247506,2331.71464304654,2372.59947575961,2070.15198052415,1801.44880091997,2056.4015011776,2259.59735783353,2051.80986818058,1765.54502235261,1677.53988457117
17.1003717472119,2341.76751715375,2218.13770873608,2484.02401042867,2331.71464304654,2372.59947575961,2070.15198052415,1801.44880091997,2056.4015011776,2259.59735783353,2051.80986818058,1765.54502235261,1677.53988457117
17.1747211895911,2341.76751715375,2218.13770873608,2495.08316476675,2331.71464304654,2366.04224770709,2070.15198052415,1801.44880091997,2056.4015011776,2259.59735783353,2051.80986818058,1765.54502235261,1677.53988457117
17.2490706319703,2341.76751715375,2208.9021635878,2495.08316476675,2331.71464304654,2371.65032251071,2070.15198052415,1801.44880091997,2056.4015011776,2259.59735783353,2051.80986818058,1765.54502235261,1677.53988457117
17.3234200743494,2341.76751715375,2208.9021635878,2495.08316476675,2331.71464304654,2371.65032251071,2070.15198052415,1801.44880091997,2056.4015011776,2259.59735783353,2055.43375658475,1765.54502235261,1666.60976689615
17.3977695167286,2341.76751715375,2208.9021635878,2505.30060793898,2331.71464304654,2365.60021735042,2070.15198052415,1801.44880091997,2056.4015011776,2259.59735783353,2055.43375658475,1765.54502235261,1666.60976689615
17.4721189591078,2354.83886187396,2208.9021635878,2505.30060793898,2331.71464304654,2365.60021735042,2070.15198052415,1801.44880091997,2056.4015011776,2242.48504029372,2055.43375658475,1765.54502235261,1666.60976689615
17.546468401487,2366.15564130132,2208.9021635878,2505.30060793898,2331.71464304654,2365.60021735042,2070.15198052415,1801.44880091997,2056.4015011776,2227.89179254072,2055.43375658475,1765.54502235261,1666.60976689615
17.6208178438662,2366.15564130132,2208.9021635878,2514.59846646548,2331.71464304654,2359.98558941195,2070.15198052415,1801.44880091997,2056.4015011776,2227.89179254072,2055.43375658475,1765.54502235261,1666.60976689615
17.6951672862454,2366.15564130132,2208.9021635878,2516.75090750702,2331.71464304654,2359.98558941195,2070.15198052415,1801.44880091997,2052.20233863552,2227.89179254072,2055.43375658475,1765.54502235261,1666.60976689615
17.7695167286245,2366.89896653918,2208.9021635878,2516.75090750702,2331.71464304654,2359.98558941195,2070.15198052415,1801.44880091997,2052.20233863552,2227.89179254072,2055.43375658475,1765.54502235261,1664.67198512283
17.8438661710037,2371.65517091853,2208.9021635878,2516.75090750702,2331.71464304654,2359.98558941195,2070.15198052415,1801.44880091997,2043.88597326635,2227.89179254072,2055.43375658475,1765.54502235261,1664.67198512283
17.9182156133829,2371.65517091853,2208.9021635878,2516.75090750702,2331.71464304654,2362.73068391079,2070.15198052415,1801.44880091997,2043.88597326635,2227.89179254072,2050.65703856672,1765.54502235261,1664.67198512283
17.9925650557621,2371.65517091853,2208.9021635878,2516.75090750702,2331.71464304654,2365.35290200114,2070.15198052415,1801.44880091997,2043.88597326635,2227.89179254072,2046.14424965632,1765.54502235261,1664.67198512283
18.0669144981413,2371.65517091853,2208.9021635878,2516.75090750702,2331.71464304654,2365.35290200114,2085.93056250602,1801.44880091997,2019.54462355528,2227.89179254072,2046.14424965632,1765.54502235261,1664.67198512283
18.1412639405204,2371.65517091853,2208.9021635878,2516.75090750702,2331.71464304654,2365.35290200114,2108.68087657034,1801.44880091997,2019.54462355528,2200.16794748001,2046.14424965632,1765.54502235261,1664.67198512283
18.2156133828996,2371.65517091853,2211.8516872448,2516.75090750702,2331.71464304654,2365.35290200114,2108.68087657034,1793.88028447512,2019.54462355528,2200.16794748001,2046.14424965632,1765.54502235261,1664.67198512283
18.2899628252788,2371.65517091853,2207.27409195807,2521.19773489982,2331.71464304654,2365.35290200114,2108.68087657034,1793.88028447512,2019.54462355528,2200.16794748001,2046.14424965632,1765.54502235261,1664.67198512283
18.364312267658,2371.65517091853,2210.04266165132,2521.19773489982,2331.71464304654,2365.35290200114,2108.68087657034,1786.80065691749,2019.54462355528,2200.16794748001,2046.14424965632,1765.54502235261,1664.67198512283
18.4386617100372,2371.65517091853,2210.04266165132,2529.51869676081,2331.71464304654,2360.15928311785,2108.68087657034,1786.80065691749,2019.54462355528,2200.16794748001,2046.14424965632,1765.54502235261,1664.67198512283
18.5130111524164,2371.65517091853,2210.04266165132,2529.92004614834,2331.71464304654,2360.15928311785,2108.68087657034,1786.80065691749,2019.54462355528,2200.16794748001,2046.14424965632,1764.90129289858,1664.67198512283
18.5873605947955,2371.65517091853,2218.22700543168,2529.92004614834,2331.71464304654,2360.15928311785,2108.68087657034,1786.80065691749,2019.54462355528,2200.16794748001,2037.59499932055,1764.90129289858,1664.67198512283
18.6617100371747,2371.65517091853,2218.22700543168,2529.92004614834,2336.22768190584,2360.15928311785,2108.68087657034,1786.80065691749,2011.95198952442,2200.16794748001,2037.59499932055,1764.90129289858,1664.67198512283
18.7360594795539,2371.65517091853,2227.96598359985,2529.92004614834,2336.22768190584,2360.15928311785,2097.28202708333,1786.80065691749,2011.95198952442,2200.16794748001,2037.59499932055,1764.90129289858,1664.67198512283
18.8104089219331,2371.65517091853,2227.96598359985,2529.92004614834,2336.22768190584,2360.15928311785,2097.28202708333,1772.21987805696,2011.95198952442,2200.16794748001,2043.40141486726,1764.90129289858,1664.67198512283
18.8847583643123,2371.65517091853,2227.96598359985,2529.92004614834,2336.22768190584,2360.84783104824,2097.28202708333,1769.67051009131,2011.95198952442,2200.16794748001,2043.40141486726,1764.90129289858,1664.67198512283
18.9591078066914,2371.65517091853,2227.96598359985,2531.64743136673,2336.22768190584,2360.84783104824,2097.28202708333,1769.67051009131,2011.95198952442,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.0334572490706,2371.65517091853,2209.73456094975,2531.64743136673,2336.22768190584,2360.84783104824,2118.52557530625,1769.67051009131,2011.95198952442,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.1078066914498,2371.65517091853,2209.73456094975,2539.26952539698,2336.22768190584,2355.94659154185,2118.52557530625,1769.67051009131,2011.95198952442,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.182156133829,2371.65517091853,2201.06920943371,2539.26952539698,2345.95110986729,2355.94659154185,2118.52557530625,1769.67051009131,2011.95198952442,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.2565055762082,2371.65517091853,2201.06920943371,2546.31876358796,2345.95110986729,2351.35233750247,2118.52557530625,1769.67051009131,2011.95198952442,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.3308550185874,2371.65517091853,2201.06920943371,2552.85571653035,2345.95110986729,2347.04269569418,2118.52557530625,1769.67051009131,2011.95198952442,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.4052044609665,2371.65517091853,2201.06920943371,2552.85571653035,2349.86392694214,2347.04269569418,2118.52557530625,1769.67051009131,2005.27811888783,2200.16794748001,2041.6138361686,1764.90129289858,1664.67198512283
19.4795539033457,2371.65517091853,2201.06920943371,2552.85571653035,2349.86392694214,2347.04269569418,2118.52557530625,1802.14247478971,2005.27811888783,2200.16794748001,2041.6138361686,1743.29810026814,1664.67198512283
19.5539033457249,2371.65517091853,2201.06920943371,2552.85571653035,2349.86392694214,2347.04269569418,2121.95564017218,1802.14247478971,2005.27811888783,2200.16794748001,2041.6138361686,1738.47380943767,1664.67198512283
19.6282527881041,2371.65517091853,2201.06920943371,2554.047963343,2349.86392694214,2347.04269569418,2121.95564017218,1802.14247478971,2003.08949689857,2200.16794748001,2041.6138361686,1738.47380943767,1664.67198512283
19.7026022304833,2371.65517091853,2201.06920943371,2554.047963343,2353.50191667433,2347.04269569418,2121.95564017218,1802.14247478971,1997.05379801548,2200.16794748001,2041.6138361686,1738.47380943767,1664.67198512283
19.7769516728625,2363.11093198873,2201.06920943371,2560.76411721731,2353.50191667433,2347.04269569418,2121.95564017218,1802.14247478971,1997.05379801548,2200.16794748001,2041.6138361686,1738.47380943767,1664.67198512283
19.8513011152416,2346.78295787489,2201.06920943371,2560.76411721731,2353.50191667433,2355.95750604671,2121.95564017218,1802.14247478971,1997.05379801548,2200.16794748001,2041.6138361686,1738.47380943767,1664.67198512283
19.9256505576208,2346.78295787489,2201.06920943371,2560.76411721731,2354.19151289204,2355.95750604671,2121.95564017218,1802.14247478971,1997.05379801548,2200.16794748001,2041.6138361686,1738.47380943767,1662.62977636257
20,2346.78295787489,2201.06920943371,2560.76411721731,2354.19151289204,2355.95750604671,2125.22514074887,1802.14247478971,1997.05379801548,2200.16794748001,2041.6138361686,1733.9202492347,1662.62977636257
20.0743494423792,2346.78295787489,2201.06920943371,2560.76411721731,2354.19151289204,2355.95750604671,2134.95359771819,1802.14247478971,1982.06546636688,2200.16794748001,2041.6138361686,1733.9202492347,1662.62977636257
20.1486988847584,2346.78295787489,2201.06920943371,2560.76411721731,2354.19151289204,2355.95750604671,2145.6866064285,1802.14247478971,1982.06546636688,2200.16794748001,2030.86988464053,1733.9202492347,1662.62977636257
20.2230483271375,2346.78295787489,2201.06920943371,2560.76411721731,2354.19151289204,2355.95750604671,2155.29193321535,1802.14247478971,1982.06546636688,2200.16794748001,2021.25517156729,1733.9202492347,1662.62977636257
20.2973977695167,2351.02067946384,2201.06920943371,2560.76411721731,2354.19151289204,2355.95750604671,2155.29193321535,1802.14247478971,1982.06546636688,2200.16794748001,2017.44444247371,1733.9202492347,1662.62977636257
20.3717472118959,2351.02067946384,2201.06920943371,2566.77527459241,2347.43773558479,2355.95750604671,2155.29193321535,1802.14247478971,1982.06546636688,2200.16794748001,2017.44444247371,1733.9202492347,1662.62977636257
20.4460966542751,2359.87613652096,2201.06920943371,2566.77527459241,2347.43773558479,2355.95750604671,2155.29193321535,1802.14247478971,1982.06546636688,2188.15216058827,2017.44444247371,1733.9202492347,1662.62977636257
20.5204460966543,2366.81490608229,2201.06920943371,2566.77527459241,2347.43773558479,2355.95750604671,2148.7141486595,1802.14247478971,1982.06546636688,2188.15216058827,2017.44444247371,1733.9202492347,1662.62977636257
20.5947955390335,2374.30678435425,2201.06920943371,2566.77527459241,2347.43773558479,2355.95750604671,2148.7141486595,1802.14247478971,1982.06546636688,2177.82982371774,2017.44444247371,1733.9202492347,1662.62977636257
20.6691449814126,2374.30678435425,2201.06920943371,2566.77527459241,2347.43773558479,2355.95750604671,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2029.32679327536,1733.9202492347,1662.62977636257
20.7434944237918,2374.30678435425,2201.06920943371,2566.77527459241,2347.43773558479,2340.82483563254,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2052.27405693401,1733.9202492347,1662.62977636257
20.817843866171,2374.30678435425,2192.71881692252,2566.77527459241,2347.43773558479,2346.21703402341,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2052.27405693401,1733.9202492347,1662.62977636257
20.8921933085502,2374.30678435425,2185.09857366268,2566.77527459241,2355.63209352393,2346.21703402341,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2052.27405693401,1733.9202492347,1662.62977636257
20.9665427509294,2374.30678435425,2185.09857366268,2566.77527459241,2359.81990492894,2346.21703402341,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2048.27704916933,1733.9202492347,1662.62977636257
21.0408921933086,2374.30678435425,2185.09857366268,2568.08414997216,2359.81990492894,2346.21703402341,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2046.95035447174,1733.9202492347,1662.62977636257
21.1152416356877,2374.30678435425,2178.22229500628,2568.08414997216,2367.05079912081,2346.21703402341,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2046.95035447174,1733.9202492347,1662.62977636257
21.1895910780669,2374.30678435425,2178.22229500628,2568.08414997216,2370.75390863399,2346.21703402341,2148.7141486595,1802.14247478971,1962.48771448846,2177.82982371774,2043.33222699467,1733.9202492347,1662.62977636257
21.2639405204461,2374.30678435425,2178.22229500628,2568.08414997216,2373.15527088268,2346.21703402341,2148.7141486595,1802.14247478971,1958.55471090344,2177.82982371774,2043.33222699467,1733.9202492347,1662.62977636257
21.3382899628253,2374.30678435425,2178.22229500628,2568.08414997216,2375.45712607268,2346.21703402341,2148.7141486595,1802.14247478971,1954.81679239856,2177.82982371774,2043.33222699467,1733.9202492347,1662.62977636257
21.4126394052045,2378.08180227047,2178.22229500628,2568.08414997216,2375.45712607268,2346.21703402341,2148.7141486595,1802.14247478971,1954.81679239856,2177.82982371774,2039.93290375211,1733.9202492347,1662.62977636257
21.4869888475836,2378.6651961837,2178.22229500628,2568.08414997216,2375.45712607268,2346.21703402341,2148.7141486595,1802.14247478971,1954.81679239856,2177.82982371774,2039.93290375211,1733.9202492347,1660.86831049601
21.5613382899628,2371.67572813574,2178.22229500628,2574.53118766175,2375.45712607268,2346.21703402341,2148.7141486595,1802.14247478971,1954.81679239856,2177.82982371774,2039.93290375211,1733.9202492347,1660.86831049601
21.635687732342,2378.36682840077,2171.94094952014,2574.53118766175,2375.45712607268,2346.21703402341,2148.7141486595,1802.14247478971,1954.81679239856,2177.82982371774,2039.93290375211,1733.9202492347,1660.86831049601
21.7100371747212,2378.36682840077,2171.94094952014,2576.97762674766,2375.45712607268,2346.21703402341,2148.7141486595,1802.14247478971,1954.81679239856,2174.0950463748,2039.93290375211,1733.9202492347,1660.86831049601
21.7843866171004,2378.36682840077,2171.94094952014,2576.97762674766,2377.68972631069,2346.21703402341,2148.7141486595,1802.14247478971,1951.2342921472,2174.0950463748,2039.93290375211,1733.9202492347,1660.86831049601
21.8587360594796,2378.36682840077,2171.94094952014,2576.97762674766,2379.83659964709,2346.21703402341,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2039.93290375211,1733.9202492347,1660.86831049601
21.9330855018587,2378.36682840077,2171.94094952014,2576.97762674766,2383.05917355713,2346.21703402341,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2036.690953749,1733.9202492347,1660.86831049601
22.0074349442379,2378.91631399565,2171.94094952014,2576.97762674766,2383.05917355713,2346.21703402341,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2036.690953749,1733.9202492347,1659.14288579464
22.0817843866171,2378.91631399565,2171.94094952014,2576.97762674766,2369.56103702552,2355.96476330286,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2036.690953749,1733.9202492347,1659.14288579464
22.1561338289963,2378.91631399565,2173.40412526179,2576.97762674766,2369.56103702552,2355.96476330286,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2036.690953749,1733.9202492347,1654.03501887096
22.2304832713755,2378.91631399565,2174.80854478831,2576.97762674766,2369.56103702552,2355.96476330286,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2036.690953749,1733.9202492347,1649.22836631161
22.3048327137546,2378.91631399565,2174.80854478831,2582.51823135278,2369.56103702552,2352.04739791781,2148.7141486595,1802.14247478971,1947.81558322478,2174.0950463748,2036.690953749,1733.9202492347,1649.22836631161
22.3791821561338,2385.21406656149,2174.80854478831,2582.51823135278,2369.56103702552,2352.04739791781,2148.7141486595,1802.14247478971,1947.81558322478,2165.08912433443,2036.690953749,1733.9202492347,1649.22836631161
22.453531598513,2385.69817803509,2174.80854478831,2582.51823135278,2369.56103702552,2352.04739791781,2148.7141486595,1802.14247478971,1947.81558322478,2165.08912433443,2036.690953749,1733.9202492347,1647.76124116618
22.5278810408922,2385.69817803509,2174.80854478831,2587.73944306219,2369.56103702552,2348.31950917269,2148.7141486595,1802.14247478971,1947.81558322478,2165.08912433443,2036.690953749,1733.9202492347,1647.76124116618
22.6022304832714,2391.06613411001,2174.80854478831,2587.73944306219,2369.56103702552,2348.31950917269,2142.8622821461,1802.14247478971,1947.81558322478,2165.08912433443,2036.690953749,1733.9202492347,1647.76124116618
22.6765799256506,2391.06613411001,2174.80854478831,2587.73944306219,2369.56103702552,2349.14185450588,2142.8622821461,1799.17300549539,1947.81558322478,2165.08912433443,2036.690953749,1733.9202492347,1647.76124116618
22.7509293680297,2377.02524999885,2174.80854478831,2587.73944306219,2369.56103702552,2358.65789115556,2142.8622821461,1799.17300549539,1947.81558322478,2165.08912433443,2036.690953749,1733.9202492347,1647.76124116618
22.8252788104089,2382.69445292576,2174.80854478831,2587.73944306219,2369.56103702552,2358.65789115556,2142.8622821461,1799.17300549539,1947.81558322478,2156.60497656523,2036.690953749,1733.9202492347,1647.76124116618
22.8996282527881,2387.91867151663,2174.80854478831,2587.73944306219,2369.56103702552,2358.65789115556,2142.8622821461,1799.17300549539,1947.81558322478,2148.88895624056,2036.690953749,1733.9202492347,1647.76124116618
22.9739776951673,2387.91867151663,2174.80854478831,2587.73944306219,2370.26381968375,2358.65789115556,2142.8622821461,1799.17300549539,1947.81558322478,2148.88895624056,2036.690953749,1732.68598480824,1647.76124116618
23.0483271375465,2387.91867151663,2182.61106577276,2587.73944306219,2370.26381968375,2358.65789115556,2142.8622821461,1799.17300549539,1947.81558322478,2148.88895624056,2028.76380065793,1732.68598480824,1647.76124116618
23.1226765799256,2392.64997576966,2182.61106577276,2587.73944306219,2370.26381968375,2358.65789115556,2137.29118432894,1799.17300549539,1947.81558322478,2148.88895624056,2028.76380065793,1732.68598480824,1647.76124116618
23.1970260223048,2395.30616026233,2182.61106577276,2587.73944306219,2370.26381968375,2358.65789115556,2137.29118432894,1799.17300549539,1947.81558322478,2148.88895624056,2025.92161119435,1732.68598480824,1647.76124116618
23.271375464684,2395.87527329929,2182.61106577276,2587.73944306219,2370.26381968375,2358.65789115556,2137.29118432894,1799.17300549539,1947.81558322478,2148.88895624056,2025.92161119435,1731.62698753615,1647.76124116618
23.3457249070632,2396.27713942229,2182.61106577276,2587.73944306219,2370.26381968375,2358.65789115556,2137.29118432894,1799.17300549539,1947.81558322478,2148.88895624056,2025.92161119435,1731.62698753615,1646.4022120275
23.4200743494424,2383.71712401745,2182.61106577276,2587.73944306219,2370.26381968375,2368.11605899317,2137.29118432894,1799.17300549539,1947.81558322478,2148.88895624056,2025.92161119435,1731.62698753615,1646.4022120275
23.4944237918216,2383.71712401745,2182.61106577276,2587.73944306219,2370.26381968375,2368.11605899317,2139.88936616249,1799.17300549539,1947.81558322478,2148.88895624056,2025.92161119435,1727.49086134526,1646.4022120275
23.5687732342007,2383.71712401745,2189.76210241148,2587.73944306219,2370.26381968375,2368.11605899317,2139.88936616249,1799.17300549539,1947.81558322478,2148.88895624056,2018.76146906075,1727.49086134526,1646.4022120275
23.6431226765799,2383.71712401745,2192.25876527854,2587.73944306219,2370.26381968375,2368.11605899317,2139.88936616249,1792.5387887026,1947.81558322478,2148.88895624056,2018.76146906075,1727.49086134526,1646.4022120275
23.7174721189591,2383.71712401745,2192.25876527854,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1792.5387887026,1947.81558322478,2148.88895624056,2017.80803936138,1727.49086134526,1646.4022120275
23.7918215613383,2383.71712401745,2194.62528466143,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1786.39570083909,1947.81558322478,2148.88895624056,2017.80803936138,1727.49086134526,1646.4022120275
23.8661710037175,2383.71712401745,2196.26681500301,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1786.39570083909,1947.81558322478,2148.88895624056,2017.80803936138,1724.52540981959,1646.4022120275
23.9405204460967,2383.71712401745,2198.48091848556,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1780.72605910844,1947.81558322478,2148.88895624056,2017.80803936138,1724.52540981959,1646.4022120275
24.0148698884758,2383.71712401745,2199.59951457432,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1780.72605910844,1947.81558322478,2148.88895624056,2017.80803936138,1724.52540981959,1642.47599534915
24.089219330855,2383.71712401745,2205.68344410162,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1780.72605910844,1947.81558322478,2148.88895624056,2011.45207404973,1724.52540981959,1642.47599534915
24.1635687732342,2383.71712401745,2207.6654925906,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1775.6108404901,1947.81558322478,2148.88895624056,2011.45207404973,1724.52540981959,1642.47599534915
24.2379182156134,2383.71712401745,2207.6654925906,2588.71455200903,2370.26381968375,2368.11605899317,2139.88936616249,1775.6108404901,1947.81558322478,2151.9380716975,2011.45207404973,1720.82375808171,1642.47599534915
24.3122676579926,2383.71712401745,2207.6654925906,2590.71828224243,2370.26381968375,2368.11605899317,2139.88936616249,1775.6108404901,1947.81558322478,2149.16788683491,2011.45207404973,1720.82375808171,1642.47599534915
24.3866171003717,2383.71712401745,2208.67910800962,2590.71828224243,2370.26381968375,2368.11605899317,2139.88936616249,1775.6108404901,1947.81558322478,2149.16788683491,2011.45207404973,1720.82375808171,1638.88422760742
24.4609665427509,2383.71712401745,2208.67910800962,2590.71828224243,2370.26381968375,2368.11605899317,2139.88936616249,1799.35143998113,1947.81558322478,2149.16788683491,2011.45207404973,1703.71943694507,1638.88422760742
24.5353159851301,2383.71712401745,2210.79990820633,2590.71828224243,2370.26381968375,2368.11605899317,2139.88936616249,1794.33841188998,1947.81558322478,2149.16788683491,2011.45207404973,1703.71943694507,1638.88422760742
24.6096654275093,2383.71712401745,2216.26466859592,2590.71828224243,2370.26381968375,2368.11605899317,2139.88936616249,1794.33841188998,1947.81558322478,2149.16788683491,2005.60958244898,1703.71943694507,1638.88422760742
24.6840148698885,2383.71712401745,2216.26466859592,2591.62021754231,2370.26381968375,2368.11605899317,2139.88936616249,1794.33841188998,1947.81558322478,2149.16788683491,2004.76091978083,1703.71943694507,1638.88422760742
24.7583643122677,2383.71712401745,2216.26466859592,2592.51096214621,2370.26381968375,2368.11605899317,2139.88936616249,1794.33841188998,1947.81558322478,2149.16788683491,2003.92244189995,1703.71943694507,1638.88422760742
24.8327137546468,2383.71712401745,2216.26466859592,2593.18633342553,2370.26381968375,2368.11605899317,2139.88936616249,1794.33841188998,1946.70756328976,2149.16788683491,2003.92244189995,1703.71943694507,1638.88422760742
24.907063197026,2386.16810367268,2216.26466859592,2593.18633342553,2370.26381968375,2368.11605899317,2139.88936616249,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.71943694507,1638.88422760742
24.9814126394052,2386.16810367268,2216.26466859592,2598.60730650174,2370.26381968375,2364.19815387614,2139.88936616249,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.71943694507,1638.88422760742
25.0557620817844,2386.16810367268,2216.26466859592,2598.7754282061,2370.26381968375,2364.19815387614,2139.88936616249,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.1301115241636,2390.75765528654,2216.26466859592,2598.7754282061,2370.26381968375,2364.19815387614,2134.2934120491,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.2044609665428,2390.75765528654,2231.75913588121,2598.7754282061,2370.26381968375,2351.89317759871,2134.2934120491,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.2788104089219,2390.75765528654,2246.12925838796,2598.7754282061,2370.26381968375,2340.40569229854,2134.2934120491,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.3531598513011,2390.75765528654,2246.12925838796,2600.46361743561,2370.26381968375,2340.40569229854,2132.39499745506,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.4275092936803,2385.44359617864,2246.12925838796,2606.13226752245,2370.26381968375,2340.40569229854,2132.39499745506,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.5018587360595,2372.97889654196,2246.12925838796,2606.13226752245,2370.26381968375,2350.00714897645,2132.39499745506,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.5762081784387,2383.56625687239,2246.12925838796,2606.13226752245,2357.51336088208,2350.00714897645,2132.39499745506,1794.33841188998,1946.70756328976,2149.16788683491,2001.45134178919,1703.45110083797,1638.88422760742
25.6505576208178,2383.56625687239,2246.12925838796,2584.01779049792,2357.51336088208,2350.00714897645,2132.39499745506,1794.33841188998,1946.70756328976,2182.27950844283,2001.45134178919,1703.45110083797,1638.88422760742
25.724907063197,2390.17700187068,2239.41466309528,2584.01779049792,2357.51336088208,2350.00714897645,2132.39499745506,1794.33841188998,1946.70756328976,2182.27950844283,2001.45134178919,1703.45110083797,1638.88422760742
25.7992565055762,2390.17700187068,2239.41466309528,2584.01779049792,2357.51336088208,2350.00714897645,2139.48362016742,1794.33841188998,1935.89452274571,2182.27950844283,2001.45134178919,1703.45110083797,1638.88422760742
25.8736059479554,2390.17700187068,2239.41466309528,2584.01779049792,2357.51336088208,2350.00714897645,2139.48362016742,1794.33841188998,1944.42647020941,2182.27950844283,2001.45134178919,1694.79061686773,1638.88422760742
25.9479553903346,2390.17700187068,2239.41466309528,2584.16511719303,2357.51336088208,2350.00714897645,2139.48362016742,1794.33841188998,1944.42647020941,2182.27950844283,2001.45134178919,1694.79061686773,1638.4417507058
26.0223048327138,2390.17700187068,2239.41466309528,2561.96884296909,2357.51336088208,2350.00714897645,2164.66280931703,1794.33841188998,1944.42647020941,2182.27950844283,2001.45134178919,1694.79061686773,1638.4417507058
26.0966542750929,2390.53309363729,2239.41466309528,2561.96884296909,2357.51336088208,2350.00714897645,2164.66280931703,1794.33841188998,1944.42647020941,2182.27950844283,2001.45134178919,1694.79061686773,1637.15711828242
26.1710037174721,2391.28512321625,2239.41466309528,2561.96884296909,2357.51336088208,2350.00714897645,2164.66280931703,1792.47078728603,1944.42647020941,2182.27950844283,2001.45134178919,1694.79061686773,1637.15711828242
26.2453531598513,2397.44758651471,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2164.66280931703,1792.47078728603,1944.42647020941,2182.27950844283,2001.45134178919,1694.79061686773,1637.15711828242
26.3197026022305,2397.84992651922,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2164.66280931703,1792.47078728603,1944.42647020941,2182.27950844283,2001.45134178919,1694.03264170409,1637.15711828242
26.3940520446097,2402.1515803718,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2158.98881597391,1792.47078728603,1944.42647020941,2182.27950844283,2001.45134178919,1694.03264170409,1637.15711828242
26.4684014869888,2406.63365481287,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2158.98881597391,1792.47078728603,1944.42647020941,2174.43014376124,2001.45134178919,1694.03264170409,1637.15711828242
26.542750929368,2406.63365481287,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2165.00544634741,1792.47078728603,1935.45948369974,2174.43014376124,2001.45134178919,1694.03264170409,1637.15711828242
26.6171003717472,2410.6535056693,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2159.77814898371,1792.47078728603,1935.45948369974,2174.43014376124,2001.45134178919,1694.03264170409,1637.15711828242
26.6914498141264,2410.94965849187,2233.12365951777,2561.96884296909,2357.51336088208,2350.00714897645,2159.77814898371,1792.47078728603,1935.45948369974,2174.43014376124,2001.45134178919,1694.03264170409,1636.02604347894
26.7657992565056,2418.97309879017,2233.12365951777,2561.96884296909,2357.51336088208,2342.74065685541,2159.77814898371,1792.47078728603,1935.45948369974,2174.43014376124,2001.45134178919,1694.03264170409,1636.02604347894
26.8401486988848,2418.97309879017,2233.12365951777,2561.96884296909,2357.51336088208,2342.74065685541,2161.17352421126,1792.47078728603,1935.45948369974,2174.43014376124,2001.45134178919,1694.03264170409,1631.61191043759
26.9144981412639,2418.97309879017,2233.12365951777,2561.96884296909,2357.51336088208,2327.16055280904,2161.17352421126,1792.47078728603,1970.73861754973,2174.43014376124,2001.45134178919,1694.03264170409,1631.61191043759
26.9888475836431,2418.97309879017,2233.12365951777,2561.96884296909,2357.51336088208,2327.16055280904,2161.17352421126,1792.47078728603,1975.75744786906,2174.43014376124,2001.45134178919,1694.03264170409,1620.69046996309
27.0631970260223,2401.37759322471,2233.12365951777,2561.96884296909,2357.51336088208,2327.16055280904,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.69046996309
27.1375464684015,2401.37759322471,2233.12365951777,2562.11917124142,2357.51336088208,2327.16055280904,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.2118959107807,2401.37759322471,2233.12365951777,2567.22584140978,2357.51336088208,2323.518282995,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.2862453531599,2401.37759322471,2233.12365951777,2572.03794405917,2357.51336088208,2320.06025666483,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.360594795539,2401.37759322471,2225.0303676776,2572.03794405917,2357.51336088208,2326.44438766684,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.4349442379182,2401.37759322471,2225.0303676776,2577.41032332033,2351.48735876833,2326.44438766684,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.5092936802974,2401.37759322471,2225.0303676776,2582.42063654488,2345.88509478705,2326.44438766684,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.5836431226766,2401.37759322471,2225.0303676776,2587.11164138749,2340.65505312542,2326.44438766684,2161.17352421126,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.6579925650558,2405.35206886428,2225.0303676776,2587.11164138749,2340.65505312542,2326.44438766684,2155.93088249847,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.7323420074349,2405.35206886428,2233.44755503416,2587.11164138749,2340.65505312542,2326.44438766684,2145.92267301017,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.8066914498141,2405.35206886428,2233.44755503416,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1792.47078728603,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.8810408921933,2405.35206886428,2235.10217868388,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1788.19134637546,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
27.9553903345725,2410.65791093907,2229.45687765042,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1788.19134637546,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
28.0297397769517,2410.65791093907,2231.06385227812,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1784.00676853289,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
28.1040892193309,2411.23731233781,2231.06385227812,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1782.47876046028,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1620.2743006679
28.17843866171,2411.49613423578,2231.06385227812,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1782.47876046028,2010.31491766453,2174.43014376124,2001.45134178919,1694.03264170409,1619.32304142937
28.2527881040892,2413.3192821777,2231.06385227812,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1782.47876046028,2006.80507487153,2174.43014376124,2001.45134178919,1694.03264170409,1619.32304142937
28.3271375464684,2413.8823696293,2231.06385227812,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1780.99398511757,2006.80507487153,2174.43014376124,2001.45134178919,1694.03264170409,1619.32304142937
28.4014869888476,2418.8126523115,2225.78633819489,2566.41651196556,2340.65505312542,2326.44438766684,2168.6184850953,1780.99398511757,2006.80507487153,2174.43014376124,2001.45134178919,1694.03264170409,1619.32304142937
28.4758364312268,2425.98082623177,2225.78633819489,2566.41651196556,2330.90439485685,2326.44438766684,2168.6184850953,1780.99398511757,2006.80507487153,2174.43014376124,2001.45134178919,1694.03264170409,1619.32304142937
28.5501858736059,2425.98082623177,2225.78633819489,2567.32708843104,2330.90439485685,2326.44438766684,2168.6184850953,1780.99398511757,2006.80507487153,2174.43014376124,2000.4261309921,1694.03264170409,1619.32304142937
28.6245353159851,2425.98082623177,2225.78633819489,2567.32708843104,2330.90439485685,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2174.43014376124,2000.4261309921,1678.99658115923,1619.32304142937
28.6988847583643,2432.63604304952,2225.78633819489,2567.32708843104,2321.95417038189,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2174.43014376124,2000.4261309921,1678.99658115923,1619.32304142937
28.7732342007435,2438.80398798406,2225.78633819489,2567.32708843104,2313.73526640159,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2174.43014376124,2000.4261309921,1678.99658115923,1619.32304142937
28.8475836431227,2438.80398798406,2225.78633819489,2571.68786803086,2309.28115318266,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2174.43014376124,2000.4261309921,1678.99658115923,1619.32304142937
28.9219330855019,2440.18263726416,2225.78633819489,2571.68786803086,2309.28115318266,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2174.43014376124,1998.42813568279,1678.99658115923,1619.32304142937
28.996282527881,2440.18263726416,2225.78633819489,2573.87068956904,2309.28115318266,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2170.96532540939,1998.42813568279,1678.99658115923,1619.32304142937
29.0706319702602,2443.33730782812,2225.78633819489,2573.87068956904,2309.28115318266,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2164.67558528233,1998.42813568279,1678.99658115923,1619.32304142937
29.1449814126394,2443.53572398388,2225.78633819489,2573.87068956904,2309.28115318266,2326.44438766684,2168.6184850953,1800.0423668852,2006.80507487153,2164.67558528233,1998.42813568279,1678.99658115923,1618.53408492651
29.2193308550186,2444.01636852948,2225.78633819489,2573.87068956904,2309.28115318266,2326.44438766684,2168.6184850953,1798.74667368973,2006.80507487153,2164.67558528233,1998.42813568279,1678.99658115923,1618.53408492651
29.2936802973978,2444.01636852948,2225.78633819489,2573.99787757051,2309.28115318266,2326.44438766684,2168.6184850953,1798.74667368973,2006.80507487153,2164.67558528233,1998.42813568279,1678.99658115923,1618.15054312468
29.368029739777,2445.4099353591,2225.78633819489,2573.99787757051,2309.28115318266,2326.44438766684,2168.6184850953,1798.74667368973,2003.88375772064,2164.67558528233,1998.42813568279,1678.99658115923,1618.15054312468
29.4423791821561,2448.41797408443,2225.78633819489,2573.99787757051,2309.28115318266,2326.44438766684,2164.26086387656,1798.74667368973,2003.88375772064,2164.67558528233,1998.42813568279,1678.99658115923,1618.15054312468
29.5167286245353,2448.41797408443,2225.78633819489,2573.99787757051,2309.28115318266,2326.44438766684,2171.16147953757,1798.74667368973,2003.88375772064,2164.67558528233,1991.25005098781,1678.99658115923,1618.15054312468
29.5910780669145,2448.60836941676,2225.78633819489,2573.99787757051,2309.28115318266,2326.44438766684,2171.16147953757,1798.74667368973,2003.88375772064,2164.67558528233,1991.25005098781,1678.99658115923,1617.39128571534
29.6654275092937,2448.60836941676,2225.78633819489,2573.99787757051,2309.28115318266,2331.58072567727,2171.16147953757,1798.74667368973,2003.88375772064,2154.90567128437,1991.25005098781,1678.99658115923,1617.39128571534
29.7397769516729,2448.60836941676,2225.78633819489,2573.99787757051,2309.28115318266,2319.01520860014,2188.32291956939,1798.74667368973,2003.88375772064,2154.90567128437,1991.25005098781,1678.99658115923,1617.39128571534
29.814126394052,2448.60836941676,2225.78633819489,2575.97481840963,2309.28115318266,2319.01520860014,2188.32291956939,1798.74667368973,2003.88375772064,2152.01419175755,1991.25005098781,1678.99658115923,1617.39128571534
29.8884758364312,2449.94668082391,2225.78633819489,2575.97481840963,2309.28115318266,2319.01520860014,2188.32291956939,1798.74667368973,2001.09025141036,2152.01419175755,1991.25005098781,1678.99658115923,1617.39128571534
29.9628252788104,2451.17012563681,2225.78633819489,2575.97481840963,2309.28115318266,2319.01520860014,2188.32291956939,1798.74667368973,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1617.39128571534
30.0371747211896,2451.35755589218,2225.78633819489,2575.97481840963,2309.28115318266,2319.01520860014,2188.32291956939,1798.74667368973,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1616.64717061415
30.1115241635688,2451.81357537243,2225.78633819489,2575.97481840963,2309.28115318266,2319.01520860014,2188.32291956939,1797.50863335579,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1616.64717061415
30.185873605948,2451.81357537243,2225.78633819489,2580.25883218956,2309.28115318266,2315.64981354003,2188.32291956939,1797.50863335579,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1616.64717061415
30.2602230483271,2451.81357537243,2225.78633819489,2580.38022440524,2309.28115318266,2315.64981354003,2188.32291956939,1797.50863335579,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1616.2820992496
30.3345724907063,2451.81357537243,2225.78633819489,2580.38022440524,2309.28115318266,2299.13083099203,2188.32291956939,1797.50863335579,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1698.72950509979
30.4089219330855,2451.81357537243,2235.0881874353,2580.38022440524,2309.28115318266,2299.13083099203,2177.74198008861,1797.50863335579,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1698.72950509979
30.4832713754647,2451.81357537243,2232.51826056259,2583.17544621312,2309.28115318266,2299.13083099203,2177.74198008861,1797.50863335579,2001.09025141036,2152.01419175755,1989.4751923648,1678.99658115923,1698.72950509979
30.5576208178439,2451.81357537243,2232.51826056259,2583.17544621312,2309.28115318266,2299.13083099203,2183.6825320984,1797.50863335579,2001.09025141036,2152.01419175755,1982.98866721039,1678.99658115923,1698.72950509979
30.631970260223,2451.81357537243,2233.57391892594,2583.17544621312,2309.28115318266,2299.13083099203,2183.6825320984,1797.50863335579,2001.09025141036,2152.01419175755,1982.98866721039,1678.99658115923,1694.89219551309
30.7063197026022,2451.81357537243,2235.2328769483,2583.17544621312,2309.28115318266,2299.13083099203,2183.6825320984,1793.55379017991,2001.09025141036,2152.01419175755,1982.98866721039,1678.99658115923,1694.89219551309
30.7806691449814,2451.81357537243,2239.1478688587,2583.17544621312,2309.28115318266,2299.13083099203,2183.6825320984,1793.55379017991,2001.09025141036,2152.01419175755,1978.16560865014,1678.99658115923,1694.89219551309
30.8550185873606,2451.81357537243,2239.1478688587,2585.30827804325,2309.28115318266,2299.13083099203,2181.49028901086,1793.55379017991,2001.09025141036,2152.01419175755,1978.16560865014,1678.99658115923,1694.89219551309
30.9293680297398,2451.81357537243,2239.1478688587,2586.01699286342,2309.28115318266,2299.13083099203,2181.49028901086,1793.55379017991,2001.09025141036,2152.01419175755,1977.38359972017,1678.99658115923,1694.89219551309
31.003717472119,2451.81357537243,2242.86035626783,2586.01699286342,2309.28115318266,2299.13083099203,2181.49028901086,1793.55379017991,2001.09025141036,2152.01419175755,1972.85459987718,1678.99658115923,1694.89219551309
31.0780669144981,2451.81357537243,2242.86035626783,2586.01699286342,2309.28115318266,2299.13083099203,2187.48644227548,1793.55379017991,1991.36487327938,2152.01419175755,1972.85459987718,1678.99658115923,1694.89219551309
31.1524163568773,2451.81357537243,2242.86035626783,2586.01699286342,2309.28115318266,2299.13083099203,2192.58436309618,1793.55379017991,1991.36487327938,2152.01419175755,1967.37057676588,1678.99658115923,1694.89219551309
31.2267657992565,2451.81357537243,2250.15468469969,2586.01699286342,2309.28115318266,2299.13083099203,2192.58436309618,1793.55379017991,1991.36487327938,2139.59598167783,1967.37057676588,1678.99658115923,1694.89219551309
31.3011152416357,2451.81357537243,2250.93051596392,2586.01699286342,2309.28115318266,2299.13083099203,2192.58436309618,1793.55379017991,1991.36487327938,2139.59598167783,1967.37057676588,1677.404356681,1694.89219551309
31.3754646840149,2451.81357537243,2257.55948665215,2586.01699286342,2309.28115318266,2299.13083099203,2192.58436309618,1793.55379017991,1991.36487327938,2128.49994075949,1967.37057676588,1677.404356681,1694.89219551309
31.4498141263941,2451.81357537243,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2192.58436309618,1793.55379017991,1991.36487327938,2128.49994075949,1963.52319504147,1677.404356681,1694.89219551309
31.5241635687732,2452.05630418863,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2192.58436309618,1793.55379017991,1991.36487327938,2128.49994075949,1963.52319504147,1676.8881761782,1694.89219551309
31.5985130111524,2455.47186501559,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2188.43810204107,1793.55379017991,1991.36487327938,2128.49994075949,1963.52319504147,1676.8881761782,1694.89219551309
31.6728624535316,2455.47186501559,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2193.1941335815,1793.55379017991,1991.36487327938,2128.49994075949,1958.41656845797,1676.8881761782,1694.89219551309
31.7472118959108,2456.72752610595,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2193.1941335815,1793.55379017991,1988.89129312717,2128.49994075949,1958.41656845797,1676.8881761782,1694.89219551309
31.82156133829,2457.01183512991,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2193.1941335815,1793.55379017991,1988.89129312717,2128.49994075949,1958.41656845797,1676.8881761782,1693.80156152872
31.8959107806691,2458.03958507939,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2193.1941335815,1793.55379017991,1988.89129312717,2128.49994075949,1957.10839170869,1676.8881761782,1693.80156152872
31.9702602230483,2458.03958507939,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2194.34624073876,1793.55379017991,1988.89129312717,2128.49994075949,1957.10839170869,1674.74646243894,1693.80156152872
32.0446096654275,2458.03958507939,2260.64196486047,2586.01699286342,2309.28115318266,2299.13083099203,2199.4320191127,1793.55379017991,1980.4187164352,2128.49994075949,1957.10839170869,1674.74646243894,1693.80156152872
32.1189591078067,2458.03958507939,2260.64196486047,2586.01699286342,2309.28115318266,2287.30562759223,2212.73299807022,1793.55379017991,1980.4187164352,2128.49994075949,1957.10839170869,1674.74646243894,1693.80156152872
32.1933085501859,2463.45085604902,2260.64196486047,2586.01699286342,2301.84203453672,2287.30562759223,2212.73299807022,1793.55379017991,1980.4187164352,2128.49994075949,1957.10839170869,1674.74646243894,1693.80156152872
32.2676579925651,2463.45085604902,2260.64196486047,2586.01699286342,2301.84203453672,2287.30562759223,2216.65703775054,1793.55379017991,1980.4187164352,2128.49994075949,1952.70437862436,1674.74646243894,1693.80156152872
32.3420074349442,2463.72116199365,2260.64196486047,2586.01699286342,2301.84203453672,2287.30562759223,2216.65703775054,1793.55379017991,1980.4187164352,2128.49994075949,1952.70437862436,1674.74646243894,1692.75964842132
32.4163568773234,2463.72116199365,2260.64196486047,2586.01699286342,2286.99188977319,2287.30562759223,2229.03746386213,1793.55379017991,1980.4187164352,2128.49994075949,1952.70437862436,1674.74646243894,1692.75964842132
32.4907063197026,2463.72116199365,2260.64196486047,2586.65584646864,2286.99188977319,2287.30562759223,2229.03746386213,1793.55379017991,1980.4187164352,2128.49994075949,1952.07269959771,1674.74646243894,1692.75964842132
32.5650557620818,2463.72116199365,2269.3863337274,2586.65584646864,2286.99188977319,2287.30562759223,2220.07796365249,1793.55379017991,1980.4187164352,2128.49994075949,1952.07269959771,1674.74646243894,1692.75964842132
32.639405204461,2463.72116199365,2269.3863337274,2587.29082466724,2286.99188977319,2287.30562759223,2220.07796365249,1793.55379017991,1980.4187164352,2128.49994075949,1951.44479640584,1674.74646243894,1692.75964842132
32.7137546468402,2463.72116199365,2258.68034170594,2587.29082466724,2286.99188977319,2287.30562759223,2231.03959120527,1793.55379017991,1980.4187164352,2128.49994075949,1951.44479640584,1674.74646243894,1692.75964842132
32.7881040892193,2463.72116199365,2261.46640213377,2587.29082466724,2286.99188977319,2287.30562759223,2231.03959120527,1793.55379017991,1980.4187164352,2128.49994075949,1948.0193726265,1674.74646243894,1692.75964842132
32.8624535315985,2463.72116199365,2261.46640213377,2587.29082466724,2286.99188977319,2287.30562759223,2231.86375920374,1793.55379017991,1980.4187164352,2128.49994075949,1948.0193726265,1673.01865473934,1692.75964842132
32.9368029739777,2463.72116199365,2261.46640213377,2587.29082466724,2286.99188977319,2287.30562759223,2232.67500992353,1793.55379017991,1980.4187164352,2128.49994075949,1948.0193726265,1671.32831110453,1692.75964842132
33.0111524163569,2463.72116199365,2261.46640213377,2590.90036212347,2286.99188977319,2284.3709128762,2232.67500992353,1793.55379017991,1980.4187164352,2128.49994075949,1948.0193726265,1671.32831110453,1692.75964842132
33.0855018587361,2463.72116199365,2261.46640213377,2593.58378683885,2286.99188977319,2284.3709128762,2230.44382051797,1793.55379017991,1980.4187164352,2128.49994075949,1948.0193726265,1671.32831110453,1692.75964842132
33.1598513011152,2463.72116199365,2269.85252160332,2593.58378683885,2286.99188977319,2284.3709128762,2221.92174744485,1793.55379017991,1980.4187164352,2128.49994075949,1948.0193726265,1671.32831110453,1692.75964842132
33.2342007434944,2463.72116199365,2269.85252160332,2593.58378683885,2286.99188977319,2284.3709128762,2225.15309395517,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1671.32831110453,1692.75964842132
33.3085501858736,2463.72116199365,2269.85252160332,2596.1158229271,2286.99188977319,2284.3709128762,2223.12394835765,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1671.32831110453,1692.75964842132
33.3828996282528,2463.72116199365,2269.85252160332,2599.47069859763,2283.38957534235,2284.3709128762,2223.12394835765,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1671.32831110453,1692.75964842132
33.457249070632,2463.72116199365,2269.85252160332,2601.84600961532,2283.38957534235,2284.3709128762,2221.18312125298,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1671.32831110453,1692.75964842132
33.5315985130112,2463.72116199365,2270.48619335329,2601.84600961532,2283.38957534235,2284.3709128762,2221.18312125298,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1669.96564946499,1692.75964842132
33.6059479553903,2457.91269766718,2270.48619335329,2608.71694661802,2283.38957534235,2284.3709128762,2221.18312125298,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1669.96564946499,1692.75964842132
33.6802973977695,2457.91269766718,2270.48619335329,2611.69030609855,2283.38957534235,2281.73419493708,2221.18312125298,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1669.96564946499,1692.75964842132
33.7546468401487,2452.53619925256,2270.48619335329,2617.92798398138,2283.38957534235,2281.73419493708,2221.18312125298,1793.55379017991,1980.4187164352,2128.49994075949,1944.02932988883,1669.96564946499,1692.75964842132
33.8289962825279,2452.53619925256,2270.48619335329,2617.92798398138,2283.38957534235,2281.73419493708,2221.18312125298,1809.82245244059,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
33.9033457249071,2453.0355148244,2270.48619335329,2617.92798398138,2283.38957534235,2281.73419493708,2221.18312125298,1808.563176238,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
33.9776951672862,2457.97417406932,2270.48619335329,2617.92798398138,2283.38957534235,2276.52661822626,2221.18312125298,1808.563176238,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
34.0520446096654,2461.70342851453,2270.48619335329,2613.50498035104,2283.38957534235,2276.52661822626,2221.18312125298,1808.563176238,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
34.1263940520446,2456.54942233022,2270.48619335329,2619.56618444139,2283.38957534235,2276.52661822626,2221.18312125298,1808.563176238,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
34.2007434944238,2457.00970659621,2270.48619335329,2619.56618444139,2283.38957534235,2276.52661822626,2221.18312125298,1807.34580774025,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
34.275092936803,2461.41618090077,2265.65923824663,2619.56618444139,2283.38957534235,2276.52661822626,2221.18312125298,1807.34580774025,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
34.3494423791822,2461.41618090077,2265.65923824663,2622.10763853724,2283.38957534235,2274.14559244706,2221.18312125298,1807.34580774025,1980.4187164352,2128.49994075949,1944.02932988883,1656.90403344644,1692.75964842132
34.4237918215613,2461.41618090077,2265.65923824663,2623.29495689426,2283.38957534235,2274.14559244706,2221.18312125298,1807.34580774025,1980.4187164352,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.4981412639405,2465.7670997387,2265.65923824663,2623.29495689426,2283.38957534235,2269.33738979825,2221.18312125298,1807.34580774025,1980.4187164352,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.5724907063197,2460.93291031019,2265.65923824663,2629.06021421799,2283.38957534235,2269.33738979825,2221.18312125298,1807.34580774025,1980.4187164352,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.6468401486989,2461.36154017579,2265.65923824663,2629.06021421799,2283.38957534235,2269.33738979825,2221.18312125298,1806.16784721011,1980.4187164352,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.7211895910781,2464.72096491743,2265.65923824663,2629.06021421799,2283.38957534235,2269.33738979825,2217.34988124665,1806.16784721011,1980.4187164352,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.7955390334572,2465.73887578892,2265.65923824663,2629.06021421799,2283.38957534235,2269.33738979825,2217.34988124665,1806.16784721011,1978.18406696888,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.8698884758364,2466.14821396439,2265.65923824663,2629.06021421799,2283.38957534235,2269.33738979825,2217.34988124665,1805.03252572677,1978.18406696888,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
34.9442379182156,2466.14821396439,2265.65923824663,2631.35026951455,2283.38957534235,2267.16791841444,2217.34988124665,1805.03252572677,1978.18406696888,2126.55555731341,1944.02932988883,1656.90403344644,1692.75964842132
35.0185873605948,2466.14821396439,2271.49645696868,2631.35026951455,2283.38957534235,2267.16791841444,2217.34988124665,1805.03252572677,1978.18406696888,2116.32037478827,1944.02932988883,1656.90403344644,1692.75964842132
35.092936802974,2470.21039994788,2266.89163606234,2631.35026951455,2283.38957534235,2267.16791841444,2217.34988124665,1805.03252572677,1978.18406696888,2116.32037478827,1944.02932988883,1656.90403344644,1692.75964842132
35.1672862453532,2470.60465346379,2266.89163606234,2631.35026951455,2283.38957534235,2267.16791841444,2217.34988124665,1803.93440754252,1978.18406696888,2116.32037478827,1944.02932988883,1656.90403344644,1692.75964842132
35.2416356877323,2465.99897826683,2266.89163606234,2636.97664448822,2283.38957534235,2267.16791841444,2217.34988124665,1803.93440754252,1978.18406696888,2116.32037478827,1944.02932988883,1656.90403344644,1692.75964842132
35.3159851301115,2466.97472686717,2266.89163606234,2636.97664448822,2283.38957534235,2267.16791841444,2217.34988124665,1803.93440754252,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1692.75964842132
35.3903345724907,2466.97472686717,2268.19382331732,2636.97664448822,2283.38957534235,2267.16791841444,2217.34988124665,1800.67139357522,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1692.75964842132
35.4646840148699,2467.21054410918,2268.19382331732,2636.97664448822,2283.38957534235,2267.16791841444,2217.34988124665,1800.67139357522,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.5390334572491,2470.32435676077,2268.19382331732,2636.97664448822,2283.38957534235,2267.16791841444,2213.63633843175,1800.67139357522,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.6133828996283,2470.32435676077,2266.15236885908,2639.14070228816,2283.38957534235,2267.16791841444,2213.63633843175,1800.67139357522,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.6877323420074,2474.11544245126,2266.15236885908,2639.14070228816,2283.38957534235,2262.61841074261,2213.63633843175,1800.67139357522,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.7620817843866,2474.11544245126,2267.43283649939,2639.14070228816,2283.38957534235,2262.61841074261,2213.63633843175,1797.48923566805,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.8364312267658,2477.0310220038,2267.43283649939,2639.14070228816,2283.38957534235,2262.61841074261,2210.12000604204,1797.48923566805,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.910780669145,2477.0310220038,2267.43283649939,2639.14070228816,2283.38957534235,2262.61841074261,2211.82053611813,1793.37350800636,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
35.9851301115242,2477.0310220038,2267.43283649939,2641.2272425711,2283.38957534235,2260.61008582126,2211.82053611813,1793.37350800636,1975.99684075078,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
36.0594795539033,2477.0310220038,2267.43283649939,2641.2272425711,2283.38957534235,2260.61008582126,2215.69016973836,1793.37350800636,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
36.1338289962825,2479.93316291169,2267.43283649939,2641.2272425711,2283.38957534235,2260.61008582126,2212.2937394004,1793.37350800636,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
36.2081784386617,2475.5192249538,2267.43283649939,2646.78191302363,2283.38957534235,2260.61008582126,2212.2937394004,1793.37350800636,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1691.72963898608
36.2825278810409,2475.5192249538,2268.20733156409,2646.78191302363,2283.38957534235,2260.61008582126,2212.2937394004,1793.37350800636,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1688.64688827452
36.3568773234201,2475.5192249538,2269.43969466518,2646.78191302363,2283.38957534235,2260.61008582126,2212.2937394004,1790.42948688377,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1688.64688827452
36.4312267657993,2475.5192249538,2267.47890054653,2648.82301086488,2283.38957534235,2260.61008582126,2212.2937394004,1790.42948688377,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1688.64688827452
36.5055762081784,2475.5192249538,2267.47890054653,2631.93410607442,2306.5053745099,2260.61008582126,2212.2937394004,1790.42948688377,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1688.64688827452
36.5799256505576,2475.85692503563,2267.47890054653,2631.93410607442,2306.5053745099,2260.61008582126,2212.2937394004,1789.50171770597,1968.456427321,2116.32037478827,1944.02932988883,1656.90403344644,1688.64688827452
36.6542750929368,2475.85692503563,2267.47890054653,2631.93410607442,2306.5053745099,2260.61008582126,2218.93967954542,1789.50171770597,1968.456427321,2104.41016499219,1944.02932988883,1656.90403344644,1688.64688827452
36.728624535316,2475.85692503563,2268.68725348117,2631.93410607442,2306.5053745099,2260.61008582126,2218.93967954542,1786.64947430381,1968.456427321,2104.41016499219,1944.02932988883,1656.90403344644,1688.64688827452
36.8029739776952,2479.40554775584,2268.68725348117,2631.93410607442,2306.5053745099,2256.2485164558,2218.93967954542,1786.64947430381,1968.456427321,2104.41016499219,1944.02932988883,1656.90403344644,1688.64688827452
36.8773234200743,2479.40554775584,2278.72930262876,2631.93410607442,2292.46579057372,2256.2485164558,2218.93967954542,1786.64947430381,1968.456427321,2104.41016499219,1944.02932988883,1656.90403344644,1688.64688827452
36.9516728624535,2479.40554775584,2279.42824008496,2631.93410607442,2292.46579057372,2256.2485164558,2218.93967954542,1786.64947430381,1968.456427321,2104.41016499219,1944.02932988883,1656.90403344644,1685.82823868148
37.0260223048327,2479.56384010085,2279.42824008496,2631.93410607442,2292.46579057372,2256.2485164558,2218.93967954542,1786.64947430381,1968.456427321,2104.41016499219,1944.02932988883,1656.51235690801,1685.82823868148
37.1003717472119,2483.33692009266,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2218.93967954542,1786.64947430381,1968.456427321,2104.41016499219,1944.02932988883,1656.51235690801,1685.82823868148
37.1747211895911,2483.33692009266,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2213.02592478103,1786.64947430381,1968.456427321,2104.41016499219,1952.17535922735,1656.51235690801,1685.82823868148
37.2490706319703,2483.33692009266,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2216.65120374213,1786.64947430381,1961.28528414255,2104.41016499219,1952.17535922735,1656.51235690801,1685.82823868148
37.3234200743494,2483.65314230979,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2216.65120374213,1785.78754643939,1961.28528414255,2104.41016499219,1952.17535922735,1656.51235690801,1685.82823868148
37.3977695167286,2484.39400405277,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2216.65120374213,1785.78754643939,1961.28528414255,2104.41016499219,1951.00711605449,1656.51235690801,1685.82823868148
37.4721189591078,2486.0295866656,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2216.65120374213,1785.78754643939,1961.28528414255,2101.04217675267,1951.00711605449,1656.51235690801,1685.82823868148
37.546468401487,2486.0295866656,2275.03851159497,2631.93410607442,2292.46579057372,2256.2485164558,2222.72295316824,1785.78754643939,1961.28528414255,2090.38019309867,1951.00711605449,1656.51235690801,1685.82823868148
37.6208178438662,2486.0295866656,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2232.28601863011,1785.78754643939,1961.28528414255,2090.38019309867,1951.00711605449,1656.51235690801,1685.82823868148
37.6951672862454,2488.99947951066,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2228.97084195454,1785.78754643939,1961.28528414255,2090.38019309867,1951.00711605449,1656.51235690801,1685.82823868148
37.7695167286245,2489.70831485894,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2228.97084195454,1785.78754643939,1961.28528414255,2090.38019309867,1949.87515685638,1656.51235690801,1685.82823868148
37.8438661710037,2492.55419682417,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2225.78948305922,1785.78754643939,1961.28528414255,2090.38019309867,1949.87515685638,1656.51235690801,1685.82823868148
37.9182156133829,2493.29388751247,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2225.78948305922,1785.78754643939,1959.60342640554,2090.38019309867,1949.87515685638,1656.51235690801,1685.82823868148
37.9925650557621,2493.48146596403,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2225.78948305922,1785.78754643939,1959.60342640554,2090.38019309867,1949.87515685638,1656.51235690801,1684.98956120526
38.0669144981413,2493.62492147066,2275.03851159497,2631.93410607442,2292.46579057372,2245.7607507138,2225.78948305922,1785.78754643939,1959.60342640554,2090.38019309867,1949.87515685638,1656.14631708246,1684.98956120526
38.1412639405204,2488.87955395856,2275.03851159497,2638.15370273303,2292.46579057372,2245.7607507138,2225.78948305922,1785.78754643939,1959.60342640554,2090.38019309867,1949.87515685638,1656.14631708246,1684.98956120526
38.2156133828996,2491.63750598784,2275.03851159497,2638.15370273303,2292.46579057372,2245.7607507138,2222.64257622673,1785.78754643939,1959.60342640554,2090.38019309867,1949.87515685638,1656.14631708246,1684.98956120526
38.2899628252788,2493.04982246913,2275.03851159497,2638.15370273303,2292.46579057372,2245.7607507138,2222.64257622673,1785.78754643939,1959.60342640554,2087.4736725666,1949.87515685638,1656.14631708246,1684.98956120526
38.364312267658,2488.55428501069,2275.03851159497,2644.11371276388,2292.46579057372,2245.7607507138,2222.64257622673,1785.78754643939,1959.60342640554,2087.4736725666,1949.87515685638,1656.14631708246,1684.98956120526
38.4386617100372,2488.73861138892,2275.03851159497,2644.11371276388,2292.46579057372,2245.7607507138,2222.64257622673,1785.78754643939,1959.60342640554,2087.4736725666,1949.87515685638,1656.14631708246,1684.13475296433
38.5130111524164,2489.0284910848,2275.03851159497,2644.11371276388,2292.46579057372,2245.7607507138,2222.64257622673,1784.94610246786,1959.60342640554,2087.4736725666,1949.87515685638,1656.14631708246,1684.13475296433
38.5873605947955,2490.41917300417,2275.03851159497,2644.11371276388,2292.46579057372,2245.7607507138,2222.64257622673,1784.94610246786,1959.60342640554,2084.59652650424,1949.87515685638,1656.14631708246,1684.13475296433
38.6617100371747,2490.41917300417,2275.03851159497,2644.11371276388,2292.46579057372,2245.7607507138,2225.66884240872,1784.94610246786,1959.60342640554,2084.59652650424,1945.45094744352,1656.14631708246,1684.13475296433
38.7360594795539,2490.41917300417,2275.03851159497,2645.78498215818,2292.46579057372,2245.7607507138,2224.2048550526,1784.94610246786,1959.60342640554,2084.59652650424,1945.45094744352,1656.14631708246,1684.13475296433
38.8104089219331,2490.70657654999,2275.03851159497,2645.78498215818,2292.46579057372,2245.7607507138,2224.2048550526,1784.11646637156,1959.60342640554,2084.59652650424,1945.45094744352,1656.14631708246,1684.13475296433
38.8847583643123,2493.64890731667,2275.03851159497,2645.78498215818,2292.46579057372,2241.83347251742,2224.2048550526,1784.11646637156,1959.60342640554,2084.59652650424,1945.45094744352,1656.14631708246,1684.13475296433
38.9591078066914,2493.8274056164,2275.03851159497,2645.78498215818,2292.46579057372,2241.83347251742,2224.2048550526,1784.11646637156,1959.60342640554,2084.59652650424,1945.45094744352,1656.14631708246,1683.30839222142
39.0334572490706,2496.65695760047,2275.03851159497,2645.78498215818,2292.46579057372,2238.07682494072,2224.2048550526,1784.11646637156,1959.60342640554,2084.59652650424,1945.45094744352,1656.14631708246,1683.30839222142
39.1078066914498,2496.65695760047,2275.03851159497,2645.78498215818,2292.46579057372,2238.07682494072,2224.2048550526,1798.35146655177,1959.60342640554,2084.59652650424,1945.45094744352,1642.84065538435,1683.30839222142
39.182156133829,2496.78150325473,2275.03851159497,2645.78498215818,2292.46579057372,2238.07682494072,2224.2048550526,1798.35146655177,1959.60342640554,2084.59652650424,1945.45094744352,1642.51977541418,1683.30839222142
39.2565055762082,2492.42129671306,2275.03851159497,2651.64681585495,2292.46579057372,2238.07682494072,2224.2048550526,1798.35146655177,1959.60342640554,2084.59652650424,1945.45094744352,1642.51977541418,1683.30839222142
39.3308550185874,2495.00376389645,2275.03851159497,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2084.59652650424,1945.45094744352,1642.51977541418,1683.30839222142
39.4052044609665,2495.17613177323,2275.03851159497,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2084.59652650424,1945.45094744352,1642.51977541418,1682.49370430341
39.4795539033457,2495.79735196888,2275.03851159497,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2084.59652650424,1944.37010436411,1642.51977541418,1682.49370430341
39.5539033457249,2497.08935400208,2275.03851159497,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2081.8416204412,1944.37010436411,1642.51977541418,1682.49370430341
39.6282527881041,2497.08935400208,2275.59728931198,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2081.8416204412,1944.37010436411,1641.39954069463,1682.49370430341
39.7026022304833,2497.25956725698,2275.59728931198,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2081.8416204412,1944.37010436411,1641.39954069463,1681.69373233084
39.7769516728625,2500.43416708971,2271.29071053266,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2081.8416204412,1944.37010436411,1641.39954069463,1681.69373233084
39.8513011152416,2501.66916766412,2271.29071053266,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1959.60342640554,2079.20992780668,1944.37010436411,1641.39954069463,1681.69373233084
39.9256505576208,2502.32196524689,2271.29071053266,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1957.97390621658,2079.20992780668,1944.37010436411,1641.39954069463,1681.69373233084
40,2502.43862801262,2271.29071053266,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1957.97390621658,2079.20992780668,1944.37010436411,1641.08993849618,1681.69373233084
40.0743494423792,2503.08487422548,2271.29071053266,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1641.08993849618,1681.69373233084
40.1486988847584,2506.09114588201,2267.19675756707,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1641.08993849618,1681.69373233084
40.2230483271375,2506.20446440962,2267.19675756707,2651.64681585495,2292.46579057372,2238.07682494072,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.78688480806,1681.69373233084
40.2973977695167,2508.73946918311,2267.19675756707,2651.64681585495,2292.46579057372,2234.49609552477,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.78688480806,1681.69373233084
40.3717472118959,2511.18389542914,2267.19675756707,2651.64681585495,2292.46579057372,2231.06390581084,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.78688480806,1681.69373233084
40.4460966542751,2511.18389542914,2267.19675756707,2651.71902035095,2292.46579057372,2231.06390581084,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.65038498272,1681.69373233084
40.5204460966543,2511.18389542914,2267.19675756707,2653.42384383191,2292.46579057372,2229.40364360178,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.65038498272,1681.69373233084
40.5947955390335,2511.18389542914,2267.19675756707,2655.08872171804,2292.46579057372,2227.78179749144,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.65038498272,1681.69373233084
40.6691449814126,2506.90329787631,2267.19675756707,2661.11120679619,2292.46579057372,2227.78179749144,2221.1079981445,1798.35146655177,1956.37497587683,2079.20992780668,1944.37010436411,1640.65038498272,1681.69373233084
40.7434944237918,2506.90329787631,2267.19675756707,2661.11120679619,2292.46579057372,2227.78179749144,2226.59785396258,1798.35146655177,1956.37497587683,2069.81125746708,1944.37010436411,1640.65038498272,1681.69373233084
40.817843866171,2506.90329787631,2267.19675756707,2661.11120679619,2292.46579057372,2227.78179749144,2229.57194254162,1798.35146655177,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1681.69373233084
40.8921933085502,2506.90329787631,2267.19675756707,2661.11120679619,2292.46579057372,2227.78179749144,2230.40844816937,1798.35146655177,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1678.18543798401
40.9665427509294,2506.90329787631,2267.19675756707,2661.11120679619,2276.52766078582,2227.78179749144,2240.44355557791,1798.35146655177,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1678.18543798401
41.0408921933086,2507.05789563468,2267.19675756707,2661.11120679619,2276.52766078582,2227.78179749144,2240.44355557791,1798.35146655177,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1677.45623144205
41.1152416356877,2507.32752054138,2267.19675756707,2661.11120679619,2276.52766078582,2227.78179749144,2240.44355557791,1797.55705493223,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1677.45623144205
41.1895910780669,2517.21569655328,2267.19675756707,2647.30583705063,2276.52766078582,2227.78179749144,2240.44355557791,1797.55705493223,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1677.45623144205
41.2639405204461,2526.57728461377,2267.19675756707,2634.34156617813,2276.52766078582,2227.78179749144,2240.44355557791,1797.55705493223,1956.37497587683,2069.81125746708,1940.00610746918,1640.65038498272,1677.45623144205
41.3382899628253,2526.57728461377,2267.19675756707,2634.34156617813,2276.52766078582,2227.78179749144,2243.11832908637,1797.55705493223,1956.37497587683,2069.81125746708,1936.02700813734,1640.65038498272,1677.45623144205
41.4126394052045,2526.57728461377,2267.19675756707,2634.34156617813,2276.52766078582,2227.78179749144,2244.43515222335,1794.24509741645,1956.37497587683,2069.81125746708,1936.02700813734,1640.65038498272,1677.45623144205
41.4869888475836,2527.56700226862,2267.19675756707,2634.34156617813,2276.52766078582,2227.78179749144,2244.43515222335,1794.24509741645,1956.37497587683,2067.68515358555,1936.02700813734,1640.65038498272,1677.45623144205
41.5613382899628,2527.70280008042,2267.19675756707,2634.34156617813,2276.52766078582,2227.78179749144,2244.43515222335,1794.24509741645,1956.37497587683,2067.68515358555,1936.02700813734,1640.65038498272,1676.80988825082
41.635687732342,2527.70280008042,2267.19675756707,2634.34156617813,2280.35980804813,2227.78179749144,2244.43515222335,1794.24509741645,1951.17796789537,2067.68515358555,1936.02700813734,1640.65038498272,1676.80988825082
41.7100371747212,2527.70280008042,2267.19675756707,2634.34156617813,2283.9712999489,2227.78179749144,2244.43515222335,1794.24509741645,1946.31512808656,2067.68515358555,1936.02700813734,1640.65038498272,1676.80988825082
41.7843866171004,2527.70280008042,2267.19675756707,2634.34156617813,2283.9712999489,2227.78179749144,2244.43515222335,1794.24509741645,1946.31512808656,2040.47961451368,1936.02700813734,1678.59703480498,1676.80988825082
41.8587360594796,2529.87465523159,2267.19675756707,2634.34156617813,2283.9712999489,2224.68527124179,2244.43515222335,1794.24509741645,1946.31512808656,2040.47961451368,1936.02700813734,1678.59703480498,1676.80988825082
41.9330855018587,2530.00925123085,2267.19675756707,2634.34156617813,2283.9712999489,2224.68527124179,2244.43515222335,1794.24509741645,1946.31512808656,2040.47961451368,1936.02700813734,1678.59703480498,1676.17432241555
42.0074349442379,2530.00925123085,2267.19675756707,2634.34156617813,2287.40531073379,2224.68527124179,2244.43515222335,1794.24509741645,1941.7286477389,2040.47961451368,1936.02700813734,1678.59703480498,1676.17432241555
42.0817843866171,2530.85320916929,2267.19675756707,2634.34156617813,2287.40531073379,2224.68527124179,2244.43515222335,1794.24509741645,1941.7286477389,2038.70972542604,1936.02700813734,1678.59703480498,1676.17432241555
42.1561338289963,2531.68469772518,2267.19675756707,2634.34156617813,2287.40531073379,2224.68527124179,2244.43515222335,1794.24509741645,1941.7286477389,2036.97776003738,1936.02700813734,1678.59703480498,1676.17432241555
42.2304832713755,2534.48817698786,2267.19675756707,2634.34156617813,2282.20708385812,2224.68527124179,2244.43515222335,1794.24509741645,1941.7286477389,2036.97776003738,1936.02700813734,1678.59703480498,1676.17432241555
42.3048327137546,2537.16900403896,2267.19675756707,2634.34156617813,2277.29896390286,2224.68527124179,2244.43515222335,1794.24509741645,1941.7286477389,2036.97776003738,1936.02700813734,1678.59703480498,1676.17432241555
42.3791821561338,2539.17556102505,2267.19675756707,2634.34156617813,2277.29896390286,2221.76199111224,2244.43515222335,1794.24509741645,1941.7286477389,2036.97776003738,1936.02700813734,1678.59703480498,1676.17432241555
42.453531598513,2539.62101390453,2267.19675756707,2634.34156617813,2277.29896390286,2221.76199111224,2244.43515222335,1794.24509741645,1941.7286477389,2036.97776003738,1935.19397133489,1678.59703480498,1676.17432241555
42.5278810408922,2540.06388134483,2267.19675756707,2634.34156617813,2277.29896390286,2221.76199111224,2244.43515222335,1794.24509741645,1941.7286477389,2036.97776003738,1934.36892550354,1678.59703480498,1676.17432241555
42.6022304832714,2540.53038692378,2267.19675756707,2634.34156617813,2277.29896390286,2221.76199111224,2244.43515222335,1794.24509741645,1940.5756271781,2036.97776003738,1934.36892550354,1678.59703480498,1676.17432241555
42.6765799256506,2540.53038692378,2267.19675756707,2634.34156617813,2255.38898242424,2221.76199111224,2244.43515222335,1794.24509741645,1940.5756271781,2036.97776003738,1956.98384011012,1678.59703480498,1676.17432241555
42.7509293680297,2540.53038692378,2267.19675756707,2634.34156617813,2255.38898242424,2221.76199111224,2248.63447802518,1794.24509741645,1940.5756271781,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
42.8252788104089,2540.74606650706,2267.19675756707,2634.34156617813,2255.38898242424,2221.76199111224,2248.63447802518,1793.59874559409,1940.5756271781,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
42.8996282527881,2540.96120437894,2267.19675756707,2634.34156617813,2255.38898242424,2221.76199111224,2248.63447802518,1792.957044115,1940.5756271781,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
42.9739776951673,2541.42883292263,2267.19675756707,2634.34156617813,2255.38898242424,2221.76199111224,2248.63447802518,1792.957044115,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
43.0483271375465,2543.38872583619,2267.19675756707,2634.34156617813,2255.38898242424,2218.9150101912,2248.63447802518,1792.957044115,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
43.1226765799257,2543.38872583619,2256.28474754452,2634.34156617813,2255.38898242424,2218.9150101912,2257.88592808723,1792.957044115,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
43.1970260223048,2545.66545807675,2256.28474754452,2634.34156617813,2251.28354661094,2218.9150101912,2257.88592808723,1792.957044115,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
43.271375464684,2545.87302268084,2256.28474754452,2634.34156617813,2251.28354661094,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
43.3457249070632,2548.07042768622,2256.28474754452,2634.34156617813,2247.36419579582,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1676.17432241555
43.4200743494424,2548.19058223425,2256.28474754452,2634.34156617813,2247.36419579582,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2030.00952996149,1956.98384011012,1678.59703480498,1675.59799625317
43.4944237918216,2548.19058223425,2257.08236038305,2634.34156617813,2247.36419579582,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2030.00952996149,1956.98384011012,1677.03128211311,1675.59799625317
43.5687732342007,2542.9819365959,2257.08236038305,2642.00836632884,2247.36419579582,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2030.00952996149,1956.98384011012,1677.03128211311,1675.59799625317
43.6431226765799,2545.1368036859,2257.08236038305,2642.00836632884,2243.50502355932,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2030.00952996149,1956.98384011012,1677.03128211311,1675.59799625317
43.7174721189591,2545.84767298653,2257.08236038305,2642.00836632884,2243.50502355932,2218.9150101912,2257.88592808723,1792.33387702999,1939.4341831467,2028.48503939961,1956.98384011012,1677.03128211311,1675.59799625317
43.7918215613383,2545.84767298653,2257.08236038305,2642.00836632884,2232.10154597991,2218.9150101912,2266.30351610311,1792.33387702999,1939.4341831467,2028.48503939961,1956.98384011012,1677.03128211311,1675.59799625317
43.8661710037175,2545.84767298653,2257.08236038305,2642.00836632884,2232.10154597991,2218.9150101912,2266.97449432264,1792.33387702999,1939.4341831467,2028.48503939961,1956.98384011012,1677.03128211311,1672.83405208562
43.9405204460967,2545.84767298653,2257.08236038305,2644.15667396453,2232.10154597991,2218.9150101912,2265.10223936617,1792.33387702999,1939.4341831467,2028.48503939961,1956.98384011012,1677.03128211311,1672.83405208562
44.0148698884758,2547.70856760243,2257.08236038305,2644.15667396453,2232.10154597991,2216.11741903226,2265.10223936617,1792.33387702999,1939.4341831467,2028.48503939961,1956.98384011012,1677.03128211311,1672.83405208562
44.089219330855,2548.18289165866,2257.08236038305,2644.15667396453,2232.10154597991,2216.11741903226,2265.10223936617,1792.33387702999,1939.4341831467,2028.48503939961,1956.0771860743,1677.03128211311,1672.83405208562
44.1635687732342,2549.99011674715,2257.08236038305,2644.15667396453,2232.10154597991,2213.41298902649,2265.10223936617,1792.33387702999,1939.4341831467,2028.48503939961,1956.0771860743,1677.03128211311,1672.83405208562
44.2379182156134,2549.99011674715,2267.71173862749,2644.15667396453,2232.10154597991,2213.41298902649,2256.28660048242,1792.33387702999,1939.4341831467,2028.48503939961,1956.0771860743,1677.03128211311,1672.83405208562
44.3122676579926,2550.10558567491,2267.71173862749,2644.15667396453,2232.10154597991,2213.41298902649,2256.28660048242,1792.33387702999,1939.4341831467,2028.48503939961,1956.0771860743,1677.03128211311,1672.28090959279
44.3866171003717,2550.10558567491,2269.07256466964,2644.15667396453,2232.10154597991,2213.41298902649,2256.28660048242,1789.43782353768,1939.4341831467,2028.48503939961,1956.0771860743,1677.03128211311,1672.28090959279
44.4609665427509,2550.10558567491,2269.07256466964,2644.15667396453,2232.10154597991,2213.41298902649,2258.95346053671,1789.43782353768,1939.4341831467,2028.48503939961,1951.9700237664,1677.03128211311,1672.28090959279
44.5353159851301,2550.10558567491,2269.07256466964,2644.15667396453,2232.10154597991,2213.41298902649,2259.59611357037,1789.43782353768,1939.4341831467,2028.48503939961,1951.9700237664,1675.49934478278,1672.28090959279
44.6096654275093,2550.10558567491,2269.07256466964,2644.15667396453,2232.10154597991,2213.41298902649,2262.14498829377,1789.43782353768,1939.4341831467,2028.48503939961,1948.06686349599,1675.49934478278,1672.28090959279
44.6840148698885,2550.10558567491,2270.4067924218,2644.15667396453,2232.10154597991,2213.41298902649,2262.14498829377,1786.635678226,1939.4341831467,2028.48503939961,1948.06686349599,1675.49934478278,1672.28090959279
44.7583643122677,2550.10558567491,2271.70613155631,2644.15667396453,2232.10154597991,2213.41298902649,2262.14498829377,1783.93097743647,1939.4341831467,2028.48503939961,1948.06686349599,1675.49934478278,1672.28090959279
44.8327137546468,2550.10558567491,2275.8121514398,2644.15667396453,2232.10154597991,2213.41298902649,2262.14498829377,1783.93097743647,1939.4341831467,2022.46682772893,1948.06686349599,1675.49934478278,1672.28090959279
44.907063197026,2550.10558567491,2275.8121514398,2644.15667396453,2232.10154597991,2213.41298902649,2264.52793821051,1783.93097743647,1934.43751645576,2022.46682772893,1948.06686349599,1675.49934478278,1672.28090959279
44.9814126394052,2550.10558567491,2285.45209161373,2644.15667396453,2232.10154597991,2213.41298902649,2256.45600423548,1783.93097743647,1934.43751645576,2022.46682772893,1948.06686349599,1675.49934478278,1672.28090959279
45.0557620817844,2550.54262101062,2285.45209161373,2644.15667396453,2232.10154597991,2213.41298902649,2256.45600423548,1783.93097743647,1933.37866185821,2022.46682772893,1948.06686349599,1675.49934478278,1672.28090959279
45.1301115241636,2551.23480954621,2285.45209161373,2644.15667396453,2232.10154597991,2213.41298902649,2256.45600423548,1783.93097743647,1933.37866185821,2021.04868549711,1948.06686349599,1675.49934478278,1672.28090959279
45.2044609665428,2553.46966843162,2285.45209161373,2644.15667396453,2232.10154597991,2213.41298902649,2253.82228914115,1783.93097743647,1933.37866185821,2021.04868549711,1948.06686349599,1675.49934478278,1672.28090959279
45.2788104089219,2553.46966843162,2285.45209161373,2644.15667396453,2232.10154597991,2213.41298902649,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1948.06686349599,1673.93365105279,1672.28090959279
45.3531598513011,2553.46966843162,2288.02775630853,2644.15667396453,2232.10154597991,2213.41298902649,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1944.67797275868,1673.93365105279,1672.28090959279
45.4275092936803,2556.0342704404,2284.46284875779,2644.15667396453,2232.10154597991,2213.41298902649,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1944.67797275868,1673.93365105279,1672.28090959279
45.5018587360595,2556.0342704404,2285.09083046963,2644.15667396453,2232.10154597991,2213.41298902649,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1944.67797275868,1672.61841631826,1672.28090959279
45.5762081784387,2557.80457869279,2285.09083046963,2644.15667396453,2232.10154597991,2210.75998736756,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1944.67797275868,1672.61841631826,1672.28090959279
45.6505576208178,2560.26051656999,2281.68519496876,2644.15667396453,2232.10154597991,2210.75998736756,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1944.67797275868,1672.61841631826,1672.28090959279
45.724907063197,2562.63194904002,2278.41482207822,2644.15667396453,2232.10154597991,2210.75998736756,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1944.67797275868,1672.61841631826,1672.28090959279
45.7992565055762,2563.04539750615,2278.41482207822,2644.15667396453,2232.10154597991,2210.75998736756,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1943.90968705351,1672.61841631826,1672.28090959279
45.8736059479554,2563.45672061381,2278.41482207822,2644.15667396453,2232.10154597991,2210.75998736756,2254.45589678498,1783.93097743647,1933.37866185821,2021.04868549711,1943.14811429877,1672.61841631826,1672.28090959279
45.9479553903346,2565.49958152772,2278.41482207822,2644.15667396453,2232.10154597991,2210.75998736756,2251.9605457765,1783.93097743647,1933.37866185821,2021.04868549711,1943.14811429877,1672.61841631826,1672.28090959279
46.0223048327138,2565.49958152772,2267.83532731684,2644.15667396453,2245.9021677224,2210.75998736756,2251.9605457765,1783.93097743647,1933.37866185821,2021.04868549711,1943.14811429877,1672.61841631826,1672.28090959279
46.0966542750929,2565.49958152772,2270.40442798634,2644.15667396453,2245.9021677224,2210.75998736756,2251.9605457765,1783.93097743647,1933.37866185821,2021.04868549711,1939.56839747127,1672.61841631826,1672.28090959279
46.1710037174721,2567.14024081747,2270.40442798634,2644.15667396453,2245.9021677224,2208.24727925744,2251.9605457765,1783.93097743647,1933.37866185821,2021.04868549711,1939.56839747127,1672.61841631826,1672.28090959279
46.2453531598513,2567.24681466188,2270.40442798634,2644.15667396453,2245.9021677224,2208.24727925744,2251.9605457765,1783.93097743647,1933.37866185821,2021.04868549711,1939.56839747127,1672.61841631826,1671.77345887177
46.3197026022305,2567.63962881309,2270.40442798634,2644.15667396453,2245.9021677224,2208.24727925744,2251.9605457765,1783.93097743647,1933.37866185821,2021.04868549711,1938.8491579852,1672.61841631826,1671.77345887177
46.3940520446097,2567.63962881309,2270.40442798634,2644.15667396453,2245.9021677224,2208.24727925744,2254.43459078248,1783.93097743647,1933.37866185821,2021.04868549711,1935.11928372492,1672.61841631826,1671.77345887177
46.4684014869888,2567.63962881309,2272.84718662178,2644.15667396453,2245.9021677224,2208.24727925744,2254.43459078248,1783.93097743647,1933.37866185821,2021.04868549711,1931.8175259338,1672.61841631826,1671.77345887177
46.542750929368,2567.63962881309,2272.84718662178,2635.44985439862,2245.9021677224,2208.24727925744,2261.19951645027,1783.93097743647,1933.37866185821,2021.04868549711,1931.8175259338,1672.61841631826,1671.77345887177
46.6171003717472,2567.63962881309,2272.84718662178,2635.44985439862,2234.4077389167,2208.24727925744,2269.10109685287,1783.93097743647,1933.37866185821,2021.04868549711,1931.8175259338,1672.61841631826,1671.77345887177
46.6914498141264,2567.63962881309,2275.24691531589,2635.44985439862,2234.4077389167,2208.24727925744,2269.10109685287,1783.93097743647,1928.75209523734,2021.04868549711,1931.8175259338,1672.61841631826,1671.77345887177
46.7657992565056,2567.63962881309,2284.19584216238,2635.44985439862,2234.4077389167,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1931.8175259338,1672.61841631826,1671.77345887177
46.8401486988848,2567.63962881309,2284.19584216238,2635.44985439862,2235.40733473634,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1931.8175259338,1670.86845910491,1671.77345887177
46.9144981412639,2567.63962881309,2284.19584216238,2635.85629719713,2235.40733473634,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1931.34660901204,1670.86845910491,1671.77345887177
46.9888475836431,2568.0254071592,2284.19584216238,2635.85629719713,2235.40733473634,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1930.67586264429,1670.86845910491,1671.77345887177
47.0631970260223,2568.0254071592,2284.81998300574,2635.85629719713,2235.40733473634,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1930.67586264429,1670.86845910491,1669.29921499397
47.1375464684015,2568.41087601306,2284.81998300574,2635.85629719713,2235.40733473634,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1930.00873453031,1670.86845910491,1669.29921499397
47.2118959107807,2562.67070398849,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1783.93097743647,1928.75209523734,2021.04868549711,1930.00873453031,1670.86845910491,1669.29921499397
47.2862453531598,2562.85500224639,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1783.38523886728,1928.75209523734,2021.04868549711,1930.00873453031,1670.86845910491,1669.29921499397
47.360594795539,2562.85500224639,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1783.38523886728,1950.47263827422,2002.45872290671,1930.00873453031,1670.86845910491,1669.29921499397
47.4349442379182,2563.03967723971,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1782.8420532996,1950.47263827422,2002.45872290671,1930.00873453031,1670.86845910491,1669.29921499397
47.5092936802974,2563.03967723971,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1797.75577987093,1950.47263827422,2002.45872290671,1930.00873453031,1656.618123719,1669.29921499397
47.5836431226766,2563.23910367639,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1797.19952402803,1950.47263827422,2002.45872290671,1930.00873453031,1656.618123719,1669.29921499397
47.6579925650558,2563.82806783076,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1797.19952402803,1950.47263827422,2001.25864408481,1930.00873453031,1656.618123719,1669.29921499397
47.7323420074349,2564.27613266464,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1797.19952402803,1949.42614727135,2001.25864408481,1930.00873453031,1656.618123719,1669.29921499397
47.8066914498141,2564.66911533902,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1797.19952402803,1949.42614727135,2001.25864408481,1929.32053785498,1656.618123719,1669.29921499397
47.8810408921933,2564.86725326602,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2261.08408997703,1796.64905894285,1949.42614727135,2001.25864408481,1929.32053785498,1656.618123719,1669.29921499397
47.9553903345725,2564.86725326602,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2264.24328195886,1796.64905894285,1949.42614727135,1995.7344123538,1929.32053785498,1656.618123719,1669.29921499397
48.0297397769517,2565.31403728595,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2264.24328195886,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1656.618123719,1669.29921499397
48.1040892193309,2565.31403728595,2284.81998300574,2644.57544139023,2235.40733473634,2208.24727925744,2264.87404780546,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1656.618123719,1666.60032171065
48.17843866171,2567.01525103304,2284.81998300574,2644.57544139023,2235.40733473634,2205.63686314023,2264.87404780546,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1656.618123719,1666.60032171065
48.2527881040892,2567.01525103304,2285.37504827062,2644.57544139023,2235.40733473634,2205.63686314023,2264.87404780546,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1655.4550693758,1666.60032171065
48.3271375464684,2575.70094698508,2285.37504827062,2631.41847704518,2235.40733473634,2205.63686314023,2264.87404780546,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1655.4550693758,1666.60032171065
48.4014869888476,2575.70094698508,2285.37504827062,2631.41847704518,2235.40733473634,2196.5115314202,2271.83663339332,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1655.4550693758,1666.60032171065
48.4758364312268,2578.0129906382,2282.3099249557,2631.41847704518,2235.40733473634,2196.5115314202,2271.83663339332,1796.64905894285,1948.39129552856,1995.7344123538,1929.32053785498,1655.4550693758,1666.60032171065
48.5501858736059,2578.53321599656,2282.3099249557,2631.41847704518,2235.40733473634,2196.5115314202,2271.83663339332,1796.64905894285,1948.39129552856,1994.6796154308,1929.32053785498,1655.4550693758,1666.60032171065
48.6245353159851,2580.321135082,2282.3099249557,2631.41847704518,2232.30140178435,2196.5115314202,2271.83663339332,1796.64905894285,1948.39129552856,1994.6796154308,1929.32053785498,1655.4550693758,1666.60032171065
48.6988847583643,2581.77153619595,2282.3099249557,2631.41847704518,2232.30140178435,2194.29094790361,2271.83663339332,1796.64905894285,1948.39129552856,1994.6796154308,1929.32053785498,1655.4550693758,1666.60032171065
48.7732342007435,2581.86908057874,2282.3099249557,2631.41847704518,2232.30140178435,2194.29094790361,2271.83663339332,1796.64905894285,1948.39129552856,1994.6796154308,1929.32053785498,1655.4550693758,1666.15194383922
48.8475836431227,2581.95019013329,2282.3099249557,2631.41847704518,2232.30140178435,2194.29094790361,2271.83663339332,1796.64905894285,1948.39129552856,1994.6796154308,1929.32053785498,1655.23714848404,1666.15194383922
48.9219330855019,2582.3480738576,2282.3099249557,2631.41847704518,2232.30140178435,2194.29094790361,2271.83663339332,1796.64905894285,1947.44424549321,1994.6796154308,1929.32053785498,1655.23714848404,1666.15194383922
48.996282527881,2582.3480738576,2282.3099249557,2631.41847704518,2232.30140178435,2194.29094790361,2272.3662699038,1796.64905894285,1947.44424549321,1994.6796154308,1929.32053785498,1653.99759038811,1666.15194383922
49.0706319702602,2582.3480738576,2282.3099249557,2612.12877001886,2232.30140178435,2194.29094790361,2287.33276573059,1796.64905894285,1947.44424549321,1994.6796154308,1929.32053785498,1653.99759038811,1666.15194383922
49.1449814126394,2582.3480738576,2282.3099249557,2612.12877001886,2232.30140178435,2194.29094790361,2290.03629612572,1796.64905894285,1947.44424549321,1989.9502023534,1929.32053785498,1653.99759038811,1666.15194383922
49.2193308550186,2582.3480738576,2282.3099249557,2612.12877001886,2232.30140178435,2186.36169285866,2296.09354579212,1796.64905894285,1947.44424549321,1989.9502023534,1929.32053785498,1653.99759038811,1666.15194383922
49.2936802973978,2582.70486585378,2282.3099249557,2612.12877001886,2232.30140178435,2186.36169285866,2296.09354579212,1796.64905894285,1947.44424549321,1989.9502023534,1928.67809465396,1653.99759038811,1666.15194383922
49.368029739777,2582.88504673913,2282.3099249557,2612.12877001886,2232.30140178435,2186.36169285866,2296.09354579212,1796.14289959492,1947.44424549321,1989.9502023534,1928.67809465396,1653.99759038811,1666.15194383922
49.4423791821561,2582.88504673913,2282.3099249557,2612.12877001886,2232.30140178435,2178.97855769668,2301.78503014861,1796.14289959492,1947.44424549321,1989.9502023534,1928.67809465396,1653.99759038811,1666.15194383922
49.5167286245353,2584.64406316779,2282.3099249557,2612.12877001886,2229.28101589688,2178.97855769668,2301.78503014861,1796.14289959492,1947.44424549321,1989.9502023534,1928.67809465396,1653.99759038811,1666.15194383922
49.5910780669145,2586.35298839576,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2301.78503014861,1796.14289959492,1947.44424549321,1989.9502023534,1928.67809465396,1653.99759038811,1666.15194383922
49.6654275092937,2586.84016344633,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2301.78503014861,1796.14289959492,1947.44424549321,1988.97635028298,1928.67809465396,1653.99759038811,1666.15194383922
49.7397769516729,2586.84016344633,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2303.56151500708,1796.14289959492,1947.44424549321,1988.97635028298,1925.79895123508,1653.99759038811,1666.15194383922
49.814126394052,2586.84016344633,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2305.28686532341,1796.14289959492,1947.44424549321,1988.97635028298,1923.02157853234,1653.99759038811,1666.15194383922
49.8884758364312,2586.92044104869,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2305.28686532341,1796.14289959492,1947.44424549321,1988.97635028298,1923.02157853234,1653.78532499879,1666.15194383922
49.9628252788104,2587.40890982538,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2305.28686532341,1796.14289959492,1947.44424549321,1988.00896679608,1923.02157853234,1653.78532499879,1666.15194383922
50.0371747211896,2589.8455709256,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2302.56039973586,1796.14289959492,1947.44424549321,1988.00896679608,1923.02157853234,1653.78532499879,1666.15194383922
50.1115241635688,2592.20493658568,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2299.92506009074,1796.14289959492,1947.44424549321,1988.00896679608,1923.02157853234,1653.78532499879,1666.15194383922
50.185873605948,2592.37433098526,2282.3099249557,2612.12877001886,2226.36940731352,2178.97855769668,2299.92506009074,1795.65987675509,1947.44424549321,1988.00896679608,1923.02157853234,1653.78532499879,1666.15194383922
50.2602230483271,2599.83218748378,2282.3099249557,2600.52697782968,2226.36940731352,2178.97855769668,2299.92506009074,1795.65987675509,1947.44424549321,1988.00896679608,1923.02157853234,1653.78532499879,1666.15194383922
50.3345724907063,2599.83218748378,2282.3099249557,2600.52697782968,2226.36940731352,2178.97855769668,2300.83591992125,1793.25324902028,1947.44424549321,1988.00896679608,1923.02157853234,1653.78532499879,1666.15194383922
50.4089219330855,2600.14001993145,2282.3099249557,2600.52697782968,2226.36940731352,2178.97855769668,2300.83591992125,1793.25324902028,1947.44424549321,1988.00896679608,1922.46093928961,1653.78532499879,1666.15194383922
50.4832713754647,2600.14001993145,2282.3099249557,2600.52697782968,2226.36940731352,2178.97855769668,2301.3272306157,1793.25324902028,1947.44424549321,1988.00896679608,1922.46093928961,1653.78532499879,1663.97528284483
50.5576208178439,2600.50084224632,2282.3099249557,2600.52697782968,2226.36940731352,2178.97855769668,2301.3272306157,1793.25324902028,1946.56974955642,1988.00896679608,1922.46093928961,1653.78532499879,1663.97528284483
50.631970260223,2600.50084224632,2282.3099249557,2600.52697782968,2226.36940731352,2178.97855769668,2303.03121416424,1793.25324902028,1946.56974955642,1988.00896679608,1919.68909822911,1653.78532499879,1663.97528284483
50.7063197026022,2600.50084224632,2282.3099249557,2582.05934729927,2226.36940731352,2178.97855769668,2316.49430708861,1793.25324902028,1946.56974955642,1988.00896679608,1919.68909822911,1653.78532499879,1663.97528284483
50.7806691449814,2600.50084224632,2282.3099249557,2582.05934729927,2226.36940731352,2178.97855769668,2316.88229211057,1793.25324902028,1946.56974955642,1988.00896679608,1919.68909822911,1652.80552314392,1663.97528284483
50.8550185873606,2600.86365303188,2282.3099249557,2582.05934729927,2226.36940731352,2178.97855769668,2316.88229211057,1793.25324902028,1945.70023790202,1988.00896679608,1919.68909822911,1652.80552314392,1663.97528284483
50.9293680297398,2601.3119402542,2282.3099249557,2582.05934729927,2226.36940731352,2178.97855769668,2316.88229211057,1793.25324902028,1945.70023790202,1987.10273740187,1919.68909822911,1652.80552314392,1663.97528284483
51.003717472119,2601.3119402542,2282.3099249557,2582.05934729927,2226.36940731352,2178.97855769668,2319.03940136156,1793.25324902028,1945.70023790202,1983.1252789406,1919.68909822911,1652.80552314392,1663.97528284483
51.0780669144981,2601.3119402542,2284.65387889951,2582.05934729927,2226.36940731352,2178.97855769668,2319.03940136156,1793.25324902028,1945.70023790202,1983.1252789406,1916.6816184609,1652.80552314392,1663.97528284483
51.1524163568773,2601.3119402542,2285.88600978978,2582.05934729927,2226.36940731352,2178.97855769668,2319.03940136156,1790.66273113101,1945.70023790202,1983.1252789406,1916.6816184609,1652.80552314392,1663.97528284483
51.2267657992565,2601.47127678681,2285.88600978978,2582.05934729927,2226.36940731352,2178.97855769668,2319.03940136156,1790.22328505326,1945.70023790202,1983.1252789406,1916.6816184609,1652.80552314392,1663.97528284483
51.3011152416357,2601.47127678681,2288.98427098469,2582.05934729927,2226.36940731352,2178.97855769668,2319.03940136156,1790.22328505326,1945.70023790202,1978.6482215921,1916.6816184609,1652.80552314392,1663.97528284483
51.3754646840149,2601.47127678681,2291.93745337713,2582.05934729927,2226.36940731352,2178.97855769668,2319.03940136156,1790.22328505326,1945.70023790202,1974.41247023872,1916.6816184609,1652.80552314392,1663.97528284483
51.4498141263941,2603.054259624,2291.93745337713,2582.05934729927,2223.63622323107,2178.97855769668,2319.03940136156,1790.22328505326,1945.70023790202,1974.41247023872,1916.6816184609,1652.80552314392,1663.97528284483
51.5241635687732,2603.14383561681,2291.93745337713,2582.05934729927,2223.63622323107,2178.97855769668,2319.03940136156,1790.22328505326,1945.70023790202,1974.41247023872,1916.6816184609,1652.80552314392,1663.57936690909
51.5985130111524,2603.50757460112,2291.93745337713,2582.05934729927,2223.63622323107,2178.97855769668,2319.03940136156,1790.22328505326,1944.83912796004,1974.41247023872,1916.6816184609,1652.80552314392,1663.57936690909
51.6728624535316,2603.59711691895,2291.93745337713,2582.05934729927,2223.63622323107,2178.97855769668,2319.03940136156,1790.22328505326,1944.83912796004,1974.41247023872,1916.6816184609,1652.80552314392,1663.18564191269
51.7472118959108,2603.59711691895,2291.93745337713,2582.05934729927,2223.63622323107,2178.97855769668,2319.43129389937,1790.22328505326,1944.83912796004,1974.41247023872,1916.6816184609,1651.83411760581,1663.18564191269
51.82156133829,2604.83293935961,2291.93745337713,2582.05934729927,2223.63622323107,2177.12107311658,2319.43129389937,1790.22328505326,1944.83912796004,1974.41247023872,1916.6816184609,1651.83411760581,1663.18564191269
51.8959107806691,2606.9785968384,2289.02846279763,2582.05934729927,2223.63622323107,2177.12107311658,2319.43129389937,1790.22328505326,1944.83912796004,1974.41247023872,1916.6816184609,1651.83411760581,1663.18564191269
51.9702602230483,2606.9785968384,2289.02846279763,2582.05934729927,2223.63622323107,2177.12107311658,2320.97460165416,1790.22328505326,1944.83912796004,1974.41247023872,1914.21216278522,1651.83411760581,1663.18564191269
52.0446096654275,2606.9785968384,2289.02846279763,2582.05934729927,2223.63622323107,2177.12107311658,2322.47926152236,1790.22328505326,1944.83912796004,1974.41247023872,1911.81875090258,1651.83411760581,1663.18564191269
52.1189591078067,2606.9785968384,2291.15289127167,2582.05934729927,2223.63622323107,2177.12107311658,2322.47926152236,1790.22328505326,1944.83912796004,1974.41247023872,1909.06010762463,1651.83411760581,1663.18564191269
52.1933085501859,2606.9785968384,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2322.47926152236,1790.22328505326,1944.83912796004,1974.41247023872,1909.06010762463,1650.69711622727,1663.18564191269
52.2676579925651,2606.9785968384,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2323.93536513188,1790.22328505326,1944.83912796004,1974.41247023872,1906.79343401056,1650.69711622727,1663.18564191269
52.3420074349442,2606.9785968384,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2325.35751603573,1790.22328505326,1944.83912796004,1974.41247023872,1904.5912995339,1650.69711622727,1663.18564191269
52.4163568773234,2606.9785968384,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2327.07654839456,1790.22328505326,1941.03728979525,1974.41247023872,1904.5912995339,1650.69711622727,1663.18564191269
52.4907063197026,2606.9785968384,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2327.07654839456,1790.22328505326,1921.89616775554,1974.41247023872,1918.07633284139,1650.69711622727,1663.18564191269
52.5650557620818,2609.5335340146,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2324.32388776173,1790.22328505326,1921.89616775554,1974.41247023872,1918.07633284139,1650.69711622727,1663.18564191269
52.639405204461,2609.83220701839,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2324.32388776173,1790.22328505326,1921.89616775554,1974.41247023872,1917.5941611441,1650.69711622727,1663.18564191269
52.7137546468402,2610.13009957962,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2324.32388776173,1790.22328505326,1921.89616775554,1974.41247023872,1917.11435489862,1650.69711622727,1663.18564191269
52.7881040892193,2610.20227117854,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2324.32388776173,1790.22328505326,1921.89616775554,1974.41247023872,1917.11435489862,1650.50898488098,1663.18564191269
52.8624535315985,2610.27455424524,2291.70195884912,2582.05934729927,2223.63622323107,2177.12107311658,2324.32388776173,1790.22328505326,1921.89616775554,1974.41247023872,1917.11435489862,1650.3210794571,1663.18564191269
52.9368029739777,2617.10935182431,2291.70195884912,2571.6245957705,2223.63622323107,2177.12107311658,2324.32388776173,1790.22328505326,1921.89616775554,1974.41247023872,1917.11435489862,1650.3210794571,1663.18564191269
53.0111524163569,2617.10935182431,2291.70195884912,2553.76090948706,2223.63622323107,2177.12107311658,2337.31694189444,1790.22328505326,1921.89616775554,1974.41247023872,1917.11435489862,1650.3210794571,1663.18564191269
53.0855018587361,2618.56824986173,2291.70195884912,2553.76090948706,2221.07294546044,2177.12107311658,2337.31694189444,1790.22328505326,1921.89616775554,1974.41247023872,1917.11435489862,1650.3210794571,1663.18564191269
53.1598513011152,2618.56824986173,2293.89838014165,2553.76090948706,2221.07294546044,2177.12107311658,2337.31694189444,1790.22328505326,1921.89616775554,1974.41247023872,1914.45007946842,1650.3210794571,1663.18564191269
53.2342007434944,2618.56824986173,2296.02361893643,2553.76090948706,2221.07294546044,2177.12107311658,2337.31694189444,1790.22328505326,1921.89616775554,1974.41247023872,1911.8793826283,1650.3210794571,1663.18564191269
53.3085501858736,2618.56824986173,2296.64381078316,2553.76090948706,2221.07294546044,2177.12107311658,2337.31694189444,1790.22328505326,1921.89616775554,1974.41247023872,1911.8793826283,1650.3210794571,1660.95271316852
53.3828996282528,2618.84302248282,2296.64381078316,2553.76090948706,2221.07294546044,2177.12107311658,2337.31694189444,1790.22328505326,1921.89616775554,1974.41247023872,1911.44142949295,1650.3210794571,1660.95271316852
53.457249070632,2618.84302248282,2296.64381078316,2553.76090948706,2221.07294546044,2177.12107311658,2338.67927107721,1790.22328505326,1921.89616775554,1974.41247023872,1909.43705709295,1650.3210794571,1660.95271316852
53.5315985130112,2618.99256251228,2296.64381078316,2553.76090948706,2221.07294546044,2177.12107311658,2338.67927107721,1789.81230252935,1921.89616775554,1974.41247023872,1909.43705709295,1650.3210794571,1660.95271316852
53.6059479553903,2621.08508895265,2293.85090249054,2553.76090948706,2221.07294546044,2177.12107311658,2338.67927107721,1789.81230252935,1921.89616775554,1974.41247023872,1909.43705709295,1650.3210794571,1660.95271316852
53.6802973977695,2621.08508895265,2293.85090249054,2553.76090948706,2206.59417554378,2189.96583448742,2338.67927107721,1789.81230252935,1921.89616775554,1974.41247023872,1909.43705709295,1650.3210794571,1660.95271316852
53.7546468401487,2621.23235114716,2293.85090249054,2553.76090948706,2206.59417554378,2189.96583448742,2338.67927107721,1789.40700601528,1921.89616775554,1974.41247023872,1909.43705709295,1650.3210794571,1660.95271316852
53.8289962825279,2621.23235114716,2293.85090249054,2536.53975037204,2206.59417554378,2189.96583448742,2351.30771352888,1789.40700601528,1921.89616775554,1974.41247023872,1909.43705709295,1650.3210794571,1660.95271316852
53.9033457249071,2621.23235114716,2293.85090249054,2536.53975037204,2206.59417554378,2189.96583448742,2352.55605795741,1789.40700601528,1921.89616775554,1974.41247023872,1907.58864748455,1650.3210794571,1660.95271316852
53.9776951672862,2621.3805497988,2293.85090249054,2536.53975037204,2206.59417554378,2189.96583448742,2352.55605795741,1789.0023620054,1921.89616775554,1974.41247023872,1907.58864748455,1650.3210794571,1660.95271316852
54.0520446096654,2621.3805497988,2293.85090249054,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1789.0023620054,1921.89616775554,1974.41247023872,1905.77983549494,1650.3210794571,1660.95271316852
54.1263940520446,2621.3805497988,2296.07995408323,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1789.0023620054,1918.05467177262,1974.41247023872,1905.77983549494,1650.3210794571,1660.95271316852
54.2007434944238,2621.52967624346,2296.07995408323,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1788.59836996608,1918.05467177262,1974.41247023872,1905.77983549494,1650.3210794571,1660.95271316852
54.275092936803,2621.52967624346,2298.89691131929,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1788.59836996608,1918.05467177262,1970.21331179459,1905.77983549494,1650.3210794571,1660.95271316852
54.3494423791822,2623.66216274753,2296.1441392006,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1788.59836996608,1918.05467177262,1970.21331179459,1905.77983549494,1650.3210794571,1660.95271316852
54.4237918215613,2623.66216274753,2298.24658092834,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1788.59836996608,1914.38016064333,1970.21331179459,1905.77983549494,1650.3210794571,1660.95271316852
54.4981412639405,2623.80943902117,2298.24658092834,2536.53975037204,2206.59417554378,2189.96583448742,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1650.3210794571,1660.95271316852
54.5724907063197,2625.03301542885,2298.24658092834,2536.53975037204,2206.59417554378,2188.12354200499,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1650.3210794571,1660.95271316852
54.6468401486989,2625.03301542885,2298.24658092834,2536.53975037204,2206.59417554378,2189.22803482166,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1660.95271316852
54.7211895910781,2626.24418698418,2298.24658092834,2536.53975037204,2206.59417554378,2187.4244584374,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1660.95271316852
54.7955390334572,2626.24418698418,2298.84340100473,2536.53975037204,2206.59417554378,2187.4244584374,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1658.77481754377
54.8698884758364,2626.24418698418,2286.71998840241,2536.53975037204,2222.7664159526,2187.4244584374,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1658.77481754377
54.9442379182156,2626.24418698418,2286.71998840241,2536.53975037204,2222.7664159526,2188.63664555666,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1654.89361802094
55.0185873605948,2628.21900233063,2284.2581141047,2536.53975037204,2222.7664159526,2188.63664555666,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1654.89361802094
55.092936802974,2628.21900233063,2273.26376012371,2536.53975037204,2237.44541170225,2188.63664555666,2353.78398522135,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1654.89361802094
55.1672862453532,2630.90168154015,2273.26376012371,2536.53975037204,2237.44541170225,2188.63664555666,2350.83647598824,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1654.89361802094
55.2416356877323,2632.68481529884,2271.07914225476,2536.53975037204,2237.44541170225,2188.63664555666,2350.83647598824,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1654.89361802094
55.3159851301115,2634.42321096408,2268.95494658457,2536.53975037204,2237.44541170225,2188.63664555666,2350.83647598824,1788.19953206891,1914.38016064333,1970.21331179459,1905.77983549494,1648.28110710782,1654.89361802094
55.3903345724907,2634.66950319901,2268.95494658457,2536.53975037204,2237.44541170225,2188.63664555666,2350.83647598824,1788.19953206891,1914.38016064333,1970.21331179459,1905.38298959286,1648.28110710782,1654.89361802094
55.4646840148699,2634.74364963874,2268.95494658457,2536.53975037204,2237.44541170225,2188.63664555666,2350.83647598824,1788.19953206891,1914.38016064333,1970.21331179459,1905.38298959286,1648.28110710782,1654.58374774655
55.5390334572491,2636.44526259559,2266.87997621962,2536.53975037204,2237.44541170225,2188.63664555666,2350.83647598824,1788.19953206891,1914.38016064333,1970.21331179459,1905.38298959286,1648.28110710782,1654.58374774655
55.6133828996283,2636.44526259559,2266.87997621962,2536.53975037204,2240.92964766291,2188.63664555666,2350.83647598824,1788.19953206891,1909.53993606072,1970.21331179459,1905.38298959286,1648.28110710782,1654.58374774655
55.6877323420074,2637.91540914057,2266.87997621962,2536.53975037204,2238.55639855417,2188.63664555666,2350.83647598824,1788.19953206891,1909.53993606072,1970.21331179459,1905.38298959286,1648.28110710782,1654.58374774655
55.7620817843866,2637.91540914057,2266.87997621962,2536.53975037204,2238.55639855417,2188.63664555666,2352.63514752844,1788.19953206891,1909.53993606072,1967.03489271038,1905.38298959286,1648.28110710782,1654.58374774655
55.8364312267658,2637.91540914057,2266.87997621962,2536.53975037204,2238.55639855417,2188.63664555666,2352.96830666678,1788.19953206891,1909.53993606072,1967.03489271038,1905.38298959286,1647.46246050202,1654.58374774655
55.910780669145,2637.91540914057,2266.87997621962,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1788.19953206891,1909.53993606072,1967.03489271038,1905.38298959286,1647.46246050202,1653.07412534904
55.9851301115242,2637.91540914057,2267.51413160205,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1788.19953206891,1909.53993606072,1967.03489271038,1905.38298959286,1647.46246050202,1650.68523392482
56.0594795539033,2638.05145468469,2267.51413160205,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1787.82457164332,1909.53993606072,1967.03489271038,1905.38298959286,1647.46246050202,1650.68523392482
56.1338289962825,2638.05145468469,2268.09121721865,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1787.82457164332,1909.53993606072,1967.03489271038,1905.38298959286,1646.15541540674,1650.68523392482
56.2081784386617,2638.05145468469,2268.09121721865,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1801.50202933962,1909.53993606072,1967.03489271038,1905.38298959286,1633.02925989901,1650.68523392482
56.2825278810409,2638.05145468469,2270.29356845762,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1801.50202933962,1905.52045278512,1967.03489271038,1905.38298959286,1633.02925989901,1650.68523392482
56.3568773234201,2638.05145468469,2270.90577572691,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1801.50202933962,1905.52045278512,1967.03489271038,1905.38298959286,1633.02925989901,1648.39348655138
56.4312267657993,2638.05145468469,2273.00253309731,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1801.50202933962,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.39348655138
56.5055762081784,2638.19946870518,2273.00253309731,2536.53975037204,2238.55639855417,2188.63664555666,2353.34084245424,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.39348655138
56.5799256505576,2640.78847876949,2273.00253309731,2536.53975037204,2238.55639855417,2188.63664555666,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.39348655138
56.6542750929368,2641.91089276665,2273.00253309731,2536.53975037204,2238.55639855417,2186.91270960046,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.39348655138
56.728624535316,2641.98068011492,2273.00253309731,2536.53975037204,2238.55639855417,2186.91270960046,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.11355852737
56.8029739776952,2641.98068011492,2261.65962052168,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.11355852737
56.8773234200743,2643.5987715863,2259.76298976506,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.11355852737
56.9516728624535,2645.18043499184,2257.91258514896,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.51980622619,1633.02925989901,1648.11355852737
57.0260223048327,2645.4129269346,2257.91258514896,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.14251224552,1633.02925989901,1648.11355852737
57.1003717472119,2645.4129269346,2258.45310943578,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1902.14251224552,1631.8112068863,1648.11355852737
57.1747211895911,2645.4129269346,2260.58377311746,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1801.11710188893,1905.52045278512,1967.03489271038,1899.13759882521,1631.8112068863,1648.11355852737
57.2490706319703,2645.55434410712,2260.58377311746,2536.53975037204,2238.55639855417,2201.4491832778,2350.45054602312,1800.74526593851,1905.52045278512,1967.03489271038,1899.13759882521,1631.8112068863,1648.11355852737
57.3234200743494,2645.55434410712,2260.58377311746,2536.53975037204,2241.93591134434,2201.4491832778,2350.45054602312,1800.74526593851,1900.95146300022,1967.03489271038,1899.13759882521,1631.8112068863,1648.11355852737
57.3977695167286,2645.55434410712,2262.65638800686,2536.53975037204,2241.93591134434,2201.4491832778,2350.45054602312,1800.74526593851,1900.95146300022,1967.03489271038,1896.2345199347,1631.8112068863,1648.11355852737
57.4721189591078,2645.55434410712,2264.7232779695,2536.53975037204,2241.93591134434,2201.4491832778,2350.45054602312,1800.74526593851,1897.07139713443,1967.03489271038,1896.2345199347,1631.8112068863,1648.11355852737
57.546468401487,2645.55434410712,2264.7232779695,2536.53975037204,2241.93591134434,2201.4491832778,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1896.2345199347,1620.37116908499,1648.11355852737
57.6208178438662,2645.55434410712,2264.7232779695,2536.53975037204,2241.93591134434,2202.54669084582,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1896.2345199347,1620.37116908499,1644.82073322661
57.6951672862454,2646.75537776956,2264.7232779695,2536.53975037204,2241.93591134434,2200.76738463122,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1896.2345199347,1620.37116908499,1644.82073322661
57.7695167286245,2646.98317681854,2264.7232779695,2536.53975037204,2241.93591134434,2200.76738463122,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1895.87738329211,1620.37116908499,1644.82073322661
57.8438661710037,2646.98317681854,2264.7232779695,2536.53975037204,2242.70933029109,2200.76738463122,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1895.87738329211,1619.16216555265,1644.82073322661
57.9182156133829,2647.03500121821,2264.7232779695,2536.53975037204,2242.70933029109,2200.76738463122,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1895.87738329211,1619.04091690838,1644.82073322661
57.9925650557621,2647.03500121821,2264.7232779695,2536.53975037204,2242.70933029109,2204.32898318868,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1892.05196438157,1619.04091690838,1644.82073322661
58.0669144981413,2647.03500121821,2264.7232779695,2536.53975037204,2242.70933029109,2205.18700893771,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1892.05196438157,1617.58117276547,1644.82073322661
58.1412639405204,2647.03500121821,2264.7232779695,2536.53975037204,2245.79947931327,2205.18700893771,2350.45054602312,1812.65768212833,1897.07139713443,1967.03489271038,1889.02068091614,1617.58117276547,1644.82073322661
58.2156133828996,2647.38250816973,2264.7232779695,2536.53975037204,2245.79947931327,2205.18700893771,2350.45054602312,1812.65768212833,1897.07139713443,1966.36830709439,1889.02068091614,1617.58117276547,1644.82073322661
58.2899628252788,2647.62043490878,2264.7232779695,2536.53975037204,2245.79947931327,2205.18700893771,2350.45054602312,1812.65768212833,1896.58971762447,1966.36830709439,1889.02068091614,1617.58117276547,1644.82073322661
58.364312267658,2649.27381725703,2262.84533128843,2536.53975037204,2245.79947931327,2205.18700893771,2350.45054602312,1812.65768212833,1896.58971762447,1966.36830709439,1889.02068091614,1617.58117276547,1644.82073322661
58.4386617100372,2649.27381725703,2262.84533128843,2536.53975037204,2248.90622089393,2205.18700893771,2350.45054602312,1812.65768212833,1892.45642007169,1966.36830709439,1889.02068091614,1617.58117276547,1644.82073322661
58.5130111524164,2649.27381725703,2262.84533128843,2536.53975037204,2248.90622089393,2206.23310671036,2350.45054602312,1812.65768212833,1892.45642007169,1966.36830709439,1889.02068091614,1617.58117276547,1641.6815193741
58.5873605947955,2649.27381725703,2264.21396597448,2536.53975037204,2248.90622089393,2206.23310671036,2350.45054602312,1809.52811589016,1892.45642007169,1966.36830709439,1889.02068091614,1617.58117276547,1641.6815193741
58.6617100371747,2649.27381725703,2264.21396597448,2536.53975037204,2251.87757543763,2206.23310671036,2350.45054602312,1809.52811589016,1888.52930559503,1966.36830709439,1889.02068091614,1617.58117276547,1641.6815193741
58.7360594795539,2649.27381725703,2267.0727445822,2536.53975037204,2251.87757543763,2206.23310671036,2350.45054602312,1809.52811589016,1888.52930559503,1961.40211305338,1889.02068091614,1617.58117276547,1641.6815193741
58.8104089219331,2649.27381725703,2268.98524173284,2536.53975037204,2251.87757543763,2206.23310671036,2350.45054602312,1809.52811589016,1888.52930559503,1961.40211305338,1886.37968319978,1617.58117276547,1641.6815193741
58.8847583643123,2649.27381725703,2270.2653978503,2536.53975037204,2251.87757543763,2206.23310671036,2350.45054602312,1806.58132935936,1888.52930559503,1961.40211305338,1886.37968319978,1617.58117276547,1641.6815193741
58.9591078066914,2649.27381725703,2272.13505505223,2536.53975037204,2251.87757543763,2206.23310671036,2350.45054602312,1806.58132935936,1885.1280612232,1961.40211305338,1886.37968319978,1617.58117276547,1641.6815193741
59.0334572490706,2649.27381725703,2282.80698794363,2536.53975037204,2251.87757543763,2206.23310671036,2339.10478536458,1806.58132935936,1885.1280612232,1961.40211305338,1886.37968319978,1617.58117276547,1641.6815193741
59.1078066914498,2649.27381725703,2282.80698794363,2536.53975037204,2251.87757543763,2207.09348183659,2339.10478536458,1806.58132935936,1885.1280612232,1961.40211305338,1886.37968319978,1616.13328744611,1641.6815193741
59.182156133829,2649.27381725703,2283.22205724757,2536.53975037204,2251.87757543763,2207.09348183659,2339.10478536458,1806.58132935936,1885.1280612232,1961.40211305338,1886.37968319978,1615.20637493134,1641.6815193741
59.2565055762082,2649.27381725703,2284.36165240914,2536.53975037204,2251.87757543763,2207.09348183659,2339.10478536458,1803.91474994884,1885.1280612232,1961.40211305338,1886.37968319978,1615.20637493134,1641.6815193741
59.3308550185874,2649.27381725703,2284.77011662035,2536.53975037204,2251.87757543763,2207.09348183659,2339.10478536458,1803.91474994884,1885.1280612232,1961.40211305338,1886.37968319978,1614.29459782859,1641.6815193741
59.4052044609665,2649.27381725703,2284.77011662035,2536.53975037204,2251.87757543763,2207.93746610935,2339.10478536458,1803.91474994884,1885.1280612232,1961.40211305338,1886.37968319978,1612.89698139542,1641.6815193741
59.4795539033457,2649.27381725703,2275.41601054999,2536.53975037204,2265.41794216812,2207.93746610935,2339.10478536458,1803.91474994884,1885.1280612232,1961.40211305338,1886.37968319978,1612.89698139542,1641.6815193741
59.5539033457249,2649.27381725703,2275.41601054999,2536.53975037204,2267.99368245039,2207.93746610935,2339.10478536458,1803.91474994884,1881.70106268551,1961.40211305338,1886.37968319978,1612.89698139542,1641.6815193741
59.6282527881041,2649.27381725703,2275.41601054999,2536.53975037204,2270.51019623605,2207.93746610935,2339.10478536458,1803.91474994884,1881.70106268551,1961.40211305338,1883.7501490161,1612.89698139542,1641.6815193741
59.7026022304833,2649.27381725703,2276.56865081083,2536.53975037204,2270.51019623605,2207.93746610935,2339.10478536458,1801.19538009421,1881.70106268551,1961.40211305338,1883.7501490161,1612.89698139542,1641.6815193741
59.7769516728625,2649.34449272307,2276.56865081083,2536.53975037204,2270.51019623605,2207.93746610935,2339.10478536458,1801.19538009421,1881.70106268551,1961.40211305338,1883.7501490161,1612.89698139542,1641.42401790737
59.8513011152416,2651.83525429978,2276.56865081083,2536.53975037204,2270.51019623605,2207.93746610935,2336.32267795255,1801.19538009421,1881.70106268551,1961.40211305338,1883.7501490161,1612.89698139542,1641.42401790737
59.9256505576208,2653.62744340968,2274.72895785105,2536.53975037204,2270.51019623605,2207.93746610935,2336.32267795255,1801.19538009421,1881.70106268551,1961.40211305338,1883.7501490161,1612.89698139542,1641.42401790737
60,2653.84420792533,2274.72895785105,2536.53975037204,2270.51019623605,2207.93746610935,2336.32267795255,1801.19538009421,1881.70106268551,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.0743494423792,2654.06318494344,2274.72895785105,2536.53975037204,2270.51019623605,2207.93746610935,2336.32267795255,1801.19538009421,1881.29106214524,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.1486988847584,2659.66966207424,2274.72895785105,2527.79792403495,2270.51019623605,2207.93746610935,2336.32267795255,1801.19538009421,1881.29106214524,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.2230483271375,2659.66966207424,2276.43451937633,2527.79792403495,2270.51019623605,2207.93746610935,2336.32267795255,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.2973977695167,2659.66966207424,2276.43451937633,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.3717472118959,2661.36707335177,2274.66826944832,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.4460966542751,2663.02562060963,2272.94327443686,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.5204460966543,2664.6471091921,2271.25759817999,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.89698139542,1641.42401790737
60.5947955390335,2664.6471091921,2271.78474974442,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.89698139542,1639.29320305421
60.6691449814126,2664.69403787798,2271.78474974442,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.78968194061,1639.29320305421
60.7434944237918,2666.29346106977,2270.12716494755,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.78968194061,1639.29320305421
60.817843866171,2667.85850056301,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2342.42497301856,1801.19538009421,1878.12004971794,1961.40211305338,1883.42946276129,1612.78968194061,1639.29320305421
60.8921933085502,2667.85850056301,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2324.82514319397,1801.19538009421,1878.12004971794,1961.40211305338,1907.53572221224,1612.78968194061,1639.29320305421
60.9665427509294,2668.08154310478,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2324.82514319397,1801.19538009421,1878.12004971794,1961.40211305338,1907.192982034,1612.78968194061,1639.29320305421
61.0408921933086,2668.21192609047,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2324.82514319397,1800.88346154308,1878.12004971794,1961.40211305338,1907.192982034,1612.78968194061,1639.29320305421
61.1152416356877,2668.51859284864,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2324.82514319397,1800.88346154308,1878.12004971794,1960.80778666388,1907.192982034,1612.78968194061,1639.29320305421
61.1895910780669,2668.57949451096,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2324.82514319397,1800.88346154308,1878.12004971794,1960.80778666388,1907.192982034,1612.78968194061,1639.06602923008
61.2639405204461,2670.6304758021,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2322.44517700628,1800.88346154308,1878.12004971794,1960.80778666388,1907.192982034,1612.78968194061,1639.06602923008
61.3382899628253,2672.62295522147,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2320.13788718633,1800.88346154308,1878.12004971794,1960.80778666388,1907.192982034,1612.78968194061,1639.06602923008
61.4126394052045,2672.74903821579,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2320.13788718633,1800.57880212108,1878.12004971794,1960.80778666388,1907.192982034,1612.78968194061,1639.06602923008
61.4869888475836,2674.68983609526,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2317.89438600547,1800.57880212108,1878.12004971794,1960.80778666388,1907.192982034,1612.78968194061,1639.06602923008
61.5613382899628,2674.73369387648,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2317.89438600547,1800.57880212108,1878.12004971794,1960.80778666388,1907.192982034,1612.68705553371,1639.06602923008
61.635687732342,2674.73369387648,2268.50587614933,2527.79792403495,2270.51019623605,2200.14842763274,2317.89438600547,1812.19108387039,1878.12004971794,1960.80778666388,1907.192982034,1612.68705553371,1618.58895980405
61.7100371747212,2675.77994118363,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2317.89438600547,1812.19108387039,1878.12004971794,1960.80778666388,1907.192982034,1612.68705553371,1618.58895980405
61.7843866171004,2677.66509683419,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2315.70993932152,1812.19108387039,1878.12004971794,1960.80778666388,1907.192982034,1612.68705553371,1618.58895980405
61.8587360594796,2677.84632125513,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2315.70993932152,1812.19108387039,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.58895980405
61.9330855018587,2679.68428382228,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2313.58314973973,1812.19108387039,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.58895980405
62.0074349442379,2679.73340430907,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2313.58314973973,1812.19108387039,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.41371964848
62.0817843866171,2681.52909056455,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2311.50955908793,1812.19108387039,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.41371964848
62.1561338289963,2683.27991969633,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2309.49147180895,1812.19108387039,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.41371964848
62.2304832713755,2684.9881607986,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2307.52597562995,1812.19108387039,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.41371964848
62.3048327137546,2685.10988611638,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2307.52597562995,1811.89823859473,1877.76259204823,1960.80778666388,1907.192982034,1612.68705553371,1618.41371964848
62.3791821561338,2685.38016611273,2268.50587614933,2527.79792403495,2270.51019623605,2198.58143167402,2307.52597562995,1811.89823859473,1877.76259204823,1960.25714790304,1907.192982034,1612.68705553371,1618.41371964848
62.453531598513,2686.77534123004,2268.50587614933,2527.79792403495,2268.26360631124,2198.58143167402,2307.52597562995,1811.89823859473,1877.76259204823,1960.25714790304,1907.192982034,1612.68705553371,1618.41371964848
62.5278810408922,2686.77534123004,2270.5688889902,2527.79792403495,2268.26360631124,2198.58143167402,2307.52597562995,1811.89823859473,1877.76259204823,1960.25714790304,1904.15340730983,1612.68705553371,1618.41371964848
62.6022304832714,2686.77534123004,2270.5688889902,2527.79792403495,2268.26360631124,2179.28541172841,2307.52597562995,1811.89823859473,1877.76259204823,1986.41912535971,1904.15340730983,1612.68705553371,1618.41371964848
62.6765799256506,2686.89654900068,2270.5688889902,2527.79792403495,2268.26360631124,2179.28541172841,2307.52597562995,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1612.68705553371,1618.41371964848
62.7509293680297,2688.27713696106,2269.02256791722,2527.79792403495,2268.26360631124,2179.28541172841,2307.52597562995,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1612.68705553371,1618.41371964848
62.8252788104089,2689.92634101178,2269.02256791722,2527.79792403495,2268.26360631124,2179.28541172841,2305.6055288198,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1612.68705553371,1618.41371964848
62.8996282527881,2691.26246592814,2267.51610136585,2527.79792403495,2268.26360631124,2179.28541172841,2305.6055288198,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1612.68705553371,1618.41371964848
62.9739776951673,2691.26246592814,2277.20888676293,2527.79792403495,2268.26360631124,2179.28541172841,2295.53352714595,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1612.68705553371,1618.41371964848
63.0483271375465,2691.26246592814,2277.62870972369,2527.79792403495,2268.26360631124,2179.28541172841,2295.53352714595,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1611.70758866623,1618.41371964848
63.1226765799257,2692.78681050291,2277.62870972369,2527.79792403495,2268.26360631124,2179.28541172841,2293.79632651627,1811.60741179812,1877.76259204823,1986.41912535971,1904.15340730983,1611.70758866623,1618.41371964848
63.1970260223048,2692.78681050291,2278.82961831128,2527.79792403495,2268.26360631124,2179.28541172841,2293.79632651627,1808.83510471726,1877.76259204823,1986.41912535971,1904.15340730983,1611.70758866623,1618.41371964848
63.271375464684,2692.78681050291,2279.24360374574,2527.79792403495,2268.26360631124,2179.28541172841,2293.79632651627,1808.83510471726,1877.76259204823,1986.41912535971,1904.15340730983,1610.74389041182,1618.41371964848
63.3457249070632,2697.21214915611,2279.24360374574,2520.1628667143,2268.26360631124,2179.28541172841,2293.79632651627,1808.83510471726,1877.76259204823,1986.41912535971,1904.15340730983,1610.74389041182,1618.41371964848
63.4200743494424,2697.21214915611,2282.03963148982,2520.1628667143,2268.26360631124,2179.28541172841,2293.79632651627,1808.83510471726,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.41371964848
63.4944237918216,2697.21214915611,2283.18497894832,2520.1628667143,2268.26360631124,2179.28541172841,2293.79632651627,1806.19148769036,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.41371964848
63.5687732342007,2698.50046694109,2283.18497894832,2520.1628667143,2266.13807836266,2179.28541172841,2293.79632651627,1806.19148769036,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.41371964848
63.6431226765799,2698.50046694109,2291.95250094071,2520.1628667143,2266.13807836266,2179.28541172841,2284.51504678226,1806.19148769036,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.41371964848
63.7174721189591,2698.54417414054,2291.95250094071,2520.1628667143,2266.13807836266,2179.28541172841,2284.51504678226,1806.19148769036,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.25414746239
63.7918215613383,2698.54417414054,2300.13898935835,2520.1628667143,2266.13807836266,2179.28541172841,2275.8645221725,1806.19148769036,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.25414746239
63.8661710037175,2700.04493152568,2298.56585180217,2520.1628667143,2266.13807836266,2179.28541172841,2275.8645221725,1806.19148769036,1877.76259204823,1981.15733707969,1904.15340730983,1610.74389041182,1618.25414746239
63.9405204460967,2700.32131205154,2298.56585180217,2520.1628667143,2266.13807836266,2179.28541172841,2275.8645221725,1806.19148769036,1877.76259204823,1980.60527935958,1904.15340730983,1610.74389041182,1618.25414746239
64.0148698884758,2701.11840955664,2298.56585180217,2520.1628667143,2266.13807836266,2178.02304823982,2275.8645221725,1806.19148769036,1877.76259204823,1980.60527935958,1904.15340730983,1610.74389041182,1618.25414746239
64.089219330855,2701.27480778246,2298.56585180217,2520.1628667143,2266.13807836266,2178.02304823982,2275.8645221725,1806.19148769036,1877.43663656286,1980.60527935958,1904.15340730983,1610.74389041182,1618.25414746239
64.1635687732342,2701.38248467786,2298.56585180217,2520.1628667143,2266.13807836266,2178.02304823982,2275.8645221725,1805.9336074193,1877.43663656286,1980.60527935958,1904.15340730983,1610.74389041182,1618.25414746239
64.2379182156134,2701.38248467786,2298.56585180217,2520.1628667143,2268.01191410915,2178.02304823982,2275.8645221725,1803.08138272203,1877.43663656286,1980.60527935958,1904.15340730983,1610.74389041182,1618.25414746239
64.3122676579926,2701.48867867141,2298.56585180217,2520.1628667143,2268.01191410915,2178.02304823982,2275.8645221725,1802.83157620618,1877.43663656286,1980.60527935958,1904.15340730983,1610.74389041182,1618.25414746239
64.3866171003718,2701.48867867141,2298.56585180217,2520.1628667143,2268.01191410915,2178.02304823982,2275.8645221725,1802.83157620618,1861.9663489377,1980.60527935958,1916.39197167401,1610.74389041182,1618.25414746239
64.4609665427509,2701.48867867141,2298.56585180217,2520.1628667143,2268.01191410915,2178.02304823982,2275.8645221725,1828.2718955076,1861.9663489377,1980.60527935958,1899.73425495174,1610.74389041182,1618.25414746239
64.5353159851301,2701.48867867141,2298.56585180217,2520.1628667143,2270.45225265853,2178.02304823982,2275.8645221725,1828.2718955076,1858.90940619076,1980.60527935958,1899.73425495174,1610.74389041182,1618.25414746239
64.6096654275093,2701.48867867141,2298.56585180217,2520.1628667143,2271.10154860194,2178.02304823982,2275.8645221725,1828.2718955076,1858.90940619076,1980.60527935958,1899.73425495174,1609.7036562362,1618.25414746239
64.6840148698885,2701.6318145169,2298.56585180217,2520.1628667143,2271.10154860194,2178.02304823982,2275.8645221725,1828.2718955076,1858.63170975787,1980.60527935958,1899.73425495174,1609.7036562362,1618.25414746239
64.7583643122677,2701.6318145169,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2275.8645221725,1828.2718955076,1858.63170975787,1980.60527935958,1896.90641770113,1609.7036562362,1618.25414746239
64.8327137546468,2702.97051358429,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2274.3681622589,1828.2718955076,1858.63170975787,1980.60527935958,1896.90641770113,1609.7036562362,1618.25414746239
64.907063197026,2704.284566753,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2272.9010433578,1828.2718955076,1858.63170975787,1980.60527935958,1896.90641770113,1609.7036562362,1618.25414746239
64.9814126394052,2704.32135056024,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2272.9010433578,1828.2718955076,1858.63170975787,1980.60527935958,1896.90641770113,1609.61516438519,1618.25414746239
65.0557620817844,2704.32135056024,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2272.9010433578,1850.4898177563,1858.63170975787,1980.60527935958,1882.20173203207,1609.61516438519,1618.25414746239
65.1301115241636,2704.32135056024,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2274.5084598098,1850.4898177563,1855.73748174786,1980.60527935958,1882.20173203207,1609.61516438519,1618.25414746239
65.2044609665428,2705.63414639848,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2273.05715059096,1850.4898177563,1855.73748174786,1980.60527935958,1882.20173203207,1609.61516438519,1618.25414746239
65.2788104089219,2705.78997498873,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2273.05715059096,1850.4898177563,1855.73748174786,1980.60527935958,1881.96693673664,1609.61516438519,1618.25414746239
65.3531598513011,2705.78997498873,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2274.83754504339,1850.4898177563,1855.73748174786,1980.60527935958,1879.50401586235,1609.61516438519,1618.25414746239
65.4275092936803,2705.94404917914,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2274.83754504339,1850.4898177563,1855.73748174786,1980.60527935958,1879.27517117309,1609.61516438519,1618.25414746239
65.5018587360595,2705.98100783222,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2274.83754504339,1850.4898177563,1855.73748174786,1980.60527935958,1879.27517117309,1609.52679521137,1618.25414746239
65.5762081784387,2707.29347932666,2298.56585180217,2520.1628667143,2273.95519840975,2178.02304823982,2273.39971752167,1850.4898177563,1855.73748174786,1980.60527935958,1879.27517117309,1609.52679521137,1618.25414746239
65.6505576208178,2707.29347932666,2300.08400243981,2520.1628667143,2273.95519840975,2178.02304823982,2273.39971752167,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1609.52679521137,1618.25414746239
65.724907063197,2707.29347932666,2308.10063083054,2520.1628667143,2273.95519840975,2178.02304823982,2265.2324250896,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1609.52679521137,1618.25414746239
65.7992565055762,2707.29347932666,2315.56692195098,2520.1628667143,2273.95519840975,2178.02304823982,2257.6298633833,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1609.52679521137,1618.25414746239
65.8736059479554,2707.29347932666,2315.89297570141,2520.1628667143,2273.95519840975,2178.02304823982,2257.6298633833,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1618.25414746239
65.9479553903346,2707.29347932666,2316.25810108992,2520.1628667143,2273.95519840975,2178.02304823982,2257.6298633833,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.85642989405
66.0223048327138,2707.29347932666,2323.22764937883,2520.1628667143,2273.95519840975,2178.02304823982,2250.51153271696,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.85642989405
66.0966542750929,2708.98592762187,2321.53928247981,2520.1628667143,2273.95519840975,2178.02304823982,2250.51153271696,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.85642989405
66.1710037174721,2710.29635690719,2321.53928247981,2520.1628667143,2271.8609443823,2178.02304823982,2250.51153271696,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.85642989405
66.2453531598513,2711.08029879617,2321.53928247981,2520.1628667143,2271.8609443823,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.85642989405
66.3197026022305,2712.35633257487,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.85642989405
66.3940520446097,2712.39838213224,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1980.60527935958,1877.15462027741,1608.72839487442,1616.70739782795
66.4684014869889,2712.66777507045,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1980.06543599922,1877.15462027741,1608.72839487442,1616.70739782795
66.542750929368,2712.66777507045,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1958.82362946648,1892.7682497407,1608.72839487442,1616.70739782795
66.6171003717472,2712.82941885114,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1958.82362946648,1892.53368693839,1608.72839487442,1616.70739782795
66.6914498141264,2712.82941885114,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1939.97438501097,1906.56297670596,1608.72839487442,1616.70739782795
66.7657992565056,2713.00434946818,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.51153271696,1850.4898177563,1855.73748174786,1939.97438501097,1906.31710737922,1608.72839487442,1616.70739782795
66.8401486988848,2713.00434946818,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2253.07804606674,1850.4898177563,1855.73748174786,1935.36514079977,1906.31710737922,1608.72839487442,1616.70739782795
66.9144981412639,2713.00434946818,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2255.53535153817,1850.4898177563,1855.73748174786,1931.0013638011,1906.31710737922,1608.72839487442,1616.70739782795
66.9888475836431,2714.17201233029,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2254.34166077969,1850.4898177563,1855.73748174786,1931.0013638011,1906.31710737922,1608.72839487442,1616.70739782795
67.0631970260223,2715.32161203046,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2253.1666753823,1850.4898177563,1855.73748174786,1931.0013638011,1906.31710737922,1608.72839487442,1616.70739782795
67.1375464684015,2715.52355861986,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2253.1666753823,1850.4898177563,1855.73748174786,1930.64428206188,1906.31710737922,1608.72839487442,1616.70739782795
67.2118959107807,2716.6567217021,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2252.00754159114,1850.4898177563,1855.73748174786,1930.64428206188,1906.31710737922,1608.72839487442,1616.70739782795
67.2862453531599,2717.77293796286,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2250.86597811291,1850.4898177563,1855.73748174786,1930.64428206188,1906.31710737922,1608.72839487442,1616.70739782795
67.360594795539,2718.87275114714,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2249.74141773174,1850.4898177563,1855.73748174786,1930.64428206188,1906.31710737922,1608.72839487442,1616.70739782795
67.4349442379182,2719.95667971234,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2248.63331973703,1850.4898177563,1855.73748174786,1930.64428206188,1906.31710737922,1608.72839487442,1616.70739782795
67.5092936802974,2720.08673127301,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2248.63331973703,1850.4898177563,1855.48116142691,1930.64428206188,1906.31710737922,1608.72839487442,1616.70739782795
67.5836431226766,2720.28179727475,2321.53928247981,2520.1628667143,2269.82641186426,2176.77101827073,2248.63331973703,1850.4898177563,1855.48116142691,1930.2946811612,1906.31710737922,1608.72839487442,1616.70739782795
67.6579925650558,2724.27177513198,2321.53928247981,2513.075391502,2269.82641186426,2176.77101827073,2248.63331973703,1850.4898177563,1855.48116142691,1930.2946811612,1906.31710737922,1608.72839487442,1616.70739782795
67.7323420074349,2724.43321166315,2321.53928247981,2513.075391502,2269.82641186426,2176.77101827073,2248.63331973703,1850.4898177563,1855.48116142691,1930.2946811612,1906.08103310287,1608.72839487442,1616.70739782795
67.8066914498141,2724.5573758455,2321.53928247981,2513.075391502,2269.82641186426,2176.77101827073,2248.63331973703,1850.21469239202,1855.48116142691,1930.2946811612,1906.08103310287,1608.72839487442,1616.70739782795
67.8810408921933,2724.71911845324,2321.53928247981,2513.075391502,2269.82641186426,2176.77101827073,2248.63331973703,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.70739782795
67.9553903345725,2724.75867543078,2321.53928247981,2513.075391502,2269.82641186426,2176.77101827073,2248.63331973703,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.0297397769517,2725.80097312987,2321.53928247981,2513.075391502,2269.82641186426,2176.77101827073,2247.54630168153,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.1040892193309,2727.31307539783,2319.90470040582,2513.075391502,2269.82641186426,2176.77101827073,2247.54630168153,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.17843866171,2728.32820922616,2319.90470040582,2513.075391502,2269.82641186426,2176.77101827073,2246.48009593824,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.2527881040892,2729.03050706004,2319.90470040582,2513.075391502,2269.82641186426,2175.59339349271,2246.48009593824,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.3271375464684,2730.02782080135,2319.90470040582,2513.075391502,2269.82641186426,2175.59339349271,2245.42936292359,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.4014869888476,2731.01213556205,2319.90470040582,2513.075391502,2269.82641186426,2175.59339349271,2244.39278468953,1850.21469239202,1855.48116142691,1930.2946811612,1905.84493484584,1608.72839487442,1616.5666536164
68.4758364312268,2731.1926316823,2319.90470040582,2513.075391502,2269.82641186426,2175.59339349271,2244.39278468953,1850.21469239202,1855.48116142691,1929.96096684346,1905.84493484584,1608.72839487442,1616.5666536164
68.550185873606,2732.16549784626,2319.90470040582,2513.075391502,2269.82641186426,2175.59339349271,2243.36788070112,1850.21469239202,1855.48116142691,1929.96096684346,1905.84493484584,1608.72839487442,1616.5666536164
68.6245353159851,2732.3190864924,2319.90470040582,2513.075391502,2269.82641186426,2175.59339349271,2243.36788070112,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.5666536164
68.6988847583643,2735.93904248249,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2243.36788070112,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.5666536164
68.7732342007435,2736.87093262052,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2242.37090444229,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.5666536164
68.8475836431227,2737.79157341623,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2241.38650922091,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.5666536164
68.9219330855019,2738.70126738151,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2240.41435016938,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.5666536164
68.996282527881,2739.60030514825,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2239.45409616012,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.5666536164
69.0706319702602,2739.63583971796,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2239.45409616012,1850.21469239202,1855.48116142691,1929.96096684346,1905.61477521439,1608.72839487442,1616.43646371596
69.1449814126394,2739.74937056221,2319.90470040582,2506.58456502899,2269.82641186426,2175.59339349271,2239.45409616012,1850.21469239202,1855.2453706183,1929.96096684346,1905.61477521439,1608.72839487442,1616.43646371596
69.2193308550186,2743.11027204136,2319.90470040582,2500.57430773829,2269.82641186426,2175.59339349271,2239.45409616012,1850.21469239202,1855.2453706183,1929.96096684346,1905.61477521439,1608.72839487442,1616.43646371596
69.2936802973978,2743.97721234818,2319.90470040582,2500.57430773829,2269.82641186426,2175.59339349271,2238.5149539481,1850.21469239202,1855.2453706183,1929.96096684346,1905.61477521439,1608.72839487442,1616.43646371596
69.368029739777,2744.83453789389,2319.90470040582,2500.57430773829,2269.82641186426,2175.59339349271,2237.58681562151,1850.21469239202,1855.2453706183,1929.96096684346,1905.61477521439,1608.72839487442,1616.43646371596
69.4423791821561,2744.83453789389,2326.9499243376,2500.57430773829,2269.82641186426,2175.59339349271,2231.07041337787,1850.21469239202,1855.2453706183,1929.96096684346,1905.61477521439,1608.72839487442,1616.43646371596
69.5167286245353,2744.97442419348,2326.9499243376,2500.57430773829,2269.82641186426,2175.59339349271,2231.07041337787,1850.21469239202,1855.2453706183,1929.96096684346,1905.39606488616,1608.72839487442,1616.43646371596
69.5910780669145,2745.13807741023,2326.9499243376,2500.57430773829,2269.82641186426,2175.59339349271,2231.07041337787,1850.21469239202,1855.2453706183,1929.64645126521,1905.39606488616,1608.72839487442,1616.43646371596
69.6654275092937,2745.13807741023,2328.13503321842,2500.57430773829,2269.82641186426,2175.59339349271,2231.07041337787,1847.68948796985,1855.2453706183,1929.64645126521,1905.39606488616,1608.72839487442,1616.43646371596
69.7397769516729,2745.13807741023,2329.66870854606,2500.57430773829,2269.82641186426,2175.59339349271,2231.07041337787,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1616.43646371596
69.814126394052,2746.172621555,2329.66870854606,2500.57430773829,2268.01186673327,2175.59339349271,2231.07041337787,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1616.43646371596
69.8884758364312,2746.79547383541,2329.66870854606,2500.57430773829,2268.01186673327,2174.49651373539,2231.07041337787,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1616.43646371596
69.9628252788104,2746.79547383541,2336.1972388921,2500.57430773829,2268.01186673327,2174.49651373539,2224.9270444338,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1616.43646371596
70.0371747211896,2746.79547383541,2336.54137290954,2500.57430773829,2268.01186673327,2174.49651373539,2224.9270444338,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1615.16320329424
70.1115241635688,2746.79547383541,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2219.15819464615,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1615.16320329424
70.185873605948,2746.82983097509,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2219.15819464615,1847.68948796985,1855.2453706183,1929.64645126521,1903.25174064815,1608.72839487442,1615.03882443655
70.2602230483271,2746.96932071956,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2219.15819464615,1847.68948796985,1855.2453706183,1929.64645126521,1903.0365273497,1608.72839487442,1615.03882443655
70.3345724907063,2747.74834069604,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2218.36093043847,1847.68948796985,1855.2453706183,1929.64645126521,1903.0365273497,1608.72839487442,1615.03882443655
70.4089219330855,2747.88715461386,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2218.36093043847,1847.68948796985,1855.2453706183,1929.64645126521,1902.8220885717,1608.72839487442,1615.03882443655
70.4832713754647,2748.02602811546,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2218.36093043847,1847.68948796985,1855.2453706183,1929.64645126521,1902.60788875714,1608.72839487442,1615.03882443655
70.5576208178439,2748.16496032076,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2218.36093043847,1847.68948796985,1855.2453706183,1929.64645126521,1902.39392744937,1608.72839487442,1615.03882443655
70.631970260223,2748.30395035515,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2218.36093043847,1847.68948796985,1855.2453706183,1929.64645126521,1902.18020419247,1608.72839487442,1615.03882443655
70.7063197026022,2748.30395035515,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2220.76526490549,1847.68948796985,1855.2453706183,1929.64645126521,1898.50967642884,1608.72839487442,1615.03882443655
70.7806691449814,2748.30395035515,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2222.65476646244,1847.68948796985,1851.19933303295,1929.64645126521,1898.50967642884,1608.72839487442,1615.03882443655
70.8550185873606,2748.4128277445,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2222.65476646244,1847.68948796985,1850.97749038389,1929.64645126521,1898.50967642884,1608.72839487442,1615.03882443655
70.9293680297398,2748.52150883226,2342.65002871787,2500.57430773829,2268.01186673327,2174.49651373539,2222.65476646244,1847.44352903799,1850.97749038389,1929.64645126521,1898.50967642884,1608.72839487442,1615.03882443655
71.003717472119,2749.15453110261,2342.65002871787,2500.57430773829,2268.01186673327,2173.39721642723,2222.65476646244,1847.44352903799,1850.97749038389,1929.64645126521,1898.50967642884,1608.72839487442,1615.03882443655
71.0780669144981,2749.15453110261,2342.65002871787,2500.57430773829,2268.01186673327,2173.39721642723,2224.95573532577,1847.44352903799,1850.97749038389,1929.64645126521,1895.00530948571,1608.72839487442,1615.03882443655
71.1524163568773,2752.40093413158,2342.65002871787,2494.86079987701,2268.01186673327,2173.39721642723,2224.95573532577,1847.44352903799,1850.97749038389,1929.64645126521,1895.00530948571,1608.72839487442,1615.03882443655
71.2267657992565,2752.40093413158,2342.65002871787,2494.86079987701,2268.01186673327,2173.39721642723,2224.95573532577,1869.36382792094,1850.97749038389,1929.64645126521,1881.26656583312,1608.72839487442,1615.03882443655
71.3011152416357,2752.40093413158,2342.65002871787,2494.86079987701,2268.01186673327,2173.39721642723,2224.95573532577,1869.36382792094,1869.71104122855,1929.64645126521,1868.45494351477,1608.72839487442,1615.03882443655
71.3754646840149,2752.51365901357,2342.65002871787,2494.86079987701,2268.01186673327,2173.39721642723,2224.95573532577,1869.36382792094,1869.71104122855,1929.64645126521,1868.29623377956,1608.72839487442,1615.03882443655
71.449814126394,2753.53179516882,2342.65002871787,2494.86079987701,2266.23224714766,2173.39721642723,2224.95573532577,1869.36382792094,1869.71104122855,1929.64645126521,1868.29623377956,1608.72839487442,1615.03882443655
71.5241635687732,2753.64375354099,2342.65002871787,2494.86079987701,2266.23224714766,2173.39721642723,2224.95573532577,1869.36382792094,1869.71104122855,1929.64645126521,1868.13814454998,1608.72839487442,1615.03882443655
71.5985130111524,2753.80643597677,2342.65002871787,2494.86079987701,2266.23224714766,2173.39721642723,2224.95573532577,1869.36382792094,1869.71104122855,1929.33461840724,1868.13814454998,1608.72839487442,1615.03882443655
71.6728624535316,2754.59803009569,2342.65002871787,2494.86079987701,2266.23224714766,2173.39721642723,2224.14814263751,1869.36382792094,1869.71104122855,1929.33461840724,1868.13814454998,1608.72839487442,1615.03882443655
71.7472118959108,2755.3818515602,2342.65002871787,2494.86079987701,2266.23224714766,2173.39721642723,2223.3485973371,1869.36382792094,1869.71104122855,1929.33461840724,1868.13814454998,1608.72839487442,1615.03882443655
71.82156133829,2755.98844982823,2342.65002871787,2494.86079987701,2266.23224714766,2172.33105344468,2223.3485973371,1869.36382792094,1869.71104122855,1929.33461840724,1868.13814454998,1608.72839487442,1615.03882443655
71.8959107806691,2756.02206422376,2342.65002871787,2494.86079987701,2266.23224714766,2172.33105344468,2223.3485973371,1869.36382792094,1869.71104122855,1929.33461840724,1868.13814454998,1608.72839487442,1614.91889185158
71.9702602230483,2756.13946791659,2342.65002871787,2494.86079987701,2266.23224714766,2172.33105344468,2223.3485973371,1869.10754430972,1869.71104122855,1929.33461840724,1868.13814454998,1608.72839487442,1614.91889185158
72.0446096654275,2756.13946791659,2342.65002871787,2494.86079987701,2269.04846747059,2172.33105344468,2223.3485973371,1869.10754430972,1869.71104122855,1929.33461840724,1865.820074301,1608.72839487442,1614.91889185158
72.1189591078067,2756.13946791659,2342.65002871787,2494.86079987701,2269.04846747059,2172.33105344468,2223.3485973371,1887.54910946486,1869.71104122855,1929.33461840724,1854.40727681246,1608.72839487442,1614.91889185158
72.1933085501859,2756.13946791659,2342.65002871787,2494.86079987701,2269.04846747059,2172.33105344468,2223.3485973371,1869.11290833882,1887.11546922621,1929.33461840724,1854.40727681246,1608.72839487442,1614.91889185158
72.2676579925651,2756.13946791659,2342.65002871787,2494.86079987701,2269.85019344695,2172.33105344468,2223.3485973371,1869.11290833882,1887.11546922621,1929.33461840724,1854.40727681246,1608.72839487442,1613.02256678134
72.3420074349442,2756.13946791659,2342.65002871787,2494.86079987701,2269.85019344695,2172.33105344468,2223.3485973371,1885.35063557222,1887.11546922621,1929.33461840724,1843.60478549606,1608.72839487442,1613.02256678134
72.4163568773234,2756.267669414,2342.65002871787,2494.86079987701,2269.85019344695,2172.33105344468,2223.3485973371,1885.10819843267,1887.11546922621,1929.33461840724,1843.60478549606,1608.72839487442,1613.02256678134
72.4907063197026,2756.267669414,2342.65002871787,2494.86079987701,2272.88908163401,2172.33105344468,2223.3485973371,1885.10819843267,1883.66419529458,1929.33461840724,1843.60478549606,1608.72839487442,1613.02256678134
72.5650557620818,2756.267669414,2342.65002871787,2494.86079987701,2273.65653384411,2172.33105344468,2223.3485973371,1885.10819843267,1883.66419529458,1929.33461840724,1843.60478549606,1608.72839487442,1611.19988930563
72.639405204461,2756.267669414,2342.65002871787,2494.86079987701,2273.65653384411,2172.33105344468,2223.3485973371,1885.10819843267,1883.66419529458,1929.33461840724,1848.38491592639,1608.72839487442,1596.10138545871
72.7137546468401,2756.267669414,2342.65002871787,2494.86079987701,2276.56930157904,2172.33105344468,2223.3485973371,1881.72363716935,1883.66419529458,1929.33461840724,1848.38491592639,1608.72839487442,1596.10138545871
72.7881040892193,2756.29825580772,2342.65002871787,2494.86079987701,2276.56930157904,2172.33105344468,2223.3485973371,1881.72363716935,1883.66419529458,1929.33461840724,1848.38491592639,1608.72839487442,1596.00205799972
72.8624535315985,2759.46736513635,2342.65002871787,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1881.72363716935,1883.66419529458,1929.33461840724,1848.38491592639,1608.72839487442,1596.00205799972
72.9368029739777,2759.46736513635,2342.65002871787,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1896.29790945158,1883.66419529458,1929.33461840724,1838.48433089221,1608.72839487442,1596.00205799972
73.0111524163569,2759.46736513635,2342.65002871787,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1911.03806708769,1868.32688785451,1929.33461840724,1838.48433089221,1608.72839487442,1596.00205799972
73.0855018587361,2759.46736513635,2342.65002871787,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1922.87498515477,1868.32688785451,1929.33461840724,1829.94973909661,1608.72839487442,1596.00205799972
73.1598513011152,2759.46736513635,2342.65002871787,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1922.87498515477,1873.93041465822,1929.33461840724,1829.94973909661,1608.72839487442,1584.02571097301
73.2342007434944,2759.46736513635,2342.65002871787,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1937.27497712783,1873.93041465822,1912.5984873189,1829.94973909661,1608.72839487442,1584.02571097301
73.3085501858736,2759.46736513635,2342.95158365629,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1937.27497712783,1873.93041465822,1912.5984873189,1829.94973909661,1608.72839487442,1583.11569366156
73.3828996282528,2759.46736513635,2342.95158365629,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1950.00506109574,1873.93041465822,1897.91322257976,1829.94973909661,1608.72839487442,1583.11569366156
73.457249070632,2759.46736513635,2342.95158365629,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1950.00506109574,1879.58473157613,1897.91322257976,1829.94973909661,1600.01398477032,1583.11569366156
73.5315985130111,2759.46736513635,2342.95158365629,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1953.15107926686,1879.58473157613,1897.91322257976,1829.94973909661,1600.01398477032,1575.81218656994
73.6059479553903,2759.46736513635,2344.92295407226,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1950.46853730385,1879.58473157613,1897.91322257976,1829.94973909661,1600.01398477032,1575.81218656994
73.6802973977695,2759.46736513635,2346.83415745612,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1947.87905907258,1879.58473157613,1897.91322257976,1829.94973909661,1600.01398477032,1575.81218656994
73.7546468401487,2759.5594311737,2346.83415745612,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1947.87905907258,1879.58473157613,1897.91322257976,1829.83679212807,1600.01398477032,1575.81218656994
73.8289962825279,2759.58634390265,2346.83415745612,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1947.87905907258,1879.58473157613,1897.91322257976,1829.83679212807,1600.01398477032,1575.73248431622
73.9033457249071,2759.58634390265,2347.8379058003,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1947.87905907258,1879.58473157613,1897.91322257976,1828.71797349308,1600.01398477032,1575.73248431622
73.9776951672862,2759.58634390265,2349.68784698761,2489.39848652987,2276.56930157904,2172.33105344468,2223.3485973371,1945.37506819867,1879.58473157613,1897.91322257976,1828.71797349308,1600.01398477032,1575.73248431622
74.0520446096654,2759.58634390265,2357.22531847151,2489.39848652987,2265.19280262749,2172.33105344468,2223.3485973371,1945.37506819867,1879.58473157613,1897.91322257976,1828.71797349308,1600.01398477032,1575.73248431622
74.1263940520446,2759.58634390265,2345.63440426949,2489.39848652987,2282.50793811831,2172.33105344468,2223.3485973371,1945.37506819867,1879.58473157613,1897.91322257976,1828.71797349308,1600.01398477032,1575.73248431622
74.2007434944238,2759.58634390265,2345.63440426949,2489.39848652987,2282.50793811831,2172.33105344468,2223.3485973371,1948.69298127432,1879.58473157613,1897.91322257976,1828.71797349308,1594.1797532751,1575.73248431622
74.275092936803,2759.58634390265,2347.42264061271,2489.39848652987,2282.50793811831,2172.33105344468,2223.3485973371,1946.20553831461,1879.58473157613,1897.91322257976,1828.71797349308,1594.1797532751,1575.73248431622
74.3494423791822,2759.58634390265,2347.42264061271,2489.39848652987,2282.50793811831,2172.33105344468,2223.3485973371,1954.76599973412,1879.58473157613,1897.91322257976,1821.38007138443,1594.1797532751,1575.73248431622
74.4237918215613,2759.58634390265,2347.42264061271,2489.39848652987,2284.39871527984,2172.33105344468,2223.3485973371,1954.76599973412,1879.58473157613,1897.91322257976,1819.88810887687,1594.1797532751,1575.73248431622
74.4981412639405,2759.77852760295,2347.42264061271,2489.39848652987,2284.39871527984,2172.33105344468,2223.3485973371,1954.50367219956,1879.58473157613,1897.91322257976,1819.88810887687,1594.1797532751,1575.73248431622
74.5724907063197,2761.37213350801,2345.77865290789,2489.39848652987,2284.39871527984,2172.33105344468,2223.3485973371,1954.50367219956,1879.58473157613,1897.91322257976,1819.88810887687,1594.1797532751,1575.73248431622
74.6468401486989,2761.37213350801,2346.05980687684,2489.39848652987,2284.39871527984,2172.33105344468,2223.3485973371,1954.50367219956,1879.58473157613,1897.91322257976,1819.88810887687,1593.52312378741,1575.73248431622
74.7211895910781,2761.37213350801,2335.45227313178,2489.39848652987,2300.06906562534,2172.33105344468,2223.3485973371,1954.50367219956,1879.58473157613,1897.91322257976,1819.88810887687,1593.52312378741,1575.73248431622
74.7955390334572,2762.62072133075,2335.45227313178,2489.39848652987,2298.25782490746,2172.33105344468,2223.3485973371,1954.50367219956,1879.58473157613,1897.91322257976,1819.88810887687,1593.52312378741,1575.73248431622
74.8698884758364,2762.76145882605,2335.45227313178,2489.39848652987,2298.25782490746,2172.33105344468,2223.3485973371,1954.50367219956,1879.58473157613,1897.67048194278,1819.88810887687,1593.52312378741,1575.73248431622
74.9442379182156,2762.76145882605,2335.45227313178,2489.39848652987,2298.25782490746,2172.33105344468,2223.3485973371,1954.50367219956,1892.27797978695,1897.67048194278,1811.10202521137,1593.52312378741,1575.73248431622
75.0185873605948,2762.76145882605,2335.45227313178,2459.9621844602,2298.25782490746,2172.33105344468,2223.3485973371,1954.50367219956,1921.37839307061,1897.67048194278,1811.10202521137,1593.52312378741,1575.73248431622
75.092936802974,2762.76145882605,2335.45227313178,2459.9621844602,2298.25782490746,2172.33105344468,2223.3485973371,1957.46566792565,1921.37839307061,1897.67048194278,1811.10202521137,1588.21957143965,1575.73248431622
75.1672862453532,2762.76145882605,2335.45227313178,2459.9621844602,2298.25782490746,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1897.67048194278,1803.86195544298,1588.21957143965,1575.73248431622
75.2416356877323,2762.76145882605,2335.45227313178,2438.80958346235,2316.60460630475,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1897.67048194278,1803.86195544298,1588.21957143965,1575.73248431622
75.3159851301115,2762.76145882605,2335.45227313178,2438.80958346235,2318.83519286868,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1894.86684416043,1803.86195544298,1588.21957143965,1575.73248431622
75.3903345724907,2762.76145882605,2335.45227313178,2438.80958346235,2319.26146015543,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1894.86684416043,1803.86195544298,1588.21957143965,1574.74531085607
75.4646840148699,2762.76145882605,2335.45227313178,2438.80958346235,2319.69468797402,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1894.86684416043,1803.86195544298,1587.48324024125,1574.74531085607
75.5390334572491,2762.76145882605,2335.45227313178,2438.80958346235,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1894.86684416043,1802.7760597386,1587.48324024125,1574.74531085607
75.6133828996282,2762.76145882605,2335.45227313178,2438.80958346235,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1931.61518894603,1875.16730391815,1815.46210691773,1587.48324024125,1574.74531085607
75.6877323420074,2762.76145882605,2335.45227313178,2438.80958346235,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1941.3887636081,1875.16730391815,1808.65892586031,1587.48324024125,1574.74531085607
75.7620817843866,2762.76145882605,2335.45227313178,2438.80958346235,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1950.27251168116,1875.16730391815,1802.3991704432,1587.48324024125,1574.74531085607
75.8364312267658,2762.76145882605,2335.45227313178,2438.80958346235,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1953.2900184892,1875.16730391815,1802.3991704432,1587.48324024125,1567.86856989787
75.910780669145,2762.76145882605,2335.45227313178,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1978.55730927798,1875.16730391815,1802.3991704432,1587.48324024125,1567.86856989787
75.9851301115242,2762.76145882605,2337.676783053,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1957.46566792565,1975.41843218505,1875.16730391815,1802.3991704432,1587.48324024125,1567.86856989787
76.0594795539033,2762.76145882605,2339.64067565567,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1954.79480704209,1975.41843218505,1875.16730391815,1802.3991704432,1587.48324024125,1567.86856989787
76.1338289962825,2762.76145882605,2339.64067565567,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1962.19790813673,1975.41843218505,1875.16730391815,1796.65097828729,1587.48324024125,1567.86856989787
76.2081784386617,2764.33828546785,2338.07786439702,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1962.19790813673,1975.41843218505,1875.16730391815,1796.65097828729,1587.48324024125,1567.86856989787
76.2825278810409,2765.88115745213,2336.54855743042,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1962.19790813673,1975.41843218505,1875.16730391815,1796.65097828729,1587.48324024125,1567.86856989787
76.3568773234201,2766.08147535561,2336.54855743042,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1961.93591659669,1975.41843218505,1875.16730391815,1796.65097828729,1587.48324024125,1567.86856989787
76.4312267657993,2766.08147535561,2338.54190257366,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1959.28256098283,1975.41843218505,1875.16730391815,1796.65097828729,1587.48324024125,1567.86856989787
76.5055762081784,2766.08147535561,2339.36498136727,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.48324024125,1567.86856989787
76.5799256505576,2766.10877969794,2339.36498136727,2410.81539684071,2321.00988927626,2172.33105344468,2223.3485973371,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.42406859879,1567.86856989787
76.6542750929368,2766.76113623522,2339.36498136727,2410.81539684071,2321.00988927626,2171.2228087819,2223.3485973371,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.42406859879,1567.86856989787
76.728624535316,2767.5967730641,2339.36498136727,2410.81539684071,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.42406859879,1567.86856989787
76.8029739776952,2767.62385395011,2339.36498136727,2410.81539684071,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.36525040944,1567.86856989787
76.8773234200743,2767.65099501295,2339.36498136727,2410.81539684071,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.30640278308,1567.86856989787
76.9516728624535,2767.67819617746,2339.36498136727,2410.81539684071,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.78144160918,1587.24752579501,1567.86856989787
77.0260223048327,2767.75601888393,2339.36498136727,2410.81539684071,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.24752579501,1567.86856989787
77.1003717472119,2769.98978103423,2339.36498136727,2407.26834431604,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.24752579501,1567.86856989787
77.1747211895911,2772.14246428372,2339.36498136727,2403.87584994066,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.24752579501,1567.86856989787
77.2490706319703,2772.1687051206,2339.36498136727,2403.87584994066,2321.00988927626,2171.2228087819,2222.4542270335,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.18997703223,1567.86856989787
77.3234200743494,2772.97214663863,2339.36498136727,2403.87584994066,2321.00988927626,2171.2228087819,2221.57686231621,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.18997703223,1567.86856989787
77.3977695167286,2773.76697000929,2339.36498136727,2403.87584994066,2321.00988927626,2171.2228087819,2220.7094525953,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.18997703223,1567.86856989787
77.4721189591078,2773.79230300491,2339.36498136727,2403.87584994066,2321.00988927626,2171.2228087819,2220.7094525953,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.18997703223,1567.7980636083
77.546468401487,2775.26732774333,2337.86434028695,2403.87584994066,2321.00988927626,2171.2228087819,2220.7094525953,1959.28256098283,1975.41843218505,1875.16730391815,1795.70051346274,1587.18997703223,1567.7980636083
77.6208178438662,2775.26732774333,2337.86434028695,2403.87584994066,2321.00988927626,2171.2228087819,2220.7094525953,1966.33520684419,1975.41843218505,1875.16730391815,1790.07369498044,1587.18997703223,1567.7980636083
77.6951672862454,2775.33848396275,2337.86434028695,2403.87584994066,2321.00988927626,2171.2228087819,2220.7094525953,1966.33520684419,1975.41843218505,1875.16730391815,1789.99873396689,1587.18997703223,1567.7980636083
77.7695167286245,2776.12053157964,2337.86434028695,2403.87584994066,2321.00988927626,2171.2228087819,2219.85055715887,1966.33520684419,1975.41843218505,1875.16730391815,1789.99873396689,1587.18997703223,1567.7980636083
77.8438661710037,2776.12053157964,2337.86434028695,2403.87584994066,2321.00988927626,2171.2228087819,2219.85055715887,1972.88856343934,1975.41843218505,1875.16730391815,1784.73327961291,1587.18997703223,1567.7980636083
77.9182156133829,2776.12053157964,2337.86434028695,2403.87584994066,2297.60849192681,2171.2228087819,2219.85055715887,1993.8040783688,1975.41843218505,1875.16730391815,1784.73327961291,1587.18997703223,1567.7980636083
77.9925650557621,2776.12053157964,2340.25956967401,2403.87584994066,2297.60849192681,2171.2228087819,2219.85055715887,1990.84153875118,1975.41843218505,1875.16730391815,1784.73327961291,1587.18997703223,1567.7980636083
78.0669144981413,2776.24119860264,2340.25956967401,2403.87584994066,2297.60849192681,2171.2228087819,2219.85055715887,1990.84153875118,1975.41843218505,1874.96685312658,1784.73327961291,1587.18997703223,1567.7980636083
78.1412639405204,2777.02268387145,2340.25956967401,2403.87584994066,2297.60849192681,2171.2228087819,2218.99313697805,1990.84153875118,1975.41843218505,1874.96685312658,1784.73327961291,1587.18997703223,1567.7980636083
78.2156133828996,2777.22913039251,2340.25956967401,2403.87584994066,2297.60849192681,2171.2228087819,2218.99313697805,1990.84153875118,1975.1191345076,1874.96685312658,1784.73327961291,1587.18997703223,1567.7980636083
78.2899628252788,2778.41573764145,2340.25956967401,2403.87584994066,2295.9430269184,2171.2228087819,2218.99313697805,1990.84153875118,1975.1191345076,1874.96685312658,1784.73327961291,1587.18997703223,1567.7980636083
78.364312267658,2778.41573764145,2340.25956967401,2403.87584994066,2295.9430269184,2171.2228087819,2218.99313697805,1996.40047247785,1975.1191345076,1874.96685312658,1780.09594618391,1587.18997703223,1567.7980636083
78.4386617100372,2778.41573764145,2340.25956967401,2403.87584994066,2295.9430269184,2171.2228087819,2218.99313697805,2001.60892352341,1975.1191345076,1874.96685312658,1775.73144622197,1587.18997703223,1567.7980636083
78.5130111524164,2778.48086375097,2340.25956967401,2403.87584994066,2295.9430269184,2171.2228087819,2218.99313697805,2001.60892352341,1975.1191345076,1874.96685312658,1775.66568061648,1587.18997703223,1567.7980636083
78.5873605947955,2778.48086375097,2346.63977088183,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2001.60892352341,1975.1191345076,1874.96685312658,1775.66568061648,1587.18997703223,1567.7980636083
78.6617100371747,2778.50674470673,2346.63977088183,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2001.60892352341,1975.1191345076,1874.96685312658,1775.66568061648,1587.13326233556,1567.7980636083
78.7360594795539,2778.53202502509,2346.63977088183,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2001.60892352341,1975.1191345076,1874.96685312658,1775.66568061648,1587.13326233556,1567.72842991917
78.8104089219331,2778.53202502509,2346.63977088183,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2008.95850088518,1975.1191345076,1864.40021536962,1775.66568061648,1587.13326233556,1567.72842991917
78.8847583643123,2778.53202502509,2349.097644804,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2006.08882644608,1975.1191345076,1864.40021536962,1775.66568061648,1587.13326233556,1567.72842991917
78.9591078066914,2778.77510652164,2349.097644804,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2005.81087461484,1975.1191345076,1864.40021536962,1775.66568061648,1587.13326233556,1567.72842991917
79.0334572490706,2780.32752820765,2347.56370353572,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2005.81087461484,1975.1191345076,1864.40021536962,1775.66568061648,1587.13326233556,1567.72842991917
79.1078066914498,2780.3927539181,2347.56370353572,2403.87584994066,2295.9430269184,2171.2228087819,2212.0908188594,2005.81087461484,1975.1191345076,1864.40021536962,1775.59923679367,1587.13326233556,1567.72842991917
79.182156133829,2781.13670816864,2347.56370353572,2403.87584994066,2295.9430269184,2171.2228087819,2211.28400330014,2005.81087461484,1975.1191345076,1864.40021536962,1775.59923679367,1587.13326233556,1567.72842991917
79.2565055762082,2781.13670816864,2347.56370353572,2403.87584994066,2295.9430269184,2171.2228087819,2211.28400330014,2005.81087461484,1975.1191345076,1844.95898437698,1787.44333385573,1587.13326233556,1567.72842991917
79.3308550185874,2781.20624059254,2347.56370353572,2403.87584994066,2295.9430269184,2171.2228087819,2211.28400330014,2005.81087461484,1975.1191345076,1844.95898437698,1787.3738900826,1587.13326233556,1567.72842991917
79.4052044609665,2782.72774614008,2346.05293757583,2403.87584994066,2295.9430269184,2171.2228087819,2211.28400330014,2005.81087461484,1975.1191345076,1844.95898437698,1787.3738900826,1587.13326233556,1567.72842991917
79.4795539033457,2782.72774614008,2346.05293757583,2403.87584994066,2295.9430269184,2171.2228087819,2211.28400330014,2012.12217628933,1975.1191345076,1836.28155826496,1787.3738900826,1587.13326233556,1567.72842991917
79.5539033457249,2782.72774614008,2346.05293757583,2403.87584994066,2297.8604883287,2171.2228087819,2211.28400330014,2012.12217628933,1975.1191345076,1834.19005947901,1787.3738900826,1587.13326233556,1567.72842991917
79.6282527881041,2782.72774614008,2348.55186332971,2403.87584994066,2297.8604883287,2171.2228087819,2211.28400330014,2009.25256455161,1975.1191345076,1834.19005947901,1787.3738900826,1587.13326233556,1567.72842991917
79.7026022304833,2782.72774614008,2350.9629476387,2403.87584994066,2297.8604883287,2171.2228087819,2211.28400330014,2006.48986587263,1975.1191345076,1834.19005947901,1787.3738900826,1587.13326233556,1567.72842991917
79.7769516728625,2782.72774614008,2353.29216443714,2403.87584994066,2297.8604883287,2171.2228087819,2211.28400330014,2003.82655704706,1975.1191345076,1834.19005947901,1787.3738900826,1587.13326233556,1567.72842991917
79.8513011152416,2782.72774614008,2354.24459903334,2403.87584994066,2297.8604883287,2171.2228087819,2211.28400330014,2003.82655704706,1975.1191345076,1832.68476201499,1787.3738900826,1587.13326233556,1567.72842991917
79.9256505576208,2782.72774614008,2359.86731231116,2403.87584994066,2297.8604883287,2171.2228087819,2204.84398483959,2003.82655704706,1975.1191345076,1832.68476201499,1787.3738900826,1587.13326233556,1567.72842991917
80,2782.72774614008,2365.13138105938,2403.87584994066,2297.8604883287,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1787.3738900826,1587.13326233556,1567.72842991917
80.0743494423792,2784.40407542672,2363.59668620747,2403.87584994066,2297.8604883287,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1787.3738900826,1587.13326233556,1567.72842991917
80.1486988847584,2784.47326782672,2363.59668620747,2403.87584994066,2297.8604883287,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1787.30372743061,1587.13326233556,1567.72842991917
80.2230483271375,2784.47326782672,2363.59668620747,2403.87584994066,2298.35416558027,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1787.30372743061,1587.13326233556,1566.6528069813
80.2973977695167,2784.47326782672,2363.59668620747,2403.87584994066,2298.84294548401,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1787.30372743061,1587.13326233556,1565.59197935325
80.3717472118959,2784.47326782672,2363.59668620747,2403.87584994066,2299.32694506953,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1787.30372743061,1587.13326233556,1564.54554235199
80.4460966542751,2784.47326782672,2363.59668620747,2403.87584994066,2300.77016565342,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1564.54554235199
80.5204460966543,2784.47326782672,2363.59668620747,2403.87584994066,2301.24307650795,2171.2228087819,2198.83664670939,2003.82655704706,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1563.52092005338
80.5947955390335,2784.47326782672,2368.62864326395,2403.87584994066,2301.24307650795,2171.2228087819,2193.0832085936,2003.82655704706,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1563.52092005338
80.6691449814126,2784.47326782672,2373.36341034544,2403.87584994066,2301.24307650795,2171.2228087819,2187.68772241851,2003.82655704706,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1563.52092005338
80.7434944237918,2784.7126665311,2373.36341034544,2403.87584994066,2301.24307650795,2171.2228087819,2187.68772241851,2003.56390212567,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1563.52092005338
80.817843866171,2786.78792045955,2373.36341034544,2400.57415603884,2301.24307650795,2171.2228087819,2187.68772241851,2003.56390212567,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1563.52092005338
80.8921933085502,2786.78792045955,2373.36341034544,2400.57415603884,2305.51237663918,2171.2228087819,2187.68772241851,2000.14957984726,1975.1191345076,1832.68476201499,1786.24801628517,1587.13326233556,1563.52092005338
80.9665427509294,2786.88113840359,2373.36341034544,2400.57415603884,2305.51237663918,2171.2228087819,2187.68772241851,2000.14957984726,1975.1191345076,1832.54648919103,1786.24801628517,1587.13326233556,1563.52092005338
81.0408921933086,2786.88113840359,2373.36341034544,2400.57415603884,2309.56261824067,2171.2228087819,2187.68772241851,1996.89401840095,1975.1191345076,1832.54648919103,1786.24801628517,1587.13326233556,1563.52092005338
81.1152416356877,2786.88113840359,2373.36341034544,2400.57415603884,2311.26555964566,2171.2228087819,2187.68772241851,1996.89401840095,1975.1191345076,1830.60786899272,1786.24801628517,1587.13326233556,1563.52092005338
81.1895910780669,2786.88113840359,2373.36341034544,2400.57415603884,2312.55947228698,2171.2228087819,2187.68772241851,1996.89401840095,1975.1191345076,1830.60786899272,1785.24492365579,1587.13326233556,1563.52092005338
81.2639405204461,2786.88113840359,2373.36341034544,2400.57415603884,2314.19895173086,2171.2228087819,2187.68772241851,1996.89401840095,1975.1191345076,1828.73223644092,1785.24492365579,1587.13326233556,1563.52092005338
81.3382899628253,2786.88113840359,2373.36341034544,2400.57415603884,2314.19895173086,2171.2228087819,2187.68772241851,2001.82245751681,1975.1191345076,1828.73223644092,1780.59911538658,1587.13326233556,1563.52092005338
81.4126394052045,2786.88113840359,2373.36341034544,2400.57415603884,2314.19895173086,2171.2228087819,2187.68772241851,2006.46363628099,1975.1191345076,1828.73223644092,1776.2179732064,1587.13326233556,1563.52092005338
81.4869888475836,2786.88113840359,2373.36341034544,2400.57415603884,2314.19895173086,2171.2228087819,2187.68772241851,2006.46363628099,1975.1191345076,1811.98318160562,1787.14047068147,1587.13326233556,1563.52092005338
81.5613382899628,2786.88113840359,2373.36341034544,2400.57415603884,2314.19895173086,2171.2228087819,2187.68772241851,2006.46363628099,1975.1191345076,1796.94804803179,1797.10440859573,1587.13326233556,1563.52092005338
81.635687732342,2786.88113840359,2373.36341034544,2400.57415603884,2314.19895173086,2175.0626432921,2187.68772241851,2006.46363628099,1975.1191345076,1796.94804803179,1795.07556424084,1587.13326233556,1563.52092005338
81.7100371747212,2786.88113840359,2373.36341034544,2400.57415603884,2315.52774900367,2175.0626432921,2187.68772241851,2006.46363628099,1975.1191345076,1796.94804803179,1794.12921121897,1587.13326233556,1563.52092005338
81.7843866171004,2786.88113840359,2373.36341034544,2400.57415603884,2315.52774900367,2178.71328906578,2187.68772241851,2006.46363628099,1975.1191345076,1796.94804803179,1792.18707700017,1587.13326233556,1563.52092005338
81.8587360594796,2786.88113840359,2373.36341034544,2400.57415603884,2315.52774900367,2178.71328906578,2187.68772241851,2011.21784299705,1975.1191345076,1796.94804803179,1788.01773971076,1587.13326233556,1563.52092005338
81.9330855018587,2786.88113840359,2373.36341034544,2400.57415603884,2316.79555114257,2178.71328906578,2187.68772241851,2011.21784299705,1975.1191345076,1796.94804803179,1787.13481097654,1587.13326233556,1563.52092005338
82.0074349442379,2786.88113840359,2373.36341034544,2400.57415603884,2318.04262298723,2178.71328906578,2187.68772241851,2011.21784299705,1975.1191345076,1796.94804803179,1786.26379618134,1587.13326233556,1563.52092005338
82.0817843866171,2786.95217633678,2373.36341034544,2400.57415603884,2318.04262298723,2178.71328906578,2187.68772241851,2011.21784299705,1975.1191345076,1796.94804803179,1786.20063269581,1587.13326233556,1563.52092005338
82.1561338289963,2786.95217633678,2373.36341034544,2400.57415603884,2319.27168180565,2178.71328906578,2187.68772241851,2011.21784299705,1975.1191345076,1796.94804803179,1785.3392969315,1587.13326233556,1563.52092005338
82.2304832713755,2786.95217633678,2373.36341034544,2400.57415603884,2320.48127945504,2178.71328906578,2187.68772241851,2011.21784299705,1975.1191345076,1796.94804803179,1784.48922239926,1587.13326233556,1563.52092005338
82.3048327137546,2787.62868399964,2373.36341034544,2400.57415603884,2320.48127945504,2178.71328906578,2187.00206925884,2011.21784299705,1975.1191345076,1796.94804803179,1784.48922239926,1587.13326233556,1563.52092005338
82.3791821561338,2787.62868399964,2374.00407260324,2400.57415603884,2320.48127945504,2178.71328906578,2187.00206925884,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1563.52092005338
82.453531598513,2787.62868399964,2378.72061258132,2400.57415603884,2320.48127945504,2178.71328906578,2181.68615504162,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1563.52092005338
82.5278810408922,2787.62868399964,2383.16846258293,2400.57415603884,2320.48127945504,2178.71328906578,2176.68752438161,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1563.52092005338
82.6022304832714,2787.62868399964,2383.16846258293,2400.57415603884,2302.80224132992,2178.71328906578,2190.31487969909,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1563.52092005338
82.6765799256506,2787.62868399964,2387.63596591731,2400.57415603884,2302.80224132992,2178.71328906578,2185.42484976976,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1563.52092005338
82.7509293680297,2787.62868399964,2387.82715106463,2400.57415603884,2302.80224132992,2178.71328906578,2185.42484976976,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1562.89856113997
82.8252788104089,2787.62868399964,2392.0584543825,2400.57415603884,2302.80224132992,2178.71328906578,2180.79943000644,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1562.89856113997
82.8996282527881,2787.62868399964,2378.98692094415,2400.57415603884,2302.80224132992,2205.4865235303,2180.79943000644,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1562.89856113997
82.9739776951673,2787.65463010128,2378.98692094415,2400.57415603884,2302.80224132992,2205.4865235303,2180.79943000644,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1562.83251118724
83.0483271375465,2788.31475590908,2378.98692094415,2400.57415603884,2302.80224132992,2205.4865235303,2180.19589720804,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1562.83251118724
83.1226765799257,2789.08800383691,2378.98692094415,2400.57415603884,2302.80224132992,2204.24900663169,2180.19589720804,2011.21784299705,1975.1191345076,1796.94804803179,1783.86486032344,1587.13326233556,1562.83251118724
83.1970260223048,2789.08800383691,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2180.19589720804,2011.21784299705,1975.1191345076,1795.36819065153,1783.86486032344,1587.13326233556,1562.83251118724
83.271375464684,2789.08800383691,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2180.19589720804,2011.21784299705,1982.88952659315,1795.36819065153,1779.22117648151,1587.13326233556,1562.83251118724
83.3457249070632,2789.11386799059,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2180.19589720804,2011.21784299705,1982.88952659315,1795.36819065153,1779.22117648151,1587.13326233556,1562.76677444044
83.4200743494424,2789.76950522081,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2011.21784299705,1982.88952659315,1795.36819065153,1779.22117648151,1587.13326233556,1562.76677444044
83.4944237918216,2789.76950522081,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2012.88926754413,1982.88952659315,1795.36819065153,1779.22117648151,1587.13326233556,1557.93984072315
83.5687732342007,2790.03034978986,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2012.62383498141,1982.88952659315,1795.36819065153,1779.22117648151,1587.13326233556,1557.93984072315
83.6431226765799,2790.03034978986,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2012.62383498141,1982.88952659315,1780.66012827062,1788.63956339989,1587.13326233556,1557.93984072315
83.7174721189591,2790.03034978986,2378.98692094415,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1784.70592753698,1587.13326233556,1557.93984072315
83.7918215613383,2790.03034978986,2379.58216528132,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1784.10872465338,1587.13326233556,1557.93984072315
83.8661710037175,2791.92748362262,2377.99547052754,2400.57415603884,2304.21314964959,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1784.10872465338,1587.13326233556,1557.93984072315
83.9405204460967,2791.92748362262,2377.99547052754,2400.57415603884,2305.51524063164,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1783.20277409685,1587.13326233556,1557.93984072315
84.0148698884758,2791.99775027474,2377.99547052754,2400.57415603884,2305.51524063164,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1783.14293541119,1587.13326233556,1557.93984072315
84.089219330855,2791.99775027474,2377.99547052754,2400.57415603884,2306.79764638926,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1782.24752524135,1587.13326233556,1557.93984072315
84.1635687732342,2792.06791885363,2377.99547052754,2400.57415603884,2306.79764638926,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1782.18797679375,1587.13326233556,1557.93984072315
84.2379182156134,2792.06791885363,2378.5891728738,2400.57415603884,2306.79764638926,2204.24900663169,2179.59313839876,2017.31274670357,1982.88952659315,1780.66012827062,1781.59359348759,1587.13326233556,1557.93984072315
84.3122676579926,2792.06791885363,2378.5891728738,2400.57415603884,2306.79764638926,2204.24900663169,2179.59313839876,2017.31274670357,1990.26672548246,1780.66012827062,1777.31156812298,1587.13326233556,1557.93984072315
84.3866171003718,2792.06791885363,2378.5891728738,2400.57415603884,2306.79764638926,2204.24900663169,2179.59313839876,2017.31274670357,1997.08380682066,1780.66012827062,1773.29587061905,1587.13326233556,1557.93984072315
84.4609665427509,2792.06791885363,2379.15520356539,2400.57415603884,2306.79764638926,2204.24900663169,2179.59313839876,2017.31274670357,1997.08380682066,1780.66012827062,1772.74824421466,1587.13326233556,1557.93984072315
84.5353159851301,2792.06791885363,2383.49123450377,2400.57415603884,2306.79764638926,2204.24900663169,2174.75845418791,2017.31274670357,1997.08380682066,1780.66012827062,1772.74824421466,1587.13326233556,1557.93984072315
84.6096654275093,2792.06791885363,2384.06839661659,2400.57415603884,2306.79764638926,2204.24900663169,2174.75845418791,2017.31274670357,1997.08380682066,1779.74885559144,1772.74824421466,1587.13326233556,1557.93984072315
84.6840148698885,2792.06791885363,2373.5779073794,2400.57415603884,2322.31375207648,2204.24900663169,2174.75845418791,2017.31274670357,1997.08380682066,1779.74885559144,1772.74824421466,1587.13326233556,1557.93984072315
84.7583643122677,2792.06791885363,2373.5779073794,2400.57415603884,2322.31375207648,2204.24900663169,2174.75845418791,2017.31274670357,2003.4401410107,1779.74885559144,1768.94567666868,1587.13326233556,1557.93984072315
84.8327137546468,2792.06791885363,2373.5779073794,2400.57415603884,2322.31375207648,2204.24900663169,2174.75845418791,2017.31274670357,2009.36422826913,1779.74885559144,1765.35652934603,1587.13326233556,1557.93984072315
84.907063197026,2792.06791885363,2374.11757172355,2400.57415603884,2322.31375207648,2204.24900663169,2174.75845418791,2017.31274670357,2009.36422826913,1779.74885559144,1764.82791819462,1587.13326233556,1557.93984072315
84.9814126394052,2792.06791885363,2378.32773630792,2400.57415603884,2322.31375207648,2204.24900663169,2169.94582594016,2017.31274670357,2009.36422826913,1779.74885559144,1764.82791819462,1587.13326233556,1557.93984072315
85.0557620817844,2792.06791885363,2378.32773630792,2400.57415603884,2323.35666021428,2204.24900663169,2169.94582594016,2017.31274670357,2009.36422826913,1779.74885559144,1764.11885623637,1587.13326233556,1557.93984072315
85.1301115241636,2793.52541107233,2378.32773630792,2400.57415603884,2321.67719353081,2204.24900663169,2169.94582594016,2017.31274670357,2009.36422826913,1779.74885559144,1764.11885623637,1587.13326233556,1557.93984072315
85.2044609665428,2793.52541107233,2368.5502635435,2400.57415603884,2335.96647827424,2204.24900663169,2169.94582594016,2017.31274670357,2009.36422826913,1779.74885559144,1764.11885623637,1587.13326233556,1557.93984072315
85.2788104089219,2793.55089474178,2368.5502635435,2400.57415603884,2335.96647827424,2204.24900663169,2169.94582594016,2017.31274670357,2009.36422826913,1779.74885559144,1764.11885623637,1587.13326233556,1557.87758950328
85.3531598513011,2794.17956433859,2368.5502635435,2400.57415603884,2335.96647827424,2204.24900663169,2169.37645331716,2017.31274670357,2009.36422826913,1779.74885559144,1764.11885623637,1587.13326233556,1557.87758950328
85.4275092936803,2794.95743205972,2368.5502635435,2400.57415603884,2335.96647827424,2203.01048656054,2169.37645331716,2017.31274670357,2009.36422826913,1779.74885559144,1764.11885623637,1587.13326233556,1557.87758950328
85.5018587360595,2794.95743205972,2369.09020575266,2400.57415603884,2335.96647827424,2203.01048656054,2169.37645331716,2017.31274670357,2009.36422826913,1779.74885559144,1763.57041073585,1587.13326233556,1557.87758950328
85.5762081784387,2794.95743205972,2373.20896548508,2400.57415603884,2335.96647827424,2203.01048656054,2164.5870544528,2017.31274670357,2009.36422826913,1779.74885559144,1763.57041073585,1587.13326233556,1557.87758950328
85.6505576208178,2794.95743205972,2364.11931477743,2400.57415603884,2349.29790979323,2203.01048656054,2164.5870544528,2017.31274670357,2009.36422826913,1779.74885559144,1763.57041073585,1587.13326233556,1557.87758950328
85.724907063197,2794.95743205972,2364.11931477743,2400.57415603884,2349.29790979323,2203.01048656054,2170.22701977122,2017.31274670357,2001.16873207802,1779.74885559144,1763.57041073585,1587.13326233556,1557.87758950328
85.7992565055762,2795.02165854107,2364.11931477743,2400.57415603884,2349.29790979323,2203.01048656054,2170.22701977122,2017.31274670357,2001.16873207802,1779.74885559144,1763.51860386615,1587.13326233556,1557.87758950328
85.8736059479554,2795.02165854107,2364.11931477743,2400.57415603884,2349.29790979323,2203.01048656054,2171.97121783141,2017.31274670357,2001.16873207802,1779.74885559144,1761.92568381384,1587.13326233556,1557.87758950328
85.9479553903346,2795.65788851671,2364.11931477743,2400.57415603884,2349.29790979323,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1779.74885559144,1761.92568381384,1587.13326233556,1557.87758950328
86.0223048327138,2795.73166605406,2364.11931477743,2400.57415603884,2349.29790979323,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1779.65384529042,1761.92568381384,1587.13326233556,1557.87758950328
86.0966542750929,2795.73166605406,2364.11931477743,2400.57415603884,2349.6096028807,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1779.65384529042,1761.92568381384,1587.13326233556,1557.11283793896
86.1710037174721,2795.80570506132,2364.11931477743,2400.57415603884,2349.6096028807,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1779.55861373578,1761.92568381384,1587.13326233556,1557.11283793896
86.2453531598513,2795.80570506132,2364.11931477743,2400.57415603884,2349.6096028807,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1785.94427168667,1761.92568381384,1587.13326233556,1543.13921109652
86.3197026022305,2797.58364987877,2362.76576359381,2400.57415603884,2349.6096028807,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1785.94427168667,1761.92568381384,1587.13326233556,1543.13921109652
86.3940520446097,2797.65913130833,2362.76576359381,2400.57415603884,2349.6096028807,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1785.84882260727,1761.92568381384,1587.13326233556,1543.13921109652
86.4684014869889,2797.65913130833,2354.20489499144,2400.57415603884,2361.96010530379,2203.01048656054,2171.41928720624,2017.31274670357,2001.16873207802,1785.84882260727,1761.92568381384,1587.13326233556,1543.13921109652
86.542750929368,2797.65913130833,2354.20489499144,2400.57415603884,2364.6755733589,2203.01048656054,2171.41928720624,2017.31274670357,1997.93925916079,1785.84882260727,1761.92568381384,1587.13326233556,1543.13921109652
86.6171003717472,2797.65913130833,2354.20489499144,2400.57415603884,2365.54407578391,2203.01048656054,2171.41928720624,2017.31274670357,1997.93925916079,1784.78512204619,1761.92568381384,1587.13326233556,1543.13921109652
86.6914498141264,2797.65913130833,2354.20489499144,2400.57415603884,2368.13359352966,2203.01048656054,2171.41928720624,2017.31274670357,1994.85566935651,1784.78512204619,1761.92568381384,1587.13326233556,1543.13921109652
86.7657992565056,2799.4759272165,2354.20489499144,2400.57415603884,2366.26727531805,2203.01048656054,2171.41928720624,2017.31274670357,1994.85566935651,1784.78512204619,1761.92568381384,1587.13326233556,1543.13921109652
86.8401486988848,2801.24566583751,2354.20489499144,2400.57415603884,2364.44987419047,2203.01048656054,2171.41928720624,2017.31274670357,1994.85566935651,1784.78512204619,1761.92568381384,1587.13326233556,1543.13921109652
86.9144981412639,2802.97077637252,2354.20489499144,2400.57415603884,2362.67884850284,2203.01048656054,2171.41928720624,2017.31274670357,1994.85566935651,1784.78512204619,1761.92568381384,1587.13326233556,1543.13921109652
86.9888475836431,2802.97077637252,2354.20489499144,2400.57415603884,2362.67884850284,2203.01048656054,2171.41928720624,2017.31274670357,2000.59410748497,1784.78512204619,1758.13174429658,1587.13326233556,1543.13921109652
87.0631970260223,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2203.01048656054,2171.41928720624,2017.31274670357,2000.59410748497,1784.78512204619,1758.13174429658,1587.13326233556,1543.13921109652
87.1375464684015,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2203.01048656054,2171.41928720624,2017.31274670357,2005.97800584231,1784.78512204619,1754.53376244151,1587.13326233556,1543.13921109652
87.2118959107807,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2203.01048656054,2171.41928720624,2017.31274670357,2011.03662590699,1784.78512204619,1751.12211042707,1587.13326233556,1543.13921109652
87.2862453531599,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2203.01048656054,2171.41928720624,2017.31274670357,2015.80450294379,1784.78512204619,1747.8788660837,1587.13326233556,1543.13921109652
87.360594795539,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2206.18613312214,2171.41928720624,2017.31274670357,2015.80450294379,1782.24482948138,1747.8788660837,1587.13326233556,1543.13921109652
87.4349442379182,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2215.15436956819,2171.41928720624,2017.31274670357,2009.48311743645,1782.24482948138,1747.8788660837,1587.13326233556,1543.13921109652
87.5092936802974,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2216.00204388389,2171.41928720624,2017.31274670357,2009.48311743645,1782.24482948138,1747.8788660837,1587.13326233556,1541.70129025493
87.5836431226766,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2218.2983923281,2171.41928720624,2017.31274670357,2009.48311743645,1782.24482948138,1746.70450455664,1587.13326233556,1541.70129025493
87.6579925650558,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2218.2983923281,2171.41928720624,2021.50205832487,2009.48311743645,1782.24482948138,1743.63609646805,1587.13326233556,1541.70129025493
87.7323420074349,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2218.2983923281,2171.41928720624,2021.50205832487,2009.48311743645,1766.57086351885,1752.91435106897,1587.13326233556,1541.70129025493
87.8066914498141,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2218.2983923281,2171.41928720624,2021.50205832487,2009.48311743645,1766.57086351885,1756.77256586768,1587.13326233556,1527.78430043268
87.8810408921933,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2218.2983923281,2173.19019237863,2021.50205832487,2009.48311743645,1766.57086351885,1755.32153685017,1587.13326233556,1527.78430043268
87.9553903345725,2805.04267997519,2354.20489499144,2397.26827491053,2362.67884850284,2218.2983923281,2173.19019237863,2025.73005936042,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1527.78430043268
88.0297397769517,2805.04267997519,2354.20489499144,2397.26827491053,2345.65910413637,2218.2983923281,2188.0240081416,2025.73005936042,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1527.78430043268
88.1040892193309,2805.04267997519,2354.20489499144,2397.26827491053,2345.65910413637,2218.2983923281,2193.60783315339,2019.22764566327,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1527.78430043268
88.17843866171,2805.04267997519,2354.20489499144,2397.26827491053,2345.65910413637,2200.33023148971,2203.69616832129,2019.22764566327,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1527.78430043268
88.2527881040892,2805.04267997519,2354.20489499144,2397.26827491053,2345.65910413637,2201.12760492551,2203.69616832129,2019.22764566327,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1526.44148805006
88.3271375464684,2805.04267997519,2354.20489499144,2397.26827491053,2345.65910413637,2201.12760492551,2208.59874484197,2013.39722713845,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1526.44148805006
88.4014869888476,2805.04267997519,2354.20489499144,2397.26827491053,2330.25180671941,2201.12760492551,2221.1952924377,2013.39722713845,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1526.44148805006
88.4758364312268,2805.04267997519,2354.20489499144,2397.26827491053,2330.25180671941,2201.12760492551,2225.47978899304,2008.2127411114,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1526.44148805006
88.550185873606,2805.04267997519,2354.20489499144,2397.26827491053,2316.10048190044,2201.12760492551,2236.91209042924,2008.2127411114,2009.48311743645,1766.57086351885,1752.33935256784,1587.13326233556,1526.44148805006
88.6245353159851,2805.04267997519,2354.20489499144,2397.26827491053,2316.10048190044,2201.12760492551,2237.98302909922,2008.2127411114,2009.48311743645,1766.57086351885,1751.32563240522,1587.13326233556,1526.44148805006
88.6988847583643,2805.04267997519,2354.20489499144,2397.26827491053,2316.10048190044,2201.12760492551,2241.73278241264,2003.57053799185,2009.48311743645,1766.57086351885,1751.32563240522,1587.13326233556,1526.44148805006
88.7732342007435,2805.04267997519,2354.20489499144,2397.5671497214,2316.10048190044,2201.12760492551,2241.73278241264,2003.57053799185,2009.48311743645,1766.57086351885,1751.32563240522,1587.13326233556,1525.98564757894
88.8475836431227,2805.04267997519,2354.20489499144,2397.5671497214,2316.10048190044,2201.12760492551,2245.30762094483,1999.16762722242,2009.48311743645,1766.57086351885,1751.32563240522,1587.13326233556,1525.98564757894
88.9219330855019,2805.04267997519,2360.46762640664,2397.5671497214,2316.10048190044,2201.12760492551,2239.34269081599,1999.16762722242,2009.48311743645,1766.57086351885,1751.32563240522,1587.13326233556,1525.98564757894
88.996282527881,2805.04267997519,2366.33644706204,2397.5671497214,2316.10048190044,2201.12760492551,2233.7458393006,1999.16762722242,2009.48311743645,1766.57086351885,1751.32563240522,1587.13326233556,1525.98564757894
89.0706319702602,2805.04267997519,2366.33644706204,2397.5671497214,2319.39991758668,2201.12760492551,2233.7458393006,1999.16762722242,2005.64045035873,1766.57086351885,1751.32563240522,1587.13326233556,1525.98564757894
89.1449814126394,2805.04267997519,2366.33644706204,2397.5671497214,2319.39991758668,2201.12760492551,2233.7458393006,1999.16762722242,1985.93333272188,1789.00161281791,1751.32563240522,1587.13326233556,1525.98564757894
89.2193308550186,2805.04267997519,2366.33644706204,2397.5671497214,2319.39991758668,2201.12760492551,2233.7458393006,1999.16762722242,1985.93333272188,1794.15789844723,1751.32563240522,1587.13326233556,1515.40668198443
89.2936802973978,2805.12193871568,2366.33644706204,2397.5671497214,2319.39991758668,2201.12760492551,2233.7458393006,1999.16762722242,1985.93333272188,1794.06542896662,1751.32563240522,1587.13326233556,1515.40668198443
89.368029739777,2805.12193871568,2366.33644706204,2397.5671497214,2319.39991758668,2201.12760492551,2233.7458393006,1999.16762722242,1967.73784721138,1814.20398085082,1751.32563240522,1587.13326233556,1515.40668198443
89.4423791821561,2805.12193871568,2366.33644706204,2397.5671497214,2319.39991758668,2201.12760492551,2233.7458393006,1999.16762722242,1951.01902116063,1832.64581102561,1751.32563240522,1587.13326233556,1515.40668198443
89.5167286245353,2805.12193871568,2366.33644706204,2397.5671497214,2320.73431028075,2201.12760492551,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.32563240522,1587.13326233556,1515.40668198443
89.5910780669145,2805.89191066138,2366.33644706204,2397.5671497214,2320.73431028075,2200.03274725051,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.32563240522,1587.13326233556,1515.40668198443
89.6654275092937,2807.31154653668,2366.33644706204,2397.5671497214,2319.39690695956,2200.03274725051,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.32563240522,1587.13326233556,1515.40668198443
89.7397769516729,2808.70304760803,2366.33644706204,2397.5671497214,2318.08526400627,2200.03274725051,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.32563240522,1587.13326233556,1515.40668198443
89.814126394052,2808.76128034215,2366.33644706204,2397.5671497214,2318.08526400627,2200.03274725051,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.2806810048,1587.13326233556,1515.40668198443
89.8884758364312,2809.50385539959,2366.33644706204,2397.5671497214,2318.08526400627,2198.96626767948,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.2806810048,1587.13326233556,1515.40668198443
89.9628252788104,2809.52264366921,2366.33644706204,2397.5671497214,2318.08526400627,2198.96626767948,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.2806810048,1587.13326233556,1515.36772487053
90.0371747211896,2809.54146852812,2366.33644706204,2397.5671497214,2318.08526400627,2198.96626767948,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.2806810048,1587.13326233556,1515.32874454029
90.1115241635688,2811.28968985491,2364.96533408786,2397.5671497214,2318.08526400627,2198.96626767948,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.2806810048,1587.13326233556,1515.32874454029
90.185873605948,2811.28968985491,2364.96533408786,2397.5671497214,2318.08526400627,2200.08220318367,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1751.2806810048,1585.39414973947,1515.32874454029
90.2602230483271,2811.28968985491,2365.51056198138,2397.5671497214,2318.08526400627,2200.08220318367,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1750.74492961482,1585.39414973947,1515.32874454029
90.3345724907063,2813.01007984847,2364.16008676172,2397.5671497214,2318.08526400627,2200.08220318367,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1750.74492961482,1585.39414973947,1515.32874454029
90.4089219330855,2814.69154188253,2362.83681192574,2397.5671497214,2318.08526400627,2200.08220318367,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1750.74492961482,1585.39414973947,1515.32874454029
90.4832713754647,2814.69154188253,2362.83681192574,2397.5671497214,2318.08526400627,2202.55502353005,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1749.41909693898,1585.39414973947,1515.32874454029
90.5576208178439,2814.69154188253,2362.83681192574,2397.5671497214,2318.08526400627,2204.9517428169,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1748.12467437163,1585.39414973947,1515.32874454029
90.631970260223,2815.42205281146,2362.83681192574,2397.5671497214,2318.08526400627,2203.91520159986,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1748.12467437163,1585.39414973947,1515.32874454029
90.7063197026022,2815.42205281146,2362.83681192574,2397.5671497214,2318.08526400627,2206.24343850689,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1746.84987690676,1585.39414973947,1515.32874454029
90.7806691449814,2817.43046286526,2362.83681192574,2394.35039309212,2318.08526400627,2206.24343850689,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1746.84987690676,1585.39414973947,1515.32874454029
90.8550185873606,2817.45623045805,2362.83681192574,2394.35039309212,2318.08526400627,2206.24343850689,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1746.84987690676,1585.34076210948,1515.32874454029
90.9293680297398,2818.17642875432,2362.83681192574,2394.35039309212,2318.08526400627,2205.22751809524,2233.7458393006,1999.16762722242,1951.01902116063,1831.07528316848,1746.84987690676,1585.34076210948,1515.32874454029
91.003717472119,2818.39980249683,2362.83681192574,2394.35039309212,2318.08526400627,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1831.07528316848,1746.84987690676,1585.34076210948,1515.32874454029
91.0780669144981,2818.39980249683,2363.38277359563,2394.35039309212,2318.08526400627,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1831.07528316848,1746.31627825172,1585.34076210948,1515.32874454029
91.1524163568773,2818.45287046958,2363.38277359563,2394.35039309212,2318.08526400627,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1831.07528316848,1746.27389986927,1585.34076210948,1515.32874454029
91.2267657992565,2818.54180934899,2363.38277359563,2394.35039309212,2318.08526400627,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1830.97196920911,1746.27389986927,1585.34076210948,1515.32874454029
91.3011152416357,2819.828653189,2363.38277359563,2394.35039309212,2316.80766327083,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1830.97196920911,1746.27389986927,1585.34076210948,1515.32874454029
91.3754646840149,2821.09208240977,2363.38277359563,2394.35039309212,2315.55322746528,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1830.97196920911,1746.27389986927,1585.34076210948,1515.32874454029
91.449814126394,2822.3329755772,2363.38277359563,2394.35039309212,2314.32108891017,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1830.97196920911,1746.27389986927,1585.34076210948,1515.32874454029
91.5241635687732,2822.38440399901,2363.38277359563,2394.35039309212,2314.32108891017,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1830.97196920911,1746.23192600218,1585.34076210948,1515.32874454029
91.5985130111524,2822.40165611074,2363.38277359563,2394.35039309212,2314.32108891017,2205.22751809524,2233.7458393006,1998.94603076348,1951.01902116063,1830.97196920911,1746.23192600218,1585.34076210948,1515.29193752256
91.6728624535316,2822.40165611074,2363.38277359563,2394.35039309212,2316.88583122202,2205.22751809524,2233.7458393006,1998.94603076348,1948.16569010646,1830.97196920911,1746.23192600218,1585.34076210948,1515.29193752256
91.7472118959108,2822.45340952326,2363.38277359563,2394.35039309212,2316.88583122202,2205.22751809524,2233.7458393006,1998.94603076348,1948.16569010646,1830.97196920911,1746.18961160397,1585.34076210948,1515.29193752256
91.82156133829,2822.45340952326,2363.38277359563,2394.35039309212,2319.3618633899,2205.22751809524,2233.7458393006,1998.94603076348,1945.41631420594,1830.97196920911,1746.18961160397,1585.34076210948,1515.29193752256
91.8959107806691,2822.672412025,2363.38277359563,2394.35039309212,2319.3618633899,2205.22751809524,2233.7458393006,1998.72436130259,1945.41631420594,1830.97196920911,1746.18961160397,1585.34076210948,1515.29193752256
91.9702602230483,2822.89110541846,2363.38277359563,2394.35039309212,2319.3618633899,2205.22751809524,2233.7458393006,1998.5030140261,1945.41631420594,1830.97196920911,1746.18961160397,1585.34076210948,1515.29193752256
92.0446096654275,2822.89110541846,2363.38277359563,2394.35039309212,2319.3618633899,2205.22751809524,2233.7458393006,1999.99518822398,1945.41631420594,1830.97196920911,1746.18961160397,1585.34076210948,1511.72891622483
92.1189591078067,2822.89110541846,2363.38277359563,2394.35039309212,2319.3618633899,2205.22751809524,2233.7458393006,2006.29103475433,1945.41631420594,1823.46672534563,1746.18961160397,1585.34076210948,1511.72891622483
92.1933085501859,2823.05504414093,2363.38277359563,2394.35039309212,2319.3618633899,2205.22751809524,2233.7458393006,2006.29103475433,1945.24046270302,1823.46672534563,1746.18961160397,1585.34076210948,1511.72891622483
92.2676579925651,2823.05504414093,2363.38277359563,2394.35039309212,2326.88014734024,2194.04149976243,2233.7458393006,2006.29103475433,1945.24046270302,1823.46672534563,1746.18961160397,1585.34076210948,1511.72891622483
92.3420074349442,2823.05504414093,2363.38277359563,2394.35039309212,2329.93166031515,2194.04149976243,2233.7458393006,2003.12952525254,1945.24046270302,1823.46672534563,1746.18961160397,1585.34076210948,1511.72891622483
92.4163568773234,2823.05504414093,2363.38277359563,2394.35039309212,2329.93166031515,2194.04149976243,2235.44395801252,2003.12952525254,1945.24046270302,1821.06191356846,1746.18961160397,1585.34076210948,1511.72891622483
92.4907063197026,2823.1379279652,2363.38277359563,2394.35039309212,2329.93166031515,2194.04149976243,2235.44395801252,2003.12952525254,1945.24046270302,1820.96782186295,1746.18961160397,1585.34076210948,1511.72891622483
92.5650557620818,2823.1379279652,2363.38277359563,2394.35039309212,2329.93166031515,2194.04149976243,2235.44395801252,2004.51299609327,1945.24046270302,1820.96782186295,1746.18961160397,1585.34076210948,1508.36129487403
92.639405204461,2824.49285807936,2363.38277359563,2394.35039309212,2328.66450907032,2194.04149976243,2235.44395801252,2004.51299609327,1945.24046270302,1820.96782186295,1746.18961160397,1585.34076210948,1508.36129487403
92.7137546468401,2824.49285807936,2369.61501772348,2394.35039309212,2328.66450907032,2194.04149976243,2229.36077870665,2004.51299609327,1945.24046270302,1820.96782186295,1746.18961160397,1585.34076210948,1508.36129487403
92.7881040892193,2824.54514876125,2369.61501772348,2394.35039309212,2328.66450907032,2194.04149976243,2229.36077870665,2004.51299609327,1945.24046270302,1820.96782186295,1746.14611194499,1585.34076210948,1508.36129487403
92.8624535315985,2824.54514876125,2371.75391660732,2394.35039309212,2328.66450907032,2194.04149976243,2229.36077870665,2001.99043635725,1945.24046270302,1820.96782186295,1746.14611194499,1585.34076210948,1508.36129487403
92.9368029739777,2824.54514876125,2377.49984102959,2394.35039309212,2328.66450907032,2194.04149976243,2223.68830234801,2001.99043635725,1945.24046270302,1820.96782186295,1746.14611194499,1585.34076210948,1508.36129487403
93.0111524163569,2824.54514876125,2377.49984102959,2394.35039309212,2314.22745597881,2215.66138285373,2223.68830234801,2001.99043635725,1945.24046270302,1820.96782186295,1746.14611194499,1585.34076210948,1508.36129487403
93.0855018587361,2824.54514876125,2377.49984102959,2394.35039309212,2315.0549225888,2215.66138285373,2223.68830234801,2001.99043635725,1945.24046270302,1820.96782186295,1745.39921390036,1585.34076210948,1508.36129487403
93.1598513011152,2824.54514876125,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2223.68830234801,2001.99043635725,1945.24046270302,1820.96782186295,1744.12612369375,1585.34076210948,1508.36129487403
93.2342007434944,2824.54514876125,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,1997.06335311148,1945.24046270302,1820.96782186295,1744.12612369375,1585.34076210948,1508.36129487403
93.3085501858736,2824.62878569219,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,1997.06335311148,1945.24046270302,1820.87253713182,1744.12612369375,1585.34076210948,1508.36129487403
93.3828996282528,2824.64577935723,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,1997.06335311148,1945.24046270302,1820.87253713182,1744.12612369375,1585.34076210948,1508.32673864698
93.457249070632,2824.64577935723,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,1999.09461790733,1945.24046270302,1820.87253713182,1744.12612369375,1580.33691318978,1508.32673864698
93.5315985130111,2824.69856466205,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,1999.09461790733,1945.24046270302,1820.87253713182,1744.08240305493,1580.33691318978,1508.32673864698
93.6059479553903,2824.69856466205,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,2004.88435184462,1945.24046270302,1813.68918308812,1744.08240305493,1580.33691318978,1508.32673864698
93.6802973977695,2824.92999885891,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,2004.673461528,1945.24046270302,1813.68918308812,1744.08240305493,1580.33691318978,1508.32673864698
93.7546468401487,2825.01080711367,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.73577343721,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1580.33691318978,1508.32673864698
93.8289962825279,2825.79970882982,2377.49984102959,2394.35039309212,2315.0549225888,2217.72126945406,2227.11834803863,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1580.33691318978,1508.32673864698
93.9033457249071,2825.79970882982,2383.13708125084,2394.35039309212,2315.0549225888,2217.72126945406,2221.6621502215,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1580.33691318978,1508.32673864698
93.9776951672862,2825.79970882982,2383.35786960093,2394.35039309212,2315.0549225888,2217.72126945406,2221.6621502215,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1579.74374628031,1508.32673864698
94.0520446096654,2825.79970882982,2388.6524912919,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1579.74374628031,1508.32673864698
94.1263940520446,2825.82486528413,2388.6524912919,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1579.69362522553,1508.32673864698
94.2007434944238,2827.68905770766,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1813.59958546153,1744.08240305493,1579.69362522553,1508.32673864698
94.275092936803,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1813.51028947797,1744.08240305493,1579.69362522553,1508.32673864698
94.3494423791822,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1797.76184792772,1755.62262090381,1579.69362522553,1508.32673864698
94.4237918215613,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1802.02961224549,1755.62262090381,1579.69362522553,1499.16432469908
94.4981412639405,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1787.85559136542,1766.33632685357,1579.69362522553,1499.16432469908
94.5724907063197,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1787.85559136542,1769.7603336048,1579.69362522553,1489.45620200599
94.6468401486989,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1787.85559136542,1769.7603336048,1547.62563111578,1519.80978231624
94.7211895910781,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1787.85559136542,1773.41360149679,1547.62563111578,1510.36960230849
94.7955390334572,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1945.24046270302,1792.15216443725,1773.41360149679,1547.62563111578,1502.34679334445
94.8698884758364,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1921.28104961044,1792.15216443725,1773.41360149679,1547.62563111578,1544.31944668902
94.9442379182156,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1921.28104961044,1796.97272741185,1773.41360149679,1547.62563111578,1535.62939318529
95.0185873605948,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1921.28104961044,1801.67500015491,1773.41360149679,1537.63375898394,1535.62939318529
95.092936802974,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1921.28104961044,1789.15536690533,1783.30527791427,1537.63375898394,1535.62939318529
95.1672862453532,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2004.673461528,1921.28104961044,1789.15536690533,1786.90001712964,1537.63375898394,1527.2414127786
95.2416356877323,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2217.72126945406,2216.52685005384,2009.70706464796,1921.28104961044,1789.15536690533,1782.86295719879,1537.63375898394,1527.2414127786
95.3159851301115,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2187.91068284672,2216.52685005384,2009.70706464796,1921.28104961044,1810.08820275331,1782.86295719879,1537.63375898394,1527.2414127786
95.3903345724907,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2188.7047910211,2216.52685005384,2009.70706464796,1921.28104961044,1810.08820275331,1782.86295719879,1537.63375898394,1526.22758124586
95.4646840148699,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2188.7047910211,2216.52685005384,2009.70706464796,1904.30026931056,1824.67602738145,1782.86295719879,1537.63375898394,1526.22758124586
95.5390334572491,2827.76870163435,2387.20981787227,2394.35039309212,2315.0549225888,2188.7047910211,2216.52685005384,2009.70706464796,1904.30026931056,1824.67602738145,1786.25190698826,1537.63375898394,1518.46027602477
95.6133828996282,2827.76870163435,2387.83289957283,2394.35039309212,2315.0549225888,2188.7047910211,2216.52685005384,2009.70706464796,1904.30026931056,1824.67602738145,1785.67732901699,1537.63375898394,1518.46027602477
95.6877323420074,2827.76870163435,2393.06003990354,2394.35039309212,2315.0549225888,2188.7047910211,2211.39178442896,2009.70706464796,1904.30026931056,1824.67602738145,1785.67732901699,1537.63375898394,1518.46027602477
95.7620817843866,2827.76870163435,2393.06003990354,2394.35039309212,2315.0549225888,2188.7047910211,2211.39178442896,2009.70706464796,1904.30026931056,1812.42630819806,1795.34573305753,1537.63375898394,1518.46027602477
95.8364312267658,2827.76870163435,2397.99138616722,2394.35039309212,2315.0549225888,2188.7047910211,2206.54496700191,2009.70706464796,1904.30026931056,1812.42630819806,1795.34573305753,1537.63375898394,1518.46027602477
95.910780669145,2827.76870163435,2384.08916391355,2394.35039309212,2315.0549225888,2213.0608753872,2206.54496700191,2009.70706464796,1904.30026931056,1812.42630819806,1795.34573305753,1537.63375898394,1518.46027602477
95.9851301115242,2827.76870163435,2384.08916391355,2394.35039309212,2316.33864060074,2213.0608753872,2206.54496700191,2009.70706464796,1904.30026931056,1811.20738892932,1795.34573305753,1537.63375898394,1518.46027602477
96.0594795539033,2827.76870163435,2384.08916391355,2394.35039309212,2316.33864060074,2213.0608753872,2206.54496700191,2009.70706464796,1904.30026931056,1815.04182585721,1795.34573305753,1528.9385691126,1518.46027602477
96.1338289962825,2827.76870163435,2384.08916391355,2394.35039309212,2316.33864060074,2213.0608753872,2209.36205350222,2009.70706464796,1900.30838891446,1815.04182585721,1795.34573305753,1528.9385691126,1518.46027602477
96.2081784386617,2828.54415141153,2384.08916391355,2394.35039309212,2316.33864060074,2212.09735163561,2209.36205350222,2009.70706464796,1900.30838891446,1815.04182585721,1795.34573305753,1528.9385691126,1518.46027602477
96.2825278810409,2828.62641271708,2384.08916391355,2394.35039309212,2316.33864060074,2212.09735163561,2209.36205350222,2009.70706464796,1900.30838891446,1814.96978722044,1795.34573305753,1528.9385691126,1518.46027602477
96.3568773234201,2828.62641271708,2384.08916391355,2394.35039309212,2301.55996351585,2212.09735163561,2221.00468475314,2009.70706464796,1900.30838891446,1814.96978722044,1795.34573305753,1528.9385691126,1518.46027602477
96.4312267657993,2828.62641271708,2384.08916391355,2394.35039309212,2301.55996351585,2212.09735163561,2221.00468475314,2011.17915454607,1900.30838891446,1814.96978722044,1795.34573305753,1525.89703983261,1518.46027602477
96.5055762081784,2828.62641271708,2384.08916391355,2394.35039309212,2301.55996351585,2219.62135068354,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1795.34573305753,1525.89703983261,1518.46027602477
96.5799256505576,2828.62641271708,2372.8091990466,2394.35039309212,2315.26851578062,2219.62135068354,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1795.34573305753,1525.89703983261,1518.46027602477
96.6542750929368,2829.43059732572,2372.8091990466,2394.35039309212,2315.26851578062,2218.654715218,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1795.34573305753,1525.89703983261,1518.46027602477
96.728624535316,2829.43059732572,2372.97596115657,2394.35039309212,2315.26851578062,2218.654715218,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1795.34573305753,1525.49462346801,1518.46027602477
96.8029739776952,2829.43059732572,2373.65180860664,2394.35039309212,2315.26851578062,2218.654715218,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
96.8773234200743,2830.22838735306,2373.65180860664,2394.35039309212,2315.26851578062,2217.69758528315,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
96.9516728624535,2830.22838735306,2360.93875371276,2394.35039309212,2315.26851578062,2238.85875498092,2221.00468475314,2005.73360622663,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
97.0260223048327,2831.01290414701,2360.93875371276,2394.35039309212,2315.26851578062,2238.85875498092,2220.42801260113,2005.73360622663,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
97.1003717472119,2831.01290414701,2366.50857954521,2394.35039309212,2315.26851578062,2238.85875498092,2214.79001324126,2005.73360622663,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
97.1747211895911,2832.71674010074,2365.29885879091,2394.35039309212,2315.26851578062,2238.85875498092,2214.79001324126,2005.73360622663,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
97.2490706319703,2832.95259167875,2365.29885879091,2394.35039309212,2315.26851578062,2238.85875498092,2214.79001324126,2005.51881133011,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1518.46027602477
97.3234200743494,2832.95259167875,2365.29885879091,2394.35039309212,2315.26851578062,2239.38931896736,2214.79001324126,2005.51881133011,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1517.74015745381
97.3977695167286,2832.95259167875,2365.29885879091,2394.35039309212,2315.26851578062,2239.38931896736,2215.15645317473,2005.51881133011,1900.30838891446,1814.96978722044,1794.68261618411,1525.49462346801,1516.94704965454
97.4721189591078,2832.95259167875,2366.51360135176,2394.35039309212,2315.26851578062,2239.38931896736,2215.15645317473,2005.51881133011,1898.5161068311,1814.96978722044,1794.68261618411,1525.49462346801,1516.94704965454
97.546468401487,2832.95259167875,2366.6810099244,2394.35039309212,2315.26851578062,2239.38931896736,2215.15645317473,2005.51881133011,1898.5161068311,1814.96978722044,1794.68261618411,1525.07563727448,1516.94704965454
97.6208178438662,2834.95676272908,2366.6810099244,2391.14409487846,2315.26851578062,2239.38931896736,2215.15645317473,2005.51881133011,1898.5161068311,1814.96978722044,1794.68261618411,1525.07563727448,1516.94704965454
97.6951672862454,2834.95676272908,2366.6810099244,2391.14409487846,2315.26851578062,2239.38931896736,2215.15645317473,2007.00154130275,1898.5161068311,1814.96978722044,1794.68261618411,1522.03827470691,1516.94704965454
97.7695167286245,2834.97333729783,2366.6810099244,2391.14409487846,2315.26851578062,2239.38931896736,2215.15645317473,2007.00154130275,1898.5161068311,1814.96978722044,1794.68261618411,1522.03827470691,1516.92196621739
97.8438661710037,2834.97333729783,2371.97883136162,2391.14409487846,2315.26851578062,2239.38931896736,2209.73629614057,2007.00154130275,1898.5161068311,1814.96978722044,1794.68261618411,1522.03827470691,1516.92196621739
97.9182156133829,2835.04389199096,2371.97883136162,2391.14409487846,2315.26851578062,2239.38931896736,2209.73629614057,2007.00154130275,1898.5161068311,1814.96978722044,1794.62903199784,1522.03827470691,1516.92196621739
97.9925650557621,2835.9087103065,2371.97883136162,2391.14409487846,2315.26851578062,2238.36944364114,2209.73629614057,2007.00154130275,1898.5161068311,1814.96978722044,1794.62903199784,1522.03827470691,1516.92196621739
98.0669144981413,2835.9087103065,2371.97883136162,2391.14409487846,2315.26851578062,2238.36944364114,2209.73629614057,2012.73830827431,1898.5161068311,1809.29004029675,1794.62903199784,1522.03827470691,1516.92196621739
98.1412639405204,2835.9087103065,2371.97883136162,2391.14409487846,2316.52685583193,2238.36944364114,2209.73629614057,2012.73830827431,1898.5161068311,1808.07180226691,1794.62903199784,1522.03827470691,1516.92196621739
98.2156133828996,2836.62484151559,2371.97883136162,2391.14409487846,2316.52685583193,2238.36944364114,2209.21291588925,2012.73830827431,1898.5161068311,1808.07180226691,1794.62903199784,1522.03827470691,1516.92196621739
98.2899628252788,2836.62484151559,2372.63995141658,2391.14409487846,2316.52685583193,2238.36944364114,2209.21291588925,2012.73830827431,1898.5161068311,1808.07180226691,1793.93105237778,1522.03827470691,1516.92196621739
98.364312267658,2836.62484151559,2377.66861483072,2391.14409487846,2316.52685583193,2238.36944364114,2204.06916096015,2012.73830827431,1898.5161068311,1808.07180226691,1793.93105237778,1522.03827470691,1516.92196621739
98.4386617100372,2836.62484151559,2377.66861483072,2391.14409487846,2316.52685583193,2238.36944364114,2204.06916096015,2012.73830827431,1901.36127273843,1808.07180226691,1793.93105237778,1522.03827470691,1512.5847680299
98.5130111524164,2836.62484151559,2382.42531416104,2391.14409487846,2316.52685583193,2238.36944364114,2199.20653880857,2012.73830827431,1901.36127273843,1808.07180226691,1793.93105237778,1522.03827470691,1512.5847680299
98.5873605947955,2836.62484151559,2386.92304347852,2391.14409487846,2316.52685583193,2238.36944364114,2194.61099603241,2012.73830827431,1901.36127273843,1808.07180226691,1793.93105237778,1522.03827470691,1512.5847680299
98.6617100371747,2836.62484151559,2386.92304347852,2391.14409487846,2318.5725363927,2238.36944364114,2194.61099603241,2012.73830827431,1899.01373668032,1808.07180226691,1793.93105237778,1522.03827470691,1512.5847680299
98.7360594795539,2836.62484151559,2387.95518189005,2391.14409487846,2318.5725363927,2238.36944364114,2194.61099603241,2012.73830827431,1897.43292476745,1808.07180226691,1793.93105237778,1522.03827470691,1512.5847680299
98.8104089219331,2836.64272834088,2387.95518189005,2391.14409487846,2318.5725363927,2238.36944364114,2194.61099603241,2012.73830827431,1897.43292476745,1808.07180226691,1793.93105237778,1522.00809079208,1512.5847680299
98.8847583643123,2836.64272834088,2387.95518189005,2391.14409487846,2318.5725363927,2238.36944364114,2194.61099603241,2012.73830827431,1897.43292476745,1808.07180226691,1797.33979592105,1513.5781708528,1512.5847680299
98.9591078066914,2836.64272834088,2388.0889485526,2391.14409487846,2318.5725363927,2238.36944364114,2194.61099603241,2012.73830827431,1897.43292476745,1808.07180226691,1797.33979592105,1513.24473139665,1512.5847680299
99.0334572490706,2836.64272834088,2392.36691264568,2391.14409487846,2318.5725363927,2238.36944364114,2190.21699554037,2012.73830827431,1897.43292476745,1808.07180226691,1797.33979592105,1513.24473139665,1512.5847680299
99.1078066914498,2836.72116669356,2392.36691264568,2391.14409487846,2318.5725363927,2238.36944364114,2190.21699554037,2012.73830827431,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1512.5847680299
99.182156133829,2838.04500700598,2392.36691264568,2391.14409487846,2317.3709708402,2238.36944364114,2190.21699554037,2012.73830827431,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1512.5847680299
99.2565055762082,2838.04500700598,2392.36691264568,2391.14409487846,2303.59339323003,2256.5677379176,2190.21699554037,2012.73830827431,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1512.5847680299
99.3308550185874,2838.69121242051,2392.36691264568,2391.14409487846,2303.59339323003,2256.5677379176,2189.7696164719,2012.73830827431,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1512.5847680299
99.4052044609665,2839.332510021,2392.36691264568,2391.14409487846,2303.59339323003,2256.5677379176,2189.3247608781,2012.73830827431,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1512.5847680299
99.4795539033457,2839.57513936923,2392.36691264568,2391.14409487846,2303.59339323003,2256.5677379176,2189.3247608781,2012.5155243165,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1512.5847680299
99.5539033457249,2839.57513936923,2392.36691264568,2391.14409487846,2303.59339323003,2257.03498620238,2189.3247608781,2012.5155243165,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1511.94859353064
99.6282527881041,2839.59125073835,2392.36691264568,2391.14409487846,2303.59339323003,2257.03498620238,2189.3247608781,2012.5155243165,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1511.9246433378
99.7026022304833,2839.59125073835,2394.18472609196,2391.14409487846,2303.59339323003,2257.03498620238,2189.3247608781,2010.06148986168,1897.43292476745,1808.00165498039,1797.33979592105,1513.24473139665,1511.9246433378
99.7769516728625,2839.59125073835,2394.31448796223,2391.14409487846,2303.59339323003,2257.03498620238,2189.3247608781,2010.06148986168,1897.43292476745,1808.00165498039,1797.33979592105,1512.92012780733,1511.9246433378
99.8513011152416,2839.59125073835,2394.31448796223,2391.14409487846,2303.59339323003,2262.88183877255,2189.3247608781,2005.46558648334,1897.43292476745,1808.00165498039,1797.33979592105,1512.92012780733,1511.9246433378
99.9256505576208,2839.59125073835,2396.04914201465,2391.14409487846,2303.59339323003,2262.88183877255,2189.3247608781,2003.1817539757,1897.43292476745,1808.00165498039,1797.33979592105,1512.92012780733,1511.9246433378
100,2839.59125073835,2397.738759052,2391.14409487846,2303.59339323003,2262.88183877255,2189.3247608781,2000.96502368131,1897.43292476745,1808.00165498039,1797.33979592105,1512.92012780733,1511.9246433378
This file has been truncated, but you can view the full file.
"eventtime","A","B","C","D","E","F","G","H","I","J","K","L"
0.109769484083425,2200,2200,2200,2065.12669565284,2200,2200,2200,2200,2334.87330434716,2200,2200,2200
0.21953896816685,2200,2200,2099.14092651884,2065.12669565284,2200,2200,2200,2200,2412.5966102581,2200,2200,2200
0.329308452250274,2200,2269.65141597672,2099.14092651884,2065.12669565284,2200,2200,2200,2200,2374.97101149901,2200,2200,2200
0.439077936333699,2200,2269.65141597672,2099.14092651884,2201.5351806646,2200,2200,2200,2200,2374.97101149901,2200,2200,2015.47665186196
0.548847420417124,2200,2269.65141597672,2099.14092651884,2288.80456108246,2200,2200,2059.49112243121,2200,2374.97101149901,2200,2200,2015.47665186196
0.658616904500549,2200,2269.65141597672,2031.63620873805,2336.71894889729,2200,2200,2059.49112243121,2200,2374.97101149901,2200,2200,2015.47665186196
0.768386388583974,2200,2269.65141597672,2031.63620873805,2364.27727828446,2200,2200,2059.49112243121,2200,2374.97101149901,2200,2200,1971.60676371772
0.878155872667398,2200,2269.65141597672,2031.63620873805,2365.94747458912,2200,2200,2059.49112243121,2200,2372.6863853071,2200,2200,1971.60676371772
0.987925356750823,2200,2269.65141597672,2031.63620873805,2365.94747458912,2200,2200,2059.49112243121,2200,2392.2770044452,2200,2200,1944.1576159926
1.09769484083425,2200,2269.65141597672,2031.63620873805,2365.94747458912,2334.87330434716,2200,2059.49112243121,2065.12669565284,2392.2770044452,2200,2200,1944.1576159926
1.20746432491767,2200,2269.65141597672,2104.80799378605,2365.94747458912,2334.87330434716,2200,2059.49112243121,2065.12669565284,2392.2770044452,2200,2200,1874.73510895878
1.3172338090011,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2200,2059.49112243121,2065.12669565284,2392.2770044452,2200,2107.62881801585,1874.73510895878
1.42700329308452,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2200,2059.49112243121,2065.12669565284,2392.2770044452,2200,2164.14984823322,1836.93512312351
1.53677277716795,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2114.21433008081,2059.49112243121,2065.12669565284,2428.67781326368,2200,2164.14984823322,1836.93512312351
1.64654226125137,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2114.21433008081,2059.49112243121,2065.12669565284,2455.43646608749,2200,2122.48197472212,1836.93512312351
1.7563117453348,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2474.27770725033,2200,2122.48197472212,1836.93512312351
1.86608122941822,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2490.69400338266,2200,2097.1009396928,1836.93512312351
1.97585071350165,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2494.66261436373,2200,2097.1009396928,1831.66193599593
2.08562019758507,2200,2269.65141597672,2104.80799378605,2400.11121275538,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2498.36527400054,2200,2097.1009396928,1826.77154568862
2.1953896816685,2200,2343.35036045261,2056.82379627926,2400.11121275538,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2498.36527400054,2200,2097.1009396928,1826.77154568862
2.30515916575192,2200,2480.90967707254,2056.82379627926,2400.11121275538,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2437.02520160844,2200,2097.1009396928,1826.77154568862
2.41492864983535,2200,2543.65794115979,2056.82379627926,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2065.12669565284,2437.02520160844,2200,2097.1009396928,1826.77154568862
2.52469813391877,2200,2543.65794115979,2056.82379627926,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2437.02520160844,2200,2097.1009396928,1795.24009083032
2.6344676180022,2200,2543.65794115979,2056.82379627926,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2440.56808942954,2200,2097.1009396928,1790.58096514931
2.74423710208562,2200,2543.65794115979,2056.82379627926,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2443.8981590967,2200,2097.1009396928,1786.22453629628
2.85400658616904,2200,2555.40675784898,2044.31642786288,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2443.8981590967,2200,2097.1009396928,1786.22453629628
2.96377607025247,2200,2536.90107929606,2044.31642786288,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2455.61642969011,2200,2097.1009396928,1786.22453629628
3.07354555433589,2200,2536.90107929606,2074.01006273391,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2455.61642969011,2200,2097.1009396928,1760.69643634333
3.18331503841932,2200,2539.12223297468,2074.01006273391,2357.59545434585,2334.87330434716,2075.21146044076,2059.49112243121,2123.59353457941,2455.61642969011,2200,2097.1009396928,1758.52882641249
3.29308452250274,2200,2549.84218458873,2074.01006273391,2357.59545434585,2334.87330434716,2075.21146044076,2037.74030900999,2123.59353457941,2455.61642969011,2200,2097.1009396928,1758.52882641249
3.40285400658617,2235.78259365013,2549.84218458873,2074.01006273391,2357.59545434585,2334.87330434716,2075.21146044076,2037.74030900999,2123.59353457941,2455.61642969011,2200,2097.1009396928,1745.7617566695
3.51262349066959,2455.62125511316,2549.84218458873,2074.01006273391,2357.59545434585,2334.87330434716,2075.21146044076,2037.74030900999,2123.59353457941,2405.8336257255,2200,2097.1009396928,1745.7617566695
3.62239297475302,2455.62125511316,2549.84218458873,2074.01006273391,2357.59545434585,2477.19484358598,2075.21146044076,2037.74030900999,2123.59353457941,2367.6807322228,2200,2097.1009396928,1745.7617566695
3.73216245883644,2455.62125511316,2549.84218458873,2074.01006273391,2324.02147428964,2541.10804757304,2075.21146044076,2037.74030900999,2123.59353457941,2367.6807322228,2200,2097.1009396928,1745.7617566695
3.84193194291987,2455.62125511316,2549.84218458873,2074.01006273391,2301.51669638613,2579.05635465488,2075.21146044076,2037.74030900999,2123.59353457941,2367.6807322228,2200,2097.1009396928,1745.7617566695
3.95170142700329,2455.62125511316,2549.84218458873,2074.01006273391,2301.51669638613,2612.68329263651,2075.21146044076,2037.74030900999,2123.59353457941,2349.88999870712,2200,2097.1009396928,1745.7617566695
4.06147091108672,2455.62125511316,2551.6449444392,2074.01006273391,2301.51669638613,2612.68329263651,2075.21146044076,2037.74030900999,2123.59353457941,2349.88999870712,2200,2097.1009396928,1744.00473008796
4.17124039517014,2522.11554387196,2551.6449444392,2074.01006273391,2276.40426727229,2612.68329263651,2075.21146044076,2037.74030900999,2123.59353457941,2349.88999870712,2200,2097.1009396928,1744.00473008796
4.28100987925357,2611.85446712745,2498.93436719897,2074.01006273391,2276.40426727229,2612.68329263651,2075.21146044076,2037.74030900999,2123.59353457941,2349.88999870712,2200,2097.1009396928,1744.00473008796
4.39077936333699,2680.07559281799,2498.93436719897,2074.01006273391,2276.40426727229,2557.03632176955,2075.21146044076,2037.74030900999,2123.59353457941,2349.88999870712,2200,2097.1009396928,1744.00473008796
4.50054884742042,2680.07559281799,2498.93436719897,2074.01006273391,2276.40426727229,2583.40171375923,2075.21146044076,2037.74030900999,2123.59353457941,2332.8470646414,2200,2097.1009396928,1744.00473008796
4.61031833150384,2680.07559281799,2498.93436719897,2074.01006273391,2276.40426727229,2591.24207336699,2075.21146044076,2037.74030900999,2123.59353457941,2332.8470646414,2200,2084.51704753841,1744.00473008796
4.72008781558727,2666.36985178445,2498.93436719897,2074.01006273391,2276.40426727229,2601.0069830409,2075.21146044076,2037.74030900999,2123.59353457941,2332.8470646414,2200,2084.51704753841,1744.00473008796
4.82985729967069,2621.08750141521,2498.93436719897,2074.01006273391,2276.40426727229,2601.0069830409,2190.67421516394,2037.74030900999,2123.59353457941,2332.8470646414,2200,2084.51704753841,1744.00473008796
4.93962678375412,2632.57693660756,2498.93436719897,2074.01006273391,2276.40426727229,2601.0069830409,2168.77778082686,2037.74030900999,2123.59353457941,2332.8470646414,2200,2084.51704753841,1744.00473008796
5.04939626783754,2649.84030495706,2498.93436719897,2074.01006273391,2276.40426727229,2601.0069830409,2168.77778082686,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1744.00473008796
5.15916575192097,2657.9475956021,2498.93436719897,2074.01006273391,2276.40426727229,2601.0069830409,2153.11668548984,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1744.00473008796
5.26893523600439,2668.87757554923,2498.93436719897,2074.01006273391,2266.5727430376,2601.0069830409,2153.11668548984,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1744.00473008796
5.37870472008782,2669.61938214834,2498.93436719897,2074.01006273391,2266.5727430376,2601.0069830409,2153.11668548984,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1743.13768725797
5.48847420417124,2669.61938214834,2500.95418753742,2074.01006273391,2266.5727430376,2601.0069830409,2153.11668548984,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1740.9874351144
5.59824368825466,2669.61938214834,2510.98730822615,2060.8767462441,2266.5727430376,2601.0069830409,2153.11668548984,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1740.9874351144
5.70801317233809,2675.91007601198,2510.98730822615,2060.8767462441,2266.5727430376,2601.0069830409,2140.8815609598,2037.74030900999,2123.59353457941,2321.7271455122,2200,2084.51704753841,1740.9874351144
5.81778265642151,2679.7923057262,2510.98730822615,2060.8767462441,2266.5727430376,2601.0069830409,2140.8815609598,2028.74390067768,2123.59353457941,2321.7271455122,2200,2084.51704753841,1740.9874351144
5.92755214050494,2690.69526648498,2510.98730822615,2060.8767462441,2266.5727430376,2601.0069830409,2140.8815609598,2028.74390067768,2123.59353457941,2313.51136998423,2200,2084.51704753841,1740.9874351144
6.03732162458836,2712.37818466624,2485.25047926275,2060.8767462441,2266.5727430376,2601.0069830409,2140.8815609598,2028.74390067768,2123.59353457941,2313.51136998423,2200,2084.51704753841,1740.9874351144
6.14709110867179,2712.8614474072,2485.25047926275,2060.8767462441,2266.5727430376,2601.0069830409,2140.8815609598,2028.74390067768,2123.59353457941,2313.51136998423,2200,2084.51704753841,1740.35185569231
6.25686059275521,2712.8614474072,2487.06901291333,2060.8767462441,2266.5727430376,2601.0069830409,2140.8815609598,2028.74390067768,2123.59353457941,2313.51136998423,2200,2084.51704753841,1738.18436515506
6.36663007683864,2738.25087950598,2487.06901291333,2060.8767462441,2266.5727430376,2571.5537239436,2140.8815609598,2028.74390067768,2123.59353457941,2313.51136998423,2200,2084.51704753841,1738.18436515506
6.47639956092206,2744.64546111945,2487.06901291333,2060.8767462441,2266.5727430376,2571.5537239436,2140.8815609598,2028.74390067768,2123.59353457941,2307.7583857629,2200,2084.51704753841,1738.18436515506
6.58616904500549,2746.95605894491,2487.06901291333,2060.8767462441,2266.5727430376,2571.5537239436,2140.8815609598,2028.74390067768,2123.59353457941,2307.7583857629,2200,2079.70560357567,1738.18436515506
6.69593852908891,2748.97780316247,2487.06901291333,2060.8767462441,2266.5727430376,2571.5537239436,2140.8815609598,2023.25668566186,2123.59353457941,2307.7583857629,2200,2079.70560357567,1738.18436515506
6.80570801317234,2751.97228663808,2487.06901291333,2060.8767462441,2266.5727430376,2571.5537239436,2140.8815609598,2023.25668566186,2115.05329541302,2307.7583857629,2200,2079.70560357567,1738.18436515506
6.91547749725576,2751.97228663808,2488.83634717653,2060.8767462441,2266.5727430376,2571.5537239436,2140.8815609598,2023.25668566186,2115.05329541302,2307.7583857629,2200,2079.70560357567,1736.08229654578
7.02524698133919,2751.97228663808,2488.83634717653,2060.8767462441,2266.5727430376,2572.5715875265,2140.8815609598,2023.25668566186,2115.05329541302,2307.7583857629,2200,2079.70560357567,1734.7889939409
7.13501646542261,2754.07489657935,2488.83634717653,2060.8767462441,2266.5727430376,2572.5715875265,2140.8815609598,2023.25668566186,2115.05329541302,2307.7583857629,2200,2075.31035911399,1734.7889939409
7.24478594950604,2755.91062967083,2488.83634717653,2060.8767462441,2266.5727430376,2572.5715875265,2140.8815609598,2018.28015213031,2115.05329541302,2307.7583857629,2200,2075.31035911399,1734.7889939409
7.35455543358946,2757.65620062312,2488.83634717653,2057.73643979889,2266.5727430376,2572.5715875265,2140.8815609598,2018.28015213031,2115.05329541302,2307.7583857629,2200,2075.31035911399,1734.7889939409
7.46432491767289,2759.33955917596,2488.83634717653,2054.7279615351,2266.5727430376,2572.5715875265,2140.8815609598,2018.28015213031,2115.05329541302,2307.7583857629,2200,2075.31035911399,1734.7889939409
7.57409440175631,2759.33955917596,2488.83634717653,2073.91105600107,2266.5727430376,2572.5715875265,2140.8815609598,2018.28015213031,2115.05329541302,2307.7583857629,2200,2075.31035911399,1718.22336030808
7.68386388583974,2762.07589323818,2488.83634717653,2073.91105600107,2266.5727430376,2572.5715875265,2134.16139618664,2018.28015213031,2115.05329541302,2307.7583857629,2200,2075.31035911399,1718.22336030808
7.79363336992316,2762.07589323818,2488.83634717653,2162.26219361806,2266.5727430376,2572.5715875265,2134.16139618664,2018.28015213031,2115.05329541302,2263.35869472141,2200,2075.31035911399,1718.22336030808
7.90340285400659,2762.07589323818,2488.83634717653,2225.21349660241,2266.5727430376,2572.5715875265,2134.16139618664,2018.28015213031,2115.05329541302,2229.14038251376,2200,2075.31035911399,1718.22336030808
8.01317233809001,2762.07589323818,2488.83634717653,2254.44566043712,2266.5727430376,2572.5715875265,2134.16139618664,2018.28015213031,2045.13567409674,2229.14038251376,2200,2075.31035911399,1718.22336030808
8.12294182217344,2762.07589323818,2488.83634717653,2292.12943390045,2266.5727430376,2572.5715875265,2134.16139618664,2018.28015213031,2045.13567409674,2205.05658735719,2200,2075.31035911399,1718.22336030808
8.23271130625686,2764.64807441844,2488.83634717653,2292.12943390045,2266.5727430376,2572.5715875265,2127.9745898591,2018.28015213031,2045.13567409674,2205.05658735719,2200,2075.31035911399,1718.22336030808
8.34248079034029,2776.01797367171,2472.91229522272,2292.12943390045,2266.5727430376,2572.5715875265,2127.9745898591,2018.28015213031,2045.13567409674,2205.05658735719,2200,2075.31035911399,1718.22336030808
8.45225027442371,2779.91168369223,2472.91229522272,2292.12943390045,2266.5727430376,2572.5715875265,2127.9745898591,2018.28015213031,2045.13567409674,2205.05658735719,2181.60355146564,2075.31035911399,1718.22336030808
8.56201975850714,2789.27002844545,2459.908075472,2292.12943390045,2266.5727430376,2572.5715875265,2127.9745898591,2018.28015213031,2045.13567409674,2205.05658735719,2181.60355146564,2075.31035911399,1718.22336030808
8.67178924259056,2802.32268359589,2459.908075472,2292.12943390045,2266.5727430376,2554.15031771295,2127.9745898591,2018.28015213031,2045.13567409674,2205.05658735719,2181.60355146564,2075.31035911399,1718.22336030808
8.78155872667399,2804.05439795669,2459.908075472,2292.12943390045,2266.5727430376,2554.15031771295,2123.35118387239,2018.28015213031,2045.13567409674,2205.05658735719,2181.60355146564,2075.31035911399,1718.22336030808
8.89132821075741,2805.21723843987,2459.908075472,2292.12943390045,2266.5727430376,2554.15031771295,2123.35118387239,2018.28015213031,2042.07707882219,2205.05658735719,2181.60355146564,2075.31035911399,1718.22336030808
9.00109769484083,2808.00161040804,2459.908075472,2292.12943390045,2266.5727430376,2554.15031771295,2123.35118387239,2018.28015213031,2042.07707882219,2205.05658735719,2168.45054203462,2075.31035911399,1718.22336030808
9.11086717892426,2810.77145340648,2459.908075472,2292.12943390045,2262.34933313393,2554.15031771295,2123.35118387239,2018.28015213031,2042.07707882219,2205.05658735719,2168.45054203462,2075.31035911399,1718.22336030808
9.22063666300768,2820.97091678475,2459.908075472,2292.12943390045,2262.34933313393,2539.58799281177,2123.35118387239,2018.28015213031,2042.07707882219,2205.05658735719,2168.45054203462,2075.31035911399,1718.22336030808
9.33040614709111,2827.17136313156,2450.3059610124,2292.12943390045,2262.34933313393,2539.58799281177,2123.35118387239,2018.28015213031,2042.07707882219,2205.05658735719,2168.45054203462,2075.31035911399,1718.22336030808
9.44017563117453,2827.17136313156,2450.3059610124,2292.12943390045,2262.34933313393,2539.58799281177,2123.35118387239,2018.28015213031,2042.07707882219,2183.13152563552,2314.63615119706,2075.31035911399,1718.22336030808
9.54994511525796,2830.66219923999,2450.3059610124,2292.12943390045,2262.34933313393,2539.58799281177,2123.35118387239,2018.28015213031,2042.07707882219,2183.13152563552,2300.75859281198,2075.31035911399,1718.22336030808
9.65971459934138,2833.18788664765,2450.3059610124,2288.19357326394,2262.34933313393,2539.58799281177,2123.35118387239,2018.28015213031,2042.07707882219,2183.13152563552,2300.75859281198,2075.31035911399,1718.22336030808
9.76948408342481,2841.11451897314,2450.3059610124,2288.19357326394,2262.34933313393,2527.89786343888,2123.35118387239,2018.28015213031,2042.07707882219,2183.13152563552,2300.75859281198,2075.31035911399,1718.22336030808
9.87925356750823,2841.92767237214,2450.3059610124,2288.19357326394,2262.34933313393,2527.89786343888,2123.35118387239,2018.28015213031,2039.69735557808,2183.13152563552,2300.75859281198,2075.31035911399,1718.22336030808
9.98902305159166,2844.77756661798,2450.3059610124,2288.19357326394,2262.34933313393,2527.89786343888,2123.35118387239,2018.28015213031,2039.69735557808,2183.13152563552,2289.5570761552,2075.31035911399,1718.22336030808
10.0987925356751,2846.94266117194,2450.3059610124,2284.68842290023,2262.34933313393,2527.89786343888,2123.35118387239,2018.28015213031,2039.69735557808,2183.13152563552,2289.5570761552,2075.31035911399,1718.22336030808
10.2085620197585,2847.80838050703,2450.3059610124,2284.68842290023,2262.34933313393,2527.89786343888,2123.35118387239,2018.28015213031,2039.69735557808,2183.13152563552,2289.5570761552,2072.88396448117,1718.22336030808
10.3183315038419,2847.80838050703,2450.3059610124,2288.2956962492,2262.34933313393,2527.89786343888,2123.35118387239,2018.28015213031,2039.69735557808,2183.13152563552,2289.5570761552,2072.88396448117,1713.43448214977
10.4281009879254,2847.80838050703,2450.3059610124,2302.13299708185,2262.34933313393,2527.89786343888,2123.35118387239,1976.90777385298,2039.69735557808,2183.13152563552,2289.5570761552,2072.88396448117,1713.43448214977
10.5378704720088,2847.80838050703,2450.3059610124,2325.27272457844,2262.34933313393,2527.89786343888,2123.35118387239,1976.90777385298,2039.69735557808,2166.55000965916,2289.5570761552,2072.88396448117,1713.43448214977
10.6476399560922,2847.80838050703,2450.3059610124,2325.27272457844,2276.93146754773,2527.89786343888,2123.35118387239,1943.78872508825,2039.69735557808,2166.55000965916,2289.5570761552,2072.88396448117,1713.43448214977
10.7574094401756,2847.80838050703,2450.3059610124,2325.27272457844,2288.34506636217,2527.89786343888,2123.35118387239,1920.01171962307,2039.69735557808,2166.55000965916,2289.5570761552,2072.88396448117,1713.43448214977
10.8671789242591,2848.65876969251,2450.3059610124,2325.27272457844,2288.34506636217,2527.89786343888,2123.35118387239,1920.01171962307,2039.69735557808,2166.55000965916,2289.5570761552,2070.52668882246,1713.43448214977
10.9769484083425,2848.65876969251,2450.3059610124,2327.74062370589,2288.34506636217,2527.89786343888,2123.35118387239,1920.01171962307,2039.69735557808,2166.55000965916,2289.5570761552,2070.52668882246,1709.78138650848
11.0867178924259,2848.65876969251,2450.3059610124,2327.74062370589,2312.69402859711,2527.89786343888,2123.35118387239,1920.01171962307,2039.69735557808,2150.99378573533,2289.5570761552,2070.52668882246,1709.78138650848
11.1964873765093,2848.65876969251,2450.3059610124,2327.74062370589,2315.41664740855,2527.89786343888,2123.35118387239,1920.01171962307,2039.69735557808,2150.99378573533,2289.5570761552,2070.52668882246,1705.99908130931
11.3062568605928,2848.65876969251,2438.67360231888,2337.40669639204,2315.41664740855,2527.89786343888,2123.35118387239,1920.01171962307,2039.69735557808,2150.99378573533,2289.5570761552,2070.52668882246,1705.99908130931
11.4160263446762,2848.65876969251,2443.18483081991,2337.40669639204,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2150.99378573533,2289.5570761552,2070.52668882246,1705.99908130931
11.5257958287596,2848.65876969251,2451.62401273121,2337.40669639204,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2150.99378573533,2289.5570761552,2052.32013840782,1705.99908130931
11.635565312843,2851.30261116851,2451.62401273121,2333.9607265252,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2150.99378573533,2289.5570761552,2052.32013840782,1705.99908130931
11.7453347969265,2855.86269946332,2444.95751166039,2333.9607265252,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2150.99378573533,2289.5570761552,2052.32013840782,1705.99908130931
11.8551042810099,2855.86269946332,2446.22948514713,2333.9607265252,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2150.99378573533,2289.5570761552,2052.32013840782,1704.18550103448
11.9648737650933,2855.86269946332,2456.67053013176,2333.9607265252,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2143.49811837788,2289.5570761552,2052.32013840782,1704.18550103448
12.0746432491767,2855.96180496857,2456.67053013176,2333.9607265252,2315.41664740855,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2143.49811837788,2289.5570761552,2052.32013840782,1704.00774800366
12.1844127332602,2858.19872930236,2456.67053013176,2333.9607265252,2312.04330182233,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2143.49811837788,2289.5570761552,2052.32013840782,1704.00774800366
12.2941822173436,2860.34652774169,2456.67053013176,2333.9607265252,2308.82403014277,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2143.49811837788,2289.5570761552,2052.32013840782,1704.00774800366
12.403951701427,2860.34652774169,2456.67053013176,2333.9607265252,2327.22667231117,2527.89786343888,2123.35118387239,1910.89320644975,2039.69735557808,2131.11154918596,2289.5570761552,2052.32013840782,1704.00774800366
12.5137211855104,2861.35562547569,2456.67053013176,2333.9607265252,2327.22667231117,2527.89786343888,2120.17321774637,1910.89320644975,2039.69735557808,2131.11154918596,2289.5570761552,2052.32013840782,1704.00774800366
12.6234906695939,2863.59126366571,2456.67053013176,2333.9607265252,2324.09405590214,2527.89786343888,2120.17321774637,1910.89320644975,2039.69735557808,2131.11154918596,2289.5570761552,2052.32013840782,1704.00774800366
12.7332601536773,2863.59126366571,2456.67053013176,2333.9607265252,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2039.69735557808,2120.43336136352,2289.5570761552,2052.32013840782,1704.00774800366
12.8430296377607,2863.68343764224,2456.67053013176,2333.9607265252,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2039.69735557808,2120.43336136352,2289.5570761552,2052.32013840782,1703.83828350763
12.9527991218441,2863.68343764224,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2039.69735557808,2120.43336136352,2289.5570761552,2052.32013840782,1700.68520737201
13.0625686059276,2864.33174775389,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2039.69735557808,2120.43336136352,2289.5570761552,2050.57559525422,1700.68520737201
13.172338090011,2864.99191912186,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2037.65883205179,2120.43336136352,2289.5570761552,2050.57559525422,1700.68520737201
13.2821075740944,2865.62586102489,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2037.65883205179,2120.43336136352,2289.5570761552,2048.87580025749,1700.68520737201
13.3918770581778,2866.3160086631,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2037.65883205179,2119.76625776862,2289.5570761552,2048.87580025749,1700.68520737201
13.5016465422613,2866.93572537932,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.89320644975,2037.65883205179,2119.76625776862,2289.5570761552,2047.21905890284,1700.68520737201
13.6114160263447,2867.25120204278,2456.67053013176,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2289.5570761552,2047.21905890284,1700.68520737201
13.7211855104281,2867.25120204278,2473.1133336766,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2236.65184999182,2047.21905890284,1700.68520737201
13.8309549945115,2868.87397169172,2473.1133336766,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2231.27934085139,2047.21905890284,1700.68520737201
13.9407244785949,2868.87397169172,2478.75621114758,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2231.27934085139,2034.45233307471,1700.68520737201
14.0504939626784,2868.87397169172,2479.67243917013,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2231.27934085139,2034.45233307471,1699.26726000996
14.1602634467618,2868.95962141278,2479.67243917013,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2231.27934085139,2034.45233307471,1699.11043732536
14.2700329308452,2869.51207743663,2479.67243917013,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2231.27934085139,2033.04796651851,1699.11043732536
14.3798024149286,2873.96454444278,2473.68766766423,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2119.76625776862,2231.27934085139,2033.04796651851,1699.11043732536
14.4895718990121,2873.96454444278,2473.68766766423,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2106.39030643358,2283.25739322174,2033.04796651851,1699.11043732536
14.5993413830955,2875.78150321177,2473.68766766423,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2037.65883205179,2106.39030643358,2278.00249242686,2033.04796651851,1699.11043732536
14.7091108671789,2875.78150321177,2473.68766766423,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1910.07721213209,2160.01174361844,2106.39030643358,2189.67658424361,2033.04796651851,1699.11043732536
14.8188803512623,2876.07284988424,2473.68766766423,2335.99994610914,2339.30814379543,2527.89786343888,2120.17321774637,1909.30797961574,2160.01174361844,2106.39030643358,2189.67658424361,2033.04796651851,1699.11043732536
14.9286498353458,2878.13217093441,2473.68766766423,2333.06384565134,2339.30814379543,2527.89786343888,2120.17321774637,1909.30797961574,2160.01174361844,2106.39030643358,2189.67658424361,2033.04796651851,1699.11043732536
15.0384193194292,2878.13217093441,2478.66723806324,2333.06384565134,2339.30814379543,2527.89786343888,2120.17321774637,1909.30797961574,2160.01174361844,2106.39030643358,2189.67658424361,2021.93218488331,1699.11043732536
15.1481888035126,2878.13217093441,2495.03347953717,2315.38611297564,2339.30814379543,2527.89786343888,2120.17321774637,1909.30797961574,2160.01174361844,2106.39030643358,2189.67658424361,2021.93218488331,1699.11043732536
15.257958287596,2878.13217093441,2498.95365488385,2315.38611297564,2339.30814379543,2527.89786343888,2120.17321774637,1909.30797961574,2160.01174361844,2106.39030643358,2189.67658424361,2012.9752245303,1699.11043732536
15.3677277716795,2878.98919181077,2498.95365488385,2315.38611297564,2339.30814379543,2527.89786343888,2117.38165728346,1909.30797961574,2160.01174361844,2106.39030643358,2189.67658424361,2012.9752245303,1699.11043732536
15.4774972557629,2878.98919181077,2498.95365488385,2315.38611297564,2339.30814379543,2527.89786343888,2117.38165728346,1909.30797961574,2231.45631250509,2106.39030643358,2134.49788341437,2012.9752245303,1699.11043732536
15.5872667398463,2883.47902582561,2493.407616371,2315.38611297564,2339.30814379543,2527.89786343888,2117.38165728346,1909.30797961574,2231.45631250509,2106.39030643358,2134.49788341437,2012.9752245303,1699.11043732536
15.6970362239297,2883.47902582561,2493.407616371,2321.2334169027,2339.30814379543,2527.89786343888,2117.38165728346,1894.62317207029,2231.45631250509,2106.39030643358,2134.49788341437,2012.9752245303,1699.11043732536
15.8068057080132,2883.47902582561,2499.6382098546,2321.2334169027,2339.30814379543,2527.89786343888,2117.38165728346,1894.62317207029,2231.45631250509,2106.39030643358,2121.63699746578,2012.9752245303,1699.11043732536
15.9165751920966,2885.25153340637,2499.6382098546,2318.87684308642,2339.30814379543,2527.89786343888,2117.38165728346,1894.62317207029,2231.45631250509,2106.39030643358,2121.63699746578,2012.9752245303,1699.11043732536
16.02634467618,2885.25153340637,2505.18968675845,2318.87684308642,2339.30814379543,2527.89786343888,2117.38165728346,1894.62317207029,2231.45631250509,2106.39030643358,2110.55388801723,2012.9752245303,1699.11043732536
16.1361141602634,2885.25153340637,2518.29351906652,2318.87684308642,2323.03123064077,2527.89786343888,2117.38165728346,1894.62317207029,2231.45631250509,2106.39030643358,2110.55388801723,2012.9752245303,1699.11043732536
16.2458836443469,2885.25153340637,2518.29351906652,2318.87684308642,2335.56518850941,2527.89786343888,2117.38165728346,1894.62317207029,2231.45631250509,2097.15248346493,2110.55388801723,2012.9752245303,1699.11043732536
16.3556531284303,2885.25153340637,2518.29351906652,2318.87684308642,2372.58133015967,2477.35037396286,2117.38165728346,1894.62317207029,2231.45631250509,2097.15248346493,2110.55388801723,2012.9752245303,1699.11043732536
16.4654226125137,2885.25153340637,2518.29351906652,2318.87684308642,2381.387353272,2477.35037396286,2117.38165728346,1894.62317207029,2231.45631250509,2090.21251276186,2110.55388801723,2012.9752245303,1699.11043732536
16.5751920965971,2887.61861064407,2518.29351906652,2318.87684308642,2378.58490005257,2477.35037396286,2117.38165728346,1894.62317207029,2231.45631250509,2090.21251276186,2110.55388801723,2012.9752245303,1699.11043732536
16.6849615806806,2887.61861064407,2518.29351906652,2318.87684308642,2378.58490005257,2477.35037396286,2117.38165728346,1863.74143546396,2231.45631250509,2090.21251276186,2131.84320418128,2012.9752245303,1699.11043732536
16.794731064764,2870.21807976623,2518.29351906652,2318.87684308642,2378.58490005257,2477.35037396286,2208.86002365572,1863.74143546396,2231.45631250509,2090.21251276186,2131.84320418128,2012.9752245303,1699.11043732536
16.9045005488474,2870.66225225823,2518.29351906652,2318.87684308642,2378.58490005257,2477.35037396286,2208.86002365572,1863.74143546396,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1699.11043732536
17.0142700329308,2870.86997712776,2518.29351906652,2318.87684308642,2378.58490005257,2477.35037396286,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1699.11043732536
17.1240395170143,2873.34722457261,2518.29351906652,2318.87684308642,2375.64055375137,2477.35037396286,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1699.11043732536
17.2338090010977,2877.37359255973,2518.29351906652,2318.87684308642,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1699.11043732536
17.3435784851811,2877.37359255973,2518.87358389535,2318.87684308642,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1698.00805132236
17.4533479692645,2879.10334108011,2518.87358389535,2316.48089734598,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1698.00805132236
17.563117453348,2883.6913275246,2513.45166865547,2316.48089734598,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1698.00805132236
17.6728869374314,2887.97111196709,2508.41586903285,2316.48089734598,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2231.45631250509,2090.21251276186,2131.84320418128,2011.86562693569,1698.00805132236
17.7826564215148,2887.97111196709,2508.41586903285,2335.56476000659,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2185.34559372359,2090.21251276186,2131.84320418128,2011.86562693569,1698.00805132236
17.8924259055982,2889.66391782761,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2185.34559372359,2090.21251276186,2131.84320418128,2011.86562693569,1698.00805132236
18.0021953896817,2890.28608722365,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2185.34559372359,2090.21251276186,2130.49611053338,2011.86562693569,1698.00805132236
18.1119648737651,2890.28608722365,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2228.51327219364,2090.21251276186,2096.84139796753,2011.86562693569,1698.00805132236
18.2217343578485,2890.35155208808,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1863.24516009385,2228.51327219364,2090.21251276186,2096.84139796753,2011.86562693569,1697.87224724197
18.3315038419319,2890.35155208808,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1896.25954195534,2228.51327219364,2090.21251276186,2096.84139796753,2011.86562693569,1671.74524671954
18.4412733260154,2890.54603823669,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1895.79689004138,2228.51327219364,2090.21251276186,2096.84139796753,2011.86562693569,1671.74524671954
18.5510428100988,2890.54603823669,2508.41586903285,2333.26413081852,2375.64055375137,2470.66966973218,2208.86002365572,1919.50990092198,2228.51327219364,2090.21251276186,2096.84139796753,2011.86562693569,1652.3810276651
18.6608122941822,2890.54603823669,2508.41586903285,2338.19216501253,2375.64055375137,2470.66966973218,2208.86002365572,1910.15911446796,2228.51327219364,2090.21251276186,2096.84139796753,2011.86562693569,1652.3810276651
18.7705817782656,2890.54603823669,2508.41586903285,2338.19216501253,2375.64055375137,2470.66966973218,2208.86002365572,1910.15911446796,2258.2173029568,2078.39209318867,2096.84139796753,2011.86562693569,1652.3810276651
18.8803512623491,2890.54603823669,2508.41586903285,2342.6889007425,2375.64055375137,2470.66966973218,2208.86002365572,1901.81936573517,2258.2173029568,2078.39209318867,2096.84139796753,2011.86562693569,1652.3810276651
18.9901207464325,2890.54603823669,2508.41586903285,2346.82097614679,2375.64055375137,2470.66966973218,2208.86002365572,1894.30434689721,2258.2173029568,2078.39209318867,2096.84139796753,2011.86562693569,1652.3810276651
19.0998902305159,2890.54603823669,2508.41586903285,2355.51234153381,2375.64055375137,2470.66966973218,2208.86002365572,1894.30434689721,2258.2173029568,2071.53902438423,2096.84139796753,2011.86562693569,1652.3810276651
19.2096597145993,2891.64702356428,2508.41586903285,2355.51234153381,2375.64055375137,2470.66966973218,2204.78601861203,1894.30434689721,2258.2173029568,2071.53902438423,2096.84139796753,2011.86562693569,1652.3810276651
19.3194291986828,2892.03387939842,2508.41586903285,2355.51234153381,2375.64055375137,2470.66966973218,2204.78601861203,1894.30434689721,2258.2173029568,2071.1551212515,2096.84139796753,2011.86562693569,1652.3810276651
19.4291986827662,2892.53659027564,2508.41586903285,2355.51234153381,2375.64055375137,2470.66966973218,2204.78601861203,1894.30434689721,2258.2173029568,2071.1551212515,2095.85159236701,2011.86562693569,1652.3810276651
19.5389681668496,2892.53659027564,2508.41586903285,2359.05169348432,2375.64055375137,2470.66966973218,2204.78601861203,1887.75779994642,2258.2173029568,2071.1551212515,2095.85159236701,2011.86562693569,1652.3810276651
19.648737650933,2894.55702781369,2508.41586903285,2359.05169348432,2373.03874859218,2470.66966973218,2204.78601861203,1887.75779994642,2258.2173029568,2071.1551212515,2095.85159236701,2011.86562693569,1652.3810276651
19.7585071350165,2896.36790418335,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.75779994642,2258.2173029568,2071.1551212515,2095.85159236701,2011.86562693569,1652.3810276651
19.8682766190999,2896.5306598352,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2258.2173029568,2071.1551212515,2095.85159236701,2011.86562693569,1652.3810276651
19.9780461031833,2896.90010120219,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2258.2173029568,2070.7807306077,2095.85159236701,2011.86562693569,1652.3810276651
20.0878155872667,2896.94587258786,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2258.2173029568,2070.7807306077,2095.85159236701,2011.86562693569,1652.29560124416
20.1975850713502,2896.94587258786,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2282.62072482141,2070.7807306077,2073.92657522347,2011.86562693569,1652.29560124416
20.3073545554336,2898.22089541397,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2279.94480371209,2070.7807306077,2073.92657522347,2011.86562693569,1652.29560124416
20.417124039517,2898.63558428646,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2279.94480371209,2070.7807306077,2073.15341625367,2011.86562693569,1652.29560124416
20.5268935236004,2898.99863593355,2508.41586903285,2356.81728276841,2373.03874859218,2470.66966973218,2204.78601861203,1887.42949061157,2279.94480371209,2070.40990424808,2073.15341625367,2011.86562693569,1652.29560124416
20.6366630076839,2898.99863593355,2508.41586903285,2360.1480522856,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2279.94480371209,2070.40990424808,2073.15341625367,2011.86562693569,1652.29560124416
20.7464324917673,2900.75600582241,2508.41586903285,2357.99430434644,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2279.94480371209,2070.40990424808,2073.15341625367,2011.86562693569,1652.29560124416
20.8562019758507,2901.09608388305,2508.41586903285,2357.99430434644,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2279.94480371209,2070.40990424808,2073.15341625367,2010.93860464954,1652.29560124416
20.9659714599341,2902.30859358759,2508.41586903285,2357.99430434644,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2277.39480652784,2070.40990424808,2073.15341625367,2010.93860464954,1652.29560124416
21.0757409440176,2902.64211799214,2508.41586903285,2357.99430434644,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2277.39480652784,2070.40990424808,2073.15341625367,2010.0287258936,1652.29560124416
21.185510428101,2903.82095000649,2508.41586903285,2357.99430434644,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2274.93190930029,2070.40990424808,2073.15341625367,2010.0287258936,1652.29560124416
21.2952799121844,2905.48427476046,2508.41586903285,2355.93264777193,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2274.93190930029,2070.40990424808,2073.15341625367,2010.0287258936,1652.29560124416
21.4050493962678,2905.48427476046,2508.41586903285,2355.93264777193,2373.03874859218,2470.66966973218,2204.78601861203,1881.33276256303,2293.63248005434,2070.40990424808,2055.56588707209,2010.0287258936,1652.29560124416
21.5148188803513,2905.48427476046,2508.41586903285,2355.93264777193,2380.5452999361,2470.66966973218,2204.78601861203,1881.33276256303,2293.63248005434,2064.57350840577,2055.56588707209,2010.0287258936,1652.29560124416
21.6245883644347,2905.48427476046,2508.41586903285,2355.93264777193,2380.5452999361,2470.66966973218,2204.78601861203,1881.33276256303,2308.71988218705,2064.57350840577,2041.30622937582,2010.0287258936,1652.29560124416
21.7343578485181,2905.48427476046,2508.41586903285,2355.93264777193,2380.5452999361,2470.66966973218,2204.78601861203,1873.84540841982,2314.90784783885,2064.57350840577,2041.30622937582,2010.0287258936,1652.29560124416
21.8441273326015,2905.48427476046,2508.41586903285,2363.18118879235,2380.5452999361,2470.66966973218,2204.78601861203,1873.84540841982,2314.90784783885,2058.57851349021,2041.30622937582,2010.0287258936,1652.29560124416
21.953896816685,2905.48427476046,2508.41586903285,2366.01162299535,2380.5452999361,2470.66966973218,2204.78601861203,1868.67343861171,2314.90784783885,2058.57851349021,2041.30622937582,2010.0287258936,1652.29560124416
22.0636663007684,2907.34731752173,2508.41586903285,2366.01162299535,2378.12156554149,2470.66966973218,2204.78601861203,1868.67343861171,2314.90784783885,2058.57851349021,2041.30622937582,2010.0287258936,1652.29560124416
22.1734357848518,2909.15277354402,2508.41586903285,2366.01162299535,2375.78026918847,2470.66966973218,2204.78601861203,1868.67343861171,2314.90784783885,2058.57851349021,2041.30622937582,2010.0287258936,1652.29560124416
22.2832052689352,2909.46213175955,2508.41586903285,2366.01162299535,2375.78026918847,2470.66966973218,2204.78601861203,1868.67343861171,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1652.29560124416
22.3929747530187,2909.46213175955,2508.41586903285,2368.70012185881,2375.78026918847,2470.66966973218,2204.78601861203,1863.82869527227,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1652.29560124416
22.5027442371021,2910.38880767875,2508.41586903285,2368.70012185881,2375.78026918847,2470.66966973218,2201.25137870931,1863.82869527227,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1652.29560124416
22.6125137211855,2910.38880767875,2508.41586903285,2371.25516446802,2375.78026918847,2470.66966973218,2201.25137870931,1859.278894948,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1652.29560124416
22.7222832052689,2910.38880767875,2508.41586903285,2372.11069057214,2375.78026918847,2470.66966973218,2201.25137870931,1859.278894948,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1650.69536064796
22.8320526893524,2910.38880767875,2508.41586903285,2346.46307103703,2375.78026918847,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1650.69536064796
22.9418221734358,2912.13368455983,2508.41586903285,2346.46307103703,2373.51622250118,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1650.69536064796
23.0515916575192,2913.82802152249,2508.41586903285,2346.46307103703,2371.32433398235,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1650.69536064796
23.1613611416026,2915.4747439592,2508.41586903285,2346.46307103703,2369.20018400034,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.77279706905,2010.0287258936,1650.69536064796
23.2711306256861,2915.76713683586,2508.41586903285,2346.46307103703,2369.20018400034,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.25850615197,2010.0287258936,1650.69536064796
23.3809001097695,2917.36637604926,2508.41586903285,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.25850615197,2010.0287258936,1650.69536064796
23.4906695938529,2920.57384903059,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2314.90784783885,2058.57851349021,2040.25850615197,2010.0287258936,1650.69536064796
23.6004390779363,2920.57384903059,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2326.88010308128,2058.57851349021,2028.63189220643,2010.0287258936,1650.69536064796
23.7102085620198,2920.8321699733,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2326.88010308128,2058.57851349021,2028.18932899565,2010.0287258936,1650.69536064796
23.8199780461032,2922.09900322961,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2324.56172023446,2058.57851349021,2028.18932899565,2010.0287258936,1650.69536064796
23.9297475301866,2922.35324763459,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2324.56172023446,2058.57851349021,2027.75221474972,2010.0287258936,1650.69536064796
24.03951701427,2922.62805935603,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2324.56172023446,2058.28133348219,2027.75221474972,2010.0287258936,1650.69536064796
24.1492864983535,2922.62805935603,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2334.24909272972,2058.28133348219,2027.75221474972,1991.79247961919,1650.69536064796
24.2590559824369,2923.91995580993,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2331.98151777202,2058.28133348219,2027.75221474972,1991.79247961919,1650.69536064796
24.3688254665203,2924.1909754313,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2331.98151777202,2057.98662872745,2027.75221474972,1991.79247961919,1650.69536064796
24.4785949506037,2924.22712943365,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2331.98151777202,2057.98662872745,2027.75221474972,1991.79247961919,1650.62283909898
24.5883644346872,2925.48683013641,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2329.7823243787,2057.98662872745,2027.75221474972,1991.79247961919,1650.62283909898
24.6981339187706,2926.71621827521,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2327.64760655764,2057.98662872745,2027.75221474972,1991.79247961919,1650.62283909898
24.807903402854,2926.98041885782,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2327.64760655764,2057.69612779461,2027.75221474972,1991.79247961919,1650.62283909898
24.9176728869374,2926.98041885782,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1859.278894948,2338.30748452505,2051.0465414914,2027.75221474972,1991.79247961919,1650.62283909898
25.0274423710209,2926.98041885782,2504.12823992341,2346.46307103703,2367.14071273647,2470.66966973218,2310.66489006276,1854.04549463344,2342.23326438743,2051.0465414914,2027.75221474972,1991.79247961919,1650.62283909898
25.1372118551043,2929.50568697323,2504.12823992341,2346.46307103703,2367.14071273647,2465.66015600795,2310.66489006276,1854.04549463344,2342.23326438743,2051.0465414914,2027.75221474972,1991.79247961919,1650.62283909898
25.2469813391877,2931.90716583904,2504.12823992341,2346.46307103703,2367.14071273647,2460.9592994483,2310.66489006276,1854.04549463344,2342.23326438743,2051.0465414914,2027.75221474972,1991.79247961919,1650.62283909898
25.3567508232711,2932.14892248641,2504.12823992341,2346.46307103703,2367.14071273647,2460.9592994483,2310.66489006276,1854.04549463344,2342.23326438743,2050.78210376705,2027.75221474972,1991.79247961919,1650.62283909898
25.4665203073546,2932.18268416418,2504.12823992341,2346.46307103703,2367.14071273647,2460.9592994483,2310.66489006276,1854.04549463344,2342.23326438743,2050.78210376705,2027.75221474972,1991.79247961919,1650.55350928157
25.576289791438,2932.41192229953,2504.12823992341,2346.46307103703,2367.14071273647,2460.9592994483,2310.66489006276,1854.04549463344,2342.23326438743,2050.78210376705,2027.75221474972,1991.15711017287,1650.55350928157
25.6860592755214,2932.41192229953,2507.28953924634,2346.46307103703,2367.14071273647,2460.9592994483,2310.66489006276,1854.04549463344,2342.23326438743,2050.78210376705,2023.48649095104,1991.15711017287,1650.55350928157
25.7958287596048,2933.63231886577,2507.28953924634,2346.46307103703,2367.14071273647,2460.9592994483,2306.14779999432,1854.04549463344,2342.23326438743,2050.78210376705,2023.48649095104,1991.15711017287,1650.55350928157
25.9055982436883,2934.99367571867,2507.28953924634,2346.46307103703,2365.26781062243,2460.9592994483,2306.14779999432,1854.04549463344,2342.23326438743,2050.78210376705,2023.48649095104,1991.15711017287,1650.55350928157
26.0153677277717,2937.23401953094,2507.28953924634,2346.46307103703,2365.26781062243,2456.58389083473,2306.14779999432,1854.04549463344,2342.23326438743,2050.78210376705,2023.48649095104,1991.15711017287,1650.55350928157
26.1251372118551,2938.53563208195,2507.28953924634,2346.46307103703,2363.46450541909,2456.58389083473,2306.14779999432,1854.04549463344,2342.23326438743,2050.78210376705,2023.48649095104,1991.15711017287,1650.55350928157
26.2349066959385,2938.75026464718,2507.28953924634,2346.46307103703,2363.46450541909,2456.58389083473,2306.14779999432,1854.04549463344,2342.23326438743,2050.78210376705,2023.10331343263,1991.15711017287,1650.55350928157
26.344676180022,2939.91204238108,2507.28953924634,2346.46307103703,2363.46450541909,2456.58389083473,2306.14779999432,1854.04549463344,2340.25224105649,2050.78210376705,2023.10331343263,1991.15711017287,1650.55350928157
26.4544456641054,2939.91204238108,2507.28953924634,2346.46307103703,2363.46450541909,2456.58389083473,2306.14779999432,1854.04549463344,2341.59675497467,2050.78210376705,2023.10331343263,1991.15711017287,1648.59792684561
26.5642151481888,2939.91204238108,2507.28953924634,2365.99980007368,2363.46450541909,2456.58389083473,2306.14779999432,1854.04549463344,2315.5621002019,2050.78210376705,2023.10331343263,1991.15711017287,1648.59792684561
26.6739846322722,2940.90454553999,2507.28953924634,2365.99980007368,2363.46450541909,2456.58389083473,2306.14779999432,1854.04549463344,2314.00329814136,2050.78210376705,2023.10331343263,1991.15711017287,1648.59792684561
26.7837541163557,2940.90454553999,2507.28953924634,2365.99980007368,2366.12686211347,2456.58389083473,2306.14779999432,1849.69901041955,2314.00329814136,2050.78210376705,2023.10331343263,1991.15711017287,1648.59792684561
26.8935236004391,2942.17446413943,2507.28953924634,2365.99980007368,2364.37856827599,2456.58389083473,2306.14779999432,1849.69901041955,2314.00329814136,2050.78210376705,2023.10331343263,1991.15711017287,1648.59792684561
27.0032930845225,2942.39621537121,2507.28953924634,2365.99980007368,2364.37856827599,2456.58389083473,2306.14779999432,1849.69901041955,2314.00329814136,2050.52876492075,2023.10331343263,1991.15711017287,1648.59792684561
27.1130625686059,2942.39621537121,2507.28953924634,2365.99980007368,2364.37856827599,2456.58389083473,2306.14779999432,1849.69901041955,2321.49615136674,2050.52876492075,2023.10331343263,1974.91746079453,1648.59792684561
27.2228320526894,2942.39621537121,2507.28953924634,2365.99980007368,2364.37856827599,2456.58389083473,2306.14779999432,1849.69901041955,2328.02364715799,2050.52876492075,2023.10331343263,1961.35799442453,1648.59792684561
27.3326015367728,2942.39621537121,2507.74535603252,2365.99980007368,2364.37856827599,2456.58389083473,2306.14779999432,1849.69901041955,2328.02364715799,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
27.4423710208562,2944.4673348812,2507.74535603252,2365.99980007368,2364.37856827599,2452.52142911779,2306.14779999432,1849.69901041955,2328.02364715799,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
27.5521405049396,2947.03811834717,2504.0287805065,2365.99980007368,2364.37856827599,2452.52142911779,2306.14779999432,1849.69901041955,2328.02364715799,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
27.6619099890231,2948.23125249578,2504.0287805065,2365.99980007368,2362.70713391602,2452.52142911779,2306.14779999432,1849.69901041955,2328.02364715799,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
27.7716794731065,2950.14990065518,2504.0287805065,2365.99980007368,2362.70713391602,2448.73740625427,2306.14779999432,1849.69901041955,2328.02364715799,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
27.8814489571899,2951.11312763336,2504.0287805065,2365.99980007368,2362.70713391602,2448.73740625427,2306.14779999432,1849.69901041955,2326.54208975158,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
27.9912184412733,2952.12952289759,2504.0287805065,2365.99980007368,2362.70713391602,2448.73740625427,2302.24266717267,1849.69901041955,2326.54208975158,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
28.1009879253568,2953.2576980495,2504.0287805065,2365.99980007368,2361.10431061498,2448.73740625427,2302.24266717267,1849.69901041955,2326.54208975158,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
28.2107574094402,2954.23201728675,2504.0287805065,2365.99980007368,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2326.54208975158,2050.52876492075,2023.10331343263,1961.35799442453,1647.83651222472
28.3205268935236,2954.25947711836,2504.0287805065,2365.99980007368,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2326.54208975158,2050.52876492075,2023.10331343263,1961.35799442453,1647.7769645815
28.430296377607,2954.25947711836,2504.0287805065,2383.18694111124,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2305.85011813955,2050.52876492075,2023.10331343263,1961.35799442453,1647.7769645815
28.5400658616905,2954.45894668903,2504.0287805065,2383.18694111124,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2305.85011813955,2050.28912637667,2023.10331343263,1961.35799442453,1647.7769645815
28.6498353457739,2954.45894668903,2504.0287805065,2383.90735716604,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2305.85011813955,2050.28912637667,2023.10331343263,1961.35799442453,1646.31771515938
28.7596048298573,2954.45894668903,2504.0287805065,2389.03291342187,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2305.85011813955,2045.28265688876,2023.10331343263,1961.35799442453,1646.31771515938
28.8693743139407,2955.72322663789,2504.0287805065,2387.49983563795,2361.10431061498,2448.73740625427,2298.54016582381,1849.69901041955,2305.85011813955,2045.28265688876,2023.10331343263,1961.35799442453,1646.31771515938
28.9791437980242,2957.49632331018,2504.0287805065,2387.49983563795,2361.10431061498,2445.21192157807,2298.54016582381,1849.69901041955,2305.85011813955,2045.28265688876,2023.10331343263,1961.35799442453,1646.31771515938
29.0889132821076,2957.49632331018,2504.0287805065,2387.49983563795,2361.10431061498,2445.21192157807,2298.54016582381,1849.69901041955,2305.85011813955,2045.28265688876,2023.10331343263,1976.36040170869,1633.61441205939
29.198682766191,2958.42275383004,2504.0287805065,2387.49983563795,2361.10431061498,2445.21192157807,2295.05335916198,1849.69901041955,2305.85011813955,2045.28265688876,2023.10331343263,1976.36040170869,1633.61441205939
29.3084522502744,2959.21945948904,2504.0287805065,2387.49983563795,2361.10431061498,2445.21192157807,2295.05335916198,1849.69901041955,2304.66827104907,2045.28265688876,2023.10331343263,1976.36040170869,1633.61441205939
29.4182217343579,2959.21945948904,2504.0287805065,2391.11122267569,2361.10431061498,2445.21192157807,2295.05335916198,1849.69901041955,2304.66827104907,2045.28265688876,2023.10331343263,1967.57340410292,1633.61441205939
29.5279912184413,2960.44610626834,2504.0287805065,2389.62734291231,2361.10431061498,2445.21192157807,2295.05335916198,1849.69901041955,2304.66827104907,2045.28265688876,2023.10331343263,1967.57340410292,1633.61441205939
29.6377607025247,2961.33191709067,2504.0287805065,2389.62734291231,2361.10431061498,2445.21192157807,2291.74549819883,1849.69901041955,2304.66827104907,2045.28265688876,2023.10331343263,1967.57340410292,1633.61441205939
29.7475301866081,2961.5145191141,2504.0287805065,2389.62734291231,2361.10431061498,2445.21192157807,2291.74549819883,1849.69901041955,2304.66827104907,2045.06177456591,2023.10331343263,1967.57340410292,1633.61441205939
29.8572996706915,2961.5145191141,2507.12867059553,2389.62734291231,2361.10431061498,2445.21192157807,2291.74549819883,1849.69901041955,2304.66827104907,2045.06177456591,2018.91353593543,1967.57340410292,1633.61441205939
29.967069154775,2961.5879421898,2507.12867059553,2389.62734291231,2361.10431061498,2445.21192157807,2291.74549819883,1849.54299258772,2304.66827104907,2045.06177456591,2018.91353593543,1967.57340410292,1633.61441205939
30.0768386388584,2961.76150198972,2507.12867059553,2389.62734291231,2361.10431061498,2445.21192157807,2291.74549819883,1849.54299258772,2304.66827104907,2045.06177456591,2018.58625465478,1967.57340410292,1633.61441205939
30.1866081229418,2961.83491979542,2507.12867059553,2389.62734291231,2361.10431061498,2445.21192157807,2291.74549819883,1849.38722267545,2304.66827104907,2045.06177456591,2018.58625465478,1967.57340410292,1633.61441205939
30.2963776070252,2962.6994519288,2507.12867059553,2389.62734291231,2361.10431061498,2445.21192157807,2288.57026493759,1849.38722267545,2304.66827104907,2045.06177456591,2018.58625465478,1967.57340410292,1633.61441205939
30.4061470911087,2962.88113481306,2507.12867059553,2389.62734291231,2361.10431061498,2445.21192157807,2288.57026493759,1849.38722267545,2304.66827104907,2044.84128599267,2018.58625465478,1967.57340410292,1633.61441205939
30.5159165751921,2962.88113481306,2507.12867059553,2394.31451656655,2361.10431061498,2445.21192157807,2288.57026493759,1849.38722267545,2304.66827104907,2040.12175373342,2018.58625465478,1967.57340410292,1633.61441205939
30.6256860592755,2962.88113481306,2507.12867059553,2397.55090760364,2361.10431061498,2445.21192157807,2288.57026493759,1849.38722267545,2304.66827104907,2040.12175373342,2018.58625465478,1959.74445680033,1633.61441205939
30.7354555433589,2962.90469576888,2507.12867059553,2397.55090760364,2361.10431061498,2445.21192157807,2288.57026493759,1849.38722267545,2304.66827104907,2040.12175373342,2018.58625465478,1959.74445680033,1633.56481824608
30.8452250274424,2964.56781553786,2507.12867059553,2397.55090760364,2361.10431061498,2441.89714651396,2288.57026493759,1849.38722267545,2304.66827104907,2040.12175373342,2018.58625465478,1959.74445680033,1633.56481824608
30.9549945115258,2966.76457149425,2503.79691443848,2397.55090760364,2361.10431061498,2441.89714651396,2288.57026493759,1849.38722267545,2304.66827104907,2040.12175373342,2018.58625465478,1959.74445680033,1633.56481824608
31.0647639956092,2967.76937211481,2503.79691443848,2397.55090760364,2359.60714888001,2441.89714651396,2288.57026493759,1849.38722267545,2304.66827104907,2040.12175373342,2018.58625465478,1959.74445680033,1633.56481824608
31.1745334796926,2968.50790315357,2503.79691443848,2397.55090760364,2359.60714888001,2441.89714651396,2288.57026493759,1849.38722267545,2303.54075744045,2040.12175373342,2018.58625465478,1959.74445680033,1633.56481824608
31.2843029637761,2970.05977082076,2503.79691443848,2397.55090760364,2359.60714888001,2438.78184162131,2288.57026493759,1849.38722267545,2303.54075744045,2040.12175373342,2018.58625465478,1959.74445680033,1633.56481824608
31.3940724478595,2970.22530311809,2503.79691443848,2397.55090760364,2359.60714888001,2438.78184162131,2288.57026493759,1849.38722267545,2303.54075744045,2039.91888358878,2018.58625465478,1959.74445680033,1633.56481824608
31.5038419319429,2971.19243266156,2503.79691443848,2397.55090760364,2358.15589460196,2438.78184162131,2288.57026493759,1849.38722267545,2303.54075744045,2039.91888358878,2018.58625465478,1959.74445680033,1633.56481824608
31.6136114160263,2972.68345082349,2503.79691443848,2397.55090760364,2358.15589460196,2435.8035559813,2288.57026493759,1849.38722267545,2303.54075744045,2039.91888358878,2018.58625465478,1959.74445680033,1633.56481824608
31.7233809001098,2974.69298328696,2500.6894605226,2397.55090760364,2358.15589460196,2435.8035559813,2288.57026493759,1849.38722267545,2303.54075744045,2039.91888358878,2018.58625465478,1959.74445680033,1633.56481824608
31.8331503841932,2974.81730882691,2500.6894605226,2397.55090760364,2358.15589460196,2435.8035559813,2288.57026493759,1849.38722267545,2303.54075744045,2039.91888358878,2018.58625465478,1959.43157168025,1633.56481824608
31.9429198682766,2975.93373546192,2500.6894605226,2396.16461073219,2358.15589460196,2435.8035559813,2288.57026493759,1849.38722267545,2303.54075744045,2039.91888358878,2018.58625465478,1959.43157168025,1633.56481824608
32.05268935236,2975.93373546192,2500.6894605226,2396.16461073219,2364.62300590504,2435.8035559813,2288.57026493759,1849.38722267545,2303.54075744045,2034.57891198794,2018.58625465478,1959.43157168025,1633.56481824608
32.1624588364435,2975.93373546192,2500.6894605226,2396.16461073219,2364.62300590504,2435.8035559813,2288.57026493759,1849.38722267545,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1621.96543737517
32.2722283205269,2976.69162946311,2500.6894605226,2396.16461073219,2364.62300590504,2435.8035559813,2285.717385763,1849.38722267545,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1621.96543737517
32.3819978046103,2976.75665641326,2500.6894605226,2396.16461073219,2364.62300590504,2435.8035559813,2285.717385763,1849.24322248042,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1621.96543737517
32.4917672886937,2978.67553738161,2497.7218457375,2396.16461073219,2364.62300590504,2435.8035559813,2285.717385763,1849.24322248042,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1621.96543737517
32.6015367727772,2978.67553738161,2497.7218457375,2396.16461073219,2364.62300590504,2435.8035559813,2285.717385763,1865.63715918697,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1605.36815494295
32.7113062568606,2978.67553738161,2497.7218457375,2396.16461073219,2364.62300590504,2435.8035559813,2285.717385763,1879.06585633407,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1591.78537060357
32.821075740944,2978.67553738161,2497.7218457375,2396.16461073219,2364.62300590504,2435.8035559813,2285.717385763,1890.38385914373,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1580.34572013947
32.9308452250274,2978.67553738161,2497.7218457375,2396.16461073219,2364.62300590504,2438.73155188694,2285.717385763,1887.25895153533,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1580.34572013947
33.0406147091109,2978.67553738161,2513.38841370527,2383.42778691966,2364.62300590504,2438.73155188694,2285.717385763,1887.25895153533,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1580.34572013947
33.1503841931943,2978.67553738161,2526.82172591373,2372.38200855145,2364.62300590504,2438.73155188694,2285.717385763,1887.25895153533,2303.54075744045,2034.57891198794,2018.58625465478,1971.93504975957,1580.34572013947
33.2601536772777,2978.67553738161,2526.82172591373,2372.38200855145,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2307.87468462236,2034.57891198794,2018.58625465478,1971.93504975957,1580.34572013947
33.3699231613611,2978.67553738161,2526.82172591373,2372.38200855145,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2316.0172186291,2028.09091471097,2018.58625465478,1971.93504975957,1580.34572013947
33.4796926454446,2978.67553738161,2538.53418718548,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2316.0172186291,2028.09091471097,2018.58625465478,1971.93504975957,1580.34572013947
33.589462129528,2979.39871460199,2538.53418718548,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2314.93514068607,2028.09091471097,2018.58625465478,1971.93504975957,1580.34572013947
33.6992316136114,2980.11300576433,2538.53418718548,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2313.86894386377,2028.09091471097,2018.58625465478,1971.93504975957,1580.34572013947
33.8090010976948,2982.38927505073,2535.50078521463,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2313.86894386377,2028.09091471097,2018.58625465478,1971.93504975957,1580.34572013947
33.9187705817783,2984.58189599541,2532.59146343016,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2313.86894386377,2028.09091471097,2018.58625465478,1971.93504975957,1580.34572013947
34.0285400658617,2984.58189599541,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2313.86894386377,2028.09091471097,2015.07202768824,1971.93504975957,1580.34572013947
34.1383095499451,2984.58189599541,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2319.72491432895,2028.09091471097,2015.07202768824,1961.03462697122,1580.34572013947
34.2480790340285,2985.27999511259,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2318.69105221163,2028.09091471097,2015.07202768824,1961.03462697122,1580.34572013947
34.357848518112,2985.41735496412,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2318.69105221163,2027.92064979571,2015.07202768824,1961.03462697122,1580.34572013947
34.4676180021954,2985.5303637261,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.46805886308,2318.69105221163,2027.92064979571,2015.07202768824,1960.76663407571,1580.34572013947
34.5773874862788,2985.5988533903,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.33583937283,2318.69105221163,2027.92064979571,2015.07202768824,1960.76663407571,1580.34572013947
34.6871569703622,2985.73637933751,2534.72508936459,2362.65218206401,2364.62300590504,2438.73155188694,2285.717385763,1881.33583937283,2318.69105221163,2027.75024941489,2015.07202768824,1960.76663407571,1580.34572013947
34.7969264544457,2986.6241617824,2534.72508936459,2362.65218206401,2363.26212540852,2438.73155188694,2285.717385763,1881.33583937283,2318.69105221163,2027.75024941489,2015.07202768824,1960.76663407571,1580.34572013947
34.9066959385291,2986.73636656938,2534.72508936459,2362.65218206401,2363.26212540852,2438.73155188694,2285.717385763,1881.33583937283,2318.69105221163,2027.75024941489,2015.07202768824,1960.50058921278,1580.34572013947
35.0164654226125,2986.74988051657,2534.72508936459,2362.65218206401,2363.26212540852,2438.73155188694,2285.717385763,1881.33583937283,2318.69105221163,2027.75024941489,2015.07202768824,1960.50058921278,1580.31995432891
35.1262349066959,2987.43780767693,2534.72508936459,2362.65218206401,2363.26212540852,2438.73155188694,2285.717385763,1881.33583937283,2317.67147075385,2027.75024941489,2015.07202768824,1960.50058921278,1580.31995432891
35.2360043907794,2988.30906570626,2534.72508936459,2362.65218206401,2361.92779685161,2438.73155188694,2285.717385763,1881.33583937283,2317.67147075385,2027.75024941489,2015.07202768824,1960.50058921278,1580.31995432891
35.3457738748628,2988.41990497811,2534.72508936459,2362.65218206401,2361.92779685161,2438.73155188694,2285.717385763,1881.33583937283,2317.67147075385,2027.75024941489,2015.07202768824,1960.23725671994,1580.31995432891
35.4555433589462,2988.48726776297,2534.72508936459,2362.65218206401,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2317.67147075385,2027.75024941489,2015.07202768824,1960.23725671994,1580.31995432891
35.5653128430296,2988.48726776297,2543.2879296601,2362.65218206401,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2307.93321954402,2027.75024941489,2015.07202768824,1960.23725671994,1580.31995432891
35.6750823271131,2989.33170643266,2543.2879296601,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2307.93321954402,2027.75024941489,2015.07202768824,1960.23725671994,1580.31995432891
35.7848518111965,2989.33170643266,2543.2879296601,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.75024941489,2004.80149673181,1960.23725671994,1580.31995432891
35.8946212952799,2989.33170643266,2545.11453077858,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.75024941489,2001.87279901217,1960.23725671994,1580.31995432891
36.0043907793633,2989.34508349732,2545.11453077858,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.75024941489,2001.87279901217,1960.23725671994,1580.29439381547
36.1141602634468,2989.35848292998,2545.11453077858,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.75024941489,2001.87279901217,1960.23725671994,1580.26881669221
36.2239297475302,2991.57556020669,2542.29399427391,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.75024941489,2001.87279901217,1960.23725671994,1580.26881669221
36.3336992316136,2991.70808764415,2542.29399427391,2361.67195866974,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.26881669221
36.443468715697,2991.70808764415,2551.76440593703,2352.90771312925,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.26881669221
36.5532381997805,2993.9542780927,2549.02080024791,2352.90771312925,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.26881669221
36.6630076838639,2996.12183359605,2546.38086295365,2352.90771312925,2361.92779685161,2438.73155188694,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.26881669221
36.7727771679473,2997.37134884237,2546.38086295365,2352.90771312925,2361.92779685161,2436.11027494529,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.26881669221
36.8825466520307,2997.38382803724,2546.38086295365,2352.90771312925,2361.92779685161,2436.11027494529,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.24437031507
36.9923161361142,2999.45870430826,2543.84659394735,2352.90771312925,2361.92779685161,2436.11027494529,2285.717385763,1881.20515423653,2314.72386856474,2027.58248542502,2001.87279901217,1960.23725671994,1580.24437031507
37.1020856201976,2999.45870430826,2543.84659394735,2352.90771312925,2367.95446370952,2436.11027494529,2285.717385763,1881.20515423653,2314.72386856474,2022.60691837885,2001.87279901217,1960.23725671994,1580.24437031507
37.211855104281,2999.45870430826,2543.84659394735,2352.90771312925,2367.95446370952,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.60691837885,2001.87279901217,1950.37184023758,1580.24437031507
37.3216245883644,2999.57875233521,2543.84659394735,2352.90771312925,2367.95446370952,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.45334377256,2001.87279901217,1950.37184023758,1580.24437031507
37.4313940724479,2999.57875233521,2543.84659394735,2356.15465246213,2367.95446370952,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.45334377256,2001.87279901217,1942.93204226939,1580.24437031507
37.5411635565313,2999.57875233521,2543.84659394735,2356.15465246213,2368.55530179207,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.45334377256,2001.87279901217,1942.93204226939,1579.37536467408
37.6509330406147,2999.57875233521,2545.49965957795,2356.15465246213,2368.55530179207,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.45334377256,1999.01829709569,1942.93204226939,1579.37536467408
37.7607025246981,2999.57875233521,2545.49965957795,2341.08977045987,2389.0630772996,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.45334377256,1999.01829709569,1942.93204226939,1579.37536467408
37.8704720087816,2999.699713632,2545.49965957795,2341.08977045987,2389.0630772996,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.29895868019,1999.01829709569,1942.93204226939,1579.37536467408
37.980241492865,3000.38852593219,2545.49965957795,2340.32565039044,2389.0630772996,2436.11027494529,2285.717385763,1881.20515423653,2319.83387663423,2022.29895868019,1999.01829709569,1942.93204226939,1579.37536467408
38.0900109769484,3000.45064269402,2545.49965957795,2340.32565039044,2389.0630772996,2436.11027494529,2285.717385763,1881.08117804451,2319.83387663423,2022.29895868019,1999.01829709569,1942.93204226939,1579.37536467408
38.1997804610318,3000.45064269402,2553.54128363973,2332.95303791012,2389.0630772996,2436.11027494529,2285.717385763,1881.08117804451,2319.83387663423,2022.29895868019,1999.01829709569,1942.93204226939,1579.37536467408
38.3095499451153,3000.45064269402,2555.1676886488,2332.95303791012,2389.0630772996,2436.11027494529,2285.717385763,1881.08117804451,2319.83387663423,2020.48770241375,1999.01829709569,1942.93204226939,1579.37536467408
38.4193194291987,3001.36256071701,2555.1676886488,2332.95303791012,2387.72889402677,2436.11027494529,2285.717385763,1881.08117804451,2319.83387663423,2020.48770241375,1999.01829709569,1942.93204226939,1579.37536467408
38.5290889132821,3001.9998037005,2555.1676886488,2332.95303791012,2387.72889402677,2436.11027494529,2283.26439248076,1881.08117804451,2319.83387663423,2020.48770241375,1999.01829709569,1942.93204226939,1579.37536467408
38.6388583973655,3004.12116210345,2552.68640137764,2332.95303791012,2387.72889402677,2436.11027494529,2283.26439248076,1881.08117804451,2319.83387663423,2020.48770241375,1999.01829709569,1942.93204226939,1579.37536467408
38.748627881449,3004.23672179957,2552.68640137764,2332.95303791012,2387.72889402677,2436.11027494529,2283.26439248076,1881.08117804451,2319.83387663423,2020.338949176,1999.01829709569,1942.93204226939,1579.37536467408
38.8583973655324,3004.23672179957,2552.68640137764,2335.29585475495,2387.72889402677,2436.11027494529,2283.26439248076,1876.28150367079,2319.83387663423,2020.338949176,1999.01829709569,1942.93204226939,1579.37536467408
38.9681668496158,3004.23672179957,2552.68640137764,2337.53065985182,2387.72889402677,2436.11027494529,2283.26439248076,1871.76370505476,2319.83387663423,2020.338949176,1999.01829709569,1942.93204226939,1579.37536467408
39.0779363336992,3005.41308353319,2552.68640137764,2337.53065985182,2387.72889402677,2433.62863510488,2283.26439248076,1871.76370505476,2319.83387663423,2020.338949176,1999.01829709569,1942.93204226939,1579.37536467408
39.1877058177827,3005.41308353319,2552.68640137764,2340.60181914877,2387.72889402677,2433.62863510488,2283.26439248076,1871.76370505476,2319.83387663423,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.2974753018661,3006.56300898103,2552.68640137764,2340.60181914877,2387.72889402677,2431.22353811931,2283.26439248076,1871.76370505476,2319.83387663423,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.4072447859495,3007.16689396321,2552.68640137764,2340.60181914877,2387.72889402677,2431.22353811931,2280.93841163414,1871.76370505476,2319.83387663423,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.5170142700329,3007.76184828213,2552.68640137764,2340.60181914877,2387.72889402677,2431.22353811931,2280.93841163414,1871.76370505476,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.6267837541164,3008.40706164075,2552.68640137764,2339.90815623346,2387.72889402677,2431.22353811931,2280.93841163414,1871.76370505476,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.7365532381998,3008.40706164075,2552.68640137764,2342.00237114402,2387.72889402677,2431.22353811931,2280.93841163414,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.8463227222832,3009.05450671156,2552.68640137764,2341.31348847811,2387.72889402677,2431.22353811931,2280.93841163414,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
39.9560922063666,3009.05450671156,2552.68640137764,2352.50538433062,2387.72889402677,2431.22353811931,2232.72225946027,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1579.37536467408
40.0658616904501,3009.05450671156,2552.68640137764,2352.91998498083,2387.72889402677,2431.22353811931,2232.72225946027,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1578.46550701084
40.1756311745335,3009.05450671156,2552.68640137764,2352.91998498083,2387.72889402677,2431.80788126482,2232.72225946027,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1577.81959228869
40.2854006586169,3009.05450671156,2552.68640137764,2352.91998498083,2387.72889402677,2432.38671647885,2232.72225946027,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1577.17999308443
40.3951701427003,3010.1728491695,2552.68640137764,2352.91998498083,2387.72889402677,2430.06942011251,2232.72225946027,1867.53088623287,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1577.17999308443
40.5049396267838,3010.1728491695,2552.68640137764,2354.76635957636,2387.72889402677,2430.06942011251,2232.72225946027,1863.72594166205,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1577.17999308443
40.6147091108672,3010.18425698781,2552.68640137764,2354.76635957636,2387.72889402677,2430.06942011251,2232.72225946027,1863.72594166205,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1577.15748924732
40.7244785949506,3010.18425698781,2552.68640137764,2355.17014517771,2387.72889402677,2430.06942011251,2232.72225946027,1863.72594166205,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1576.27681115571
40.834248079034,3010.18425698781,2552.68640137764,2356.94720365606,2387.72889402677,2430.06942011251,2232.72225946027,1860.1030648643,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1576.27681115571
40.9440175631175,3010.18425698781,2552.68640137764,2358.66124557252,2387.72889402677,2430.06942011251,2232.72225946027,1856.64463281213,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1576.27681115571
41.0537870472009,3010.89143065682,2552.68640137764,2357.95002253154,2387.72889402677,2430.06942011251,2232.72225946027,1856.64463281213,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1576.27681115571
41.1635565312843,3010.89143065682,2552.68640137764,2357.95002253154,2387.72889402677,2430.64327983238,2232.72225946027,1856.64463281213,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1575.63933681164
41.2733260153677,3011.99307891368,2552.68640137764,2357.95002253154,2387.72889402677,2428.38976038569,2232.72225946027,1856.64463281213,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1575.63933681164
41.3830954994512,3011.99307891368,2552.68640137764,2357.95002253154,2387.72889402677,2430.84955201604,2232.72225946027,1854.22001718066,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1575.63933681164
41.4928649835346,3012.04161272827,2552.68640137764,2357.95002253154,2387.72889402677,2430.84955201604,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1575.63933681164
41.602634467618,3013.13461632991,2552.68640137764,2357.95002253154,2387.72889402677,2428.65723431314,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1999.01829709569,1935.42383382956,1575.63933681164
41.7124039517014,3013.24248272761,2552.68640137764,2357.95002253154,2387.72889402677,2428.65723431314,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.80432840938,1935.42383382956,1575.63933681164
41.8221734357849,3013.25364453109,2552.68640137764,2357.95002253154,2387.72889402677,2428.65723431314,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.80432840938,1935.42383382956,1575.61740770078
41.9319429198683,3013.36164303331,2552.68640137764,2357.95002253154,2387.72889402677,2428.65723431314,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.42383382956,1575.61740770078
42.0417124039517,3014.43406409417,2552.68640137764,2357.95002253154,2387.72889402677,2426.52378892485,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.42383382956,1575.61740770078
42.1514818880351,3015.48348398741,2552.68640137764,2357.95002253154,2387.72889402677,2424.44926742147,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.42383382956,1575.61740770078
42.2612513721186,3015.49447006144,2552.68640137764,2357.95002253154,2387.72889402677,2424.44926742147,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.42383382956,1575.59571307426
42.371020856202,3016.5237684215,2552.68640137764,2357.95002253154,2387.72889402677,2422.4287510991,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.42383382956,1575.59571307426
42.4807903402854,3017.53205765894,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.42383382956,1575.59571307426
42.5905598243688,3017.61000883756,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.1313352063,2318.96753235675,2020.338949176,1998.59060543046,1935.24619336478,1575.59571307426
42.7003293084522,3018.16936151761,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.1313352063,2318.12916244191,2020.338949176,1998.59060543046,1935.24619336478,1575.59571307426
42.8100987925357,3018.72362293562,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.1313352063,2317.30012574231,2020.338949176,1998.59060543046,1935.24619336478,1575.59571307426
42.9198682766191,3018.80094445532,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.1313352063,2317.30012574231,2020.338949176,1998.59060543046,1935.06976367346,1575.59571307426
43.0296377607025,3018.90734772761,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.1313352063,2317.30012574231,2020.19507191865,1998.59060543046,1935.06976367346,1575.59571307426
43.139407244786,3018.95375669446,2552.68640137764,2357.95002253154,2387.72889402677,2420.46124779339,2232.72225946027,1854.04512916413,2317.30012574231,2020.19507191865,1998.59060543046,1935.06976367346,1575.59571307426
43.2491767288694,3019.93820719674,2552.68640137764,2357.95002253154,2387.72889402677,2418.54839645904,2232.72225946027,1854.04512916413,2317.30012574231,2020.19507191865,1998.59060543046,1935.06976367346,1575.59571307426
43.3589462129528,3019.98426360677,2552.68640137764,2357.95002253154,2387.72889402677,2418.54839645904,2232.72225946027,1853.95937925295,2317.30012574231,2020.19507191865,1998.59060543046,1935.06976367346,1575.59571307426
43.4687156970362,3019.98426360677,2552.68640137764,2359.64686617166,2387.72889402677,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2020.19507191865,1998.59060543046,1935.06976367346,1575.59571307426
43.5784851811196,3019.98426360677,2552.68640137764,2363.38349321354,2387.72889402677,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2015.18776239698,1998.59060543046,1935.06976367346,1575.59571307426
43.6882546652031,3020.78960261882,2552.68640137764,2363.38349321354,2386.48020528677,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2015.18776239698,1998.59060543046,1935.06976367346,1575.59571307426
43.7980241492865,3021.58372583925,2552.68640137764,2363.38349321354,2385.25252461651,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2015.18776239698,1998.59060543046,1935.06976367346,1575.59571307426
43.9077936333699,3021.58372583925,2554.27360203027,2363.38349321354,2385.25252461651,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2015.18776239698,1995.83534033255,1935.06976367346,1575.59571307426
44.0175631174533,3021.68425913163,2554.27360203027,2363.38349321354,2385.25252461651,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1935.06976367346,1575.59571307426
44.1273326015368,3021.76073491932,2554.27360203027,2363.38349321354,2385.25252461651,2418.54839645904,2232.72225946027,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1934.89525543458,1575.59571307426
44.2371020856202,3022.17394236545,2554.27360203027,2363.38349321354,2385.25252461651,2418.54839645904,2231.34627545285,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1934.89525543458,1575.59571307426
44.3468715697036,3022.18457679715,2554.27360203027,2363.38349321354,2385.25252461651,2418.54839645904,2231.34627545285,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1934.89525543458,1575.57454407985
44.456641053787,3022.18457679715,2562.96638007108,2356.19233355869,2385.25252461651,2418.54839645904,2231.34627545285,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1934.89525543458,1575.57454407985
44.5664105378705,3022.18457679715,2564.03398787765,2356.19233355869,2385.25252461651,2418.54839645904,2231.34627545285,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1932.6554818902,1575.57454407985
44.6761800219539,3022.18457679715,2565.07747599718,2356.19233355869,2385.25252461651,2418.54839645904,2231.34627545285,1850.66650317207,2317.30012574231,2015.18776239698,1995.6351499238,1930.48073232515,1575.57454407985
44.7859495060373,3022.28709848026,2565.07747599718,2356.19233355869,2385.25252461651,2418.54839645904,2231.34627545285,1850.66650317207,2317.30012574231,2015.05109758569,1995.6351499238,1930.48073232515,1575.57454407985
44.8957189901207,3022.28709848026,2565.07747599718,2356.19233355869,2385.25252461651,2422.20232788595,2231.34627545285,1850.66650317207,2317.30012574231,2015.05109758569,1995.6351499238,1925.7668864692,1575.57454407985
45.0054884742042,3022.35947287986,2565.07747599718,2356.19233355869,2385.25252461651,2422.20232788595,2231.34627545285,1850.66650317207,2317.30012574231,2015.05109758569,1995.6351499238,1925.60872605273,1575.57454407985
45.1152579582876,3022.40475524915,2565.07747599718,2356.19233355869,2385.25252461651,2422.20232788595,2231.34627545285,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1925.60872605273,1575.57454407985
45.225027442371,3023.39279540362,2565.07747599718,2356.19233355869,2385.25252461651,2420.33006427395,2231.34627545285,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1925.60872605273,1575.57454407985
45.3347969264544,3024.36183449319,2565.07747599718,2356.19233355869,2385.25252461651,2418.50365450596,2231.34627545285,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1925.60872605273,1575.57454407985
45.4445664105379,3010.79108338494,2565.07747599718,2356.19233355869,2385.25252461651,2418.50365450596,2231.34627545285,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1925.60872605273,1611.5868075016
45.5543358946213,3010.79108338494,2565.07747599718,2356.19233355869,2385.25252461651,2418.50365450596,2231.34627545285,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1936.2479760633,1601.34356717084
45.6641053787047,3011.22904679032,2565.07747599718,2356.19233355869,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1936.2479760633,1601.34356717084
45.7738748627881,3011.92319613469,2565.07747599718,2355.48462054045,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2317.30012574231,2015.05109758569,1995.6351499238,1936.2479760633,1601.34356717084
45.8836443468716,3012.50201778399,2565.07747599718,2355.48462054045,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2316.42155062684,2015.05109758569,1995.6351499238,1936.2479760633,1601.34356717084
45.993413830955,3013.07530716276,2565.07747599718,2355.48462054045,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1936.2479760633,1601.34356717084
46.1031833150384,3013.15436595031,2565.07747599718,2355.48462054045,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1936.0790805593,1601.34356717084
46.2129527991218,3013.15436595031,2565.07747599718,2355.94176040669,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1936.0790805593,1600.36188157525
46.3227222832053,3013.83939757077,2565.07747599718,2355.24077089733,2385.25252461651,2418.50365450596,2229.89753455432,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1936.0790805593,1600.36188157525
46.4324917672887,3014.2651219453,2565.07747599718,2355.24077089733,2385.25252461651,2418.50365450596,2228.4917080828,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1936.0790805593,1600.36188157525
46.5422612513721,3014.34370642957,2565.07747599718,2355.24077089733,2385.25252461651,2418.50365450596,2228.4917080828,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1935.91113491454,1600.36188157525
46.6520307354555,3015.34758151877,2565.07747599718,2355.24077089733,2385.25252461651,2416.60365373115,2228.4917080828,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1935.91113491454,1600.36188157525
46.761800219539,3016.01899603865,2565.07747599718,2354.54880092797,2385.25252461651,2416.60365373115,2228.4917080828,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1935.91113491454,1600.36188157525
46.8715697036224,3016.83265634021,2565.07747599718,2354.54880092797,2383.96988091254,2416.60365373115,2228.4917080828,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1935.91113491454,1600.36188157525
46.9813391877058,3017.6347596586,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2228.4917080828,1850.5836916384,2315.55325408419,2015.05109758569,1995.6351499238,1935.91113491454,1600.36188157525
47.0911086717892,3018.18481668241,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2228.4917080828,1850.5836916384,2314.70808987687,2015.05109758569,1995.6351499238,1935.91113491454,1600.36188157525
47.2008781558727,3018.18481668241,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2228.4917080828,1850.5836916384,2315.57601218285,2015.05109758569,1995.6351499238,1935.91113491454,1599.09172395908
47.3106476399561,3018.59403460989,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2227.13655860515,1850.5836916384,2315.57601218285,2015.05109758569,1995.6351499238,1935.91113491454,1599.09172395908
47.4204171240395,3018.60612488862,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2227.13655860515,1850.5836916384,2315.57601218285,2015.05109758569,1995.6351499238,1935.91113491454,1599.0680656008
47.5301866081229,3019.1542345525,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2227.13655860515,1850.5836916384,2314.73907661742,2015.05109758569,1995.6351499238,1935.91113491454,1599.0680656008
47.6399560922064,3019.55803294166,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2225.80689484339,1850.5836916384,2314.73907661742,2015.05109758569,1995.6351499238,1935.91113491454,1599.0680656008
47.7497255762898,3019.63383451754,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2225.80689484339,1850.5836916384,2314.73907661742,2015.05109758569,1995.6351499238,1935.74730797648,1599.0680656008
47.8594950603732,3019.6458881938,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2225.80689484339,1850.5836916384,2314.73907661742,2015.05109758569,1995.6351499238,1935.74730797648,1599.04447536587
47.9692645444566,3020.18937585463,2565.07747599718,2354.54880092797,2382.70935852678,2416.60365373115,2225.80689484339,1850.5836916384,2313.91067208557,2015.05109758569,1995.6351499238,1935.74730797648,1599.04447536587
48.0790340285401,3020.83874233541,2565.07747599718,2353.86617718171,2382.70935852678,2416.60365373115,2225.80689484339,1850.5836916384,2313.91067208557,2015.05109758569,1995.6351499238,1935.74730797648,1599.04447536587
48.1888035126235,3020.83874233541,2565.07747599718,2353.86617718171,2382.70935852678,2416.60365373115,2225.80689484339,1846.37520004192,2317.03938445159,2015.05109758569,1995.6351499238,1935.74730797648,1599.04447536587
48.2985729967069,3020.88281460073,2565.07747599718,2353.86617718171,2382.70935852678,2416.60365373115,2225.80689484339,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.74730797648,1599.04447536587
48.4083424807903,3020.95835102117,2565.07747599718,2353.86617718171,2382.70935852678,2416.60365373115,2225.80689484339,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
48.5181119648738,3022.96635994143,2562.5584799145,2353.86617718171,2382.70935852678,2416.60365373115,2225.80689484339,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
48.6278814489572,3023.35772985129,2562.5584799145,2353.86617718171,2382.70935852678,2416.60365373115,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
48.7376509330406,3023.35772985129,2570.60008038913,2347.05249686507,2382.70935852678,2416.60365373115,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
48.847420417124,3023.96703586947,2570.60008038913,2346.42216053889,2382.70935852678,2416.60365373115,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
48.9571899012075,3025.980572569,2568.15356506171,2346.42216053889,2382.70935852678,2416.60365373115,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
49.0669593852909,3026.57308822668,2568.15356506171,2345.80334140198,2382.70935852678,2416.60365373115,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
49.1767288693743,3027.16078872012,2568.15356506171,2345.18968559258,2382.70935852678,2416.60365373115,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
49.2864983534577,3028.0681905679,2568.15356506171,2345.18968559258,2382.70935852678,2414.83127817761,2224.51924190637,1846.29364610626,2317.03938445159,2015.05109758569,1995.6351499238,1935.58423810163,1599.04447536587
49.3962678375412,3028.0681905679,2568.15356506171,2345.18968559258,2382.70935852678,2414.83127817761,2224.51924190637,1846.29364610626,2317.88585930281,2015.05109758569,1995.6351499238,1935.58423810163,1597.7907971684
49.5060373216246,3028.07944344844,2568.15356506171,2345.18968559258,2382.70935852678,2414.83127817761,2224.51924190637,1846.29364610626,2317.88585930281,2015.05109758569,1995.6351499238,1935.58423810163,1597.76843528667
49.615806805708,3028.97398555237,2568.15356506171,2345.18968559258,2382.70935852678,2413.09648017614,2224.51924190637,1846.29364610626,2317.88585930281,2015.05109758569,1995.6351499238,1935.58423810163,1597.76843528667
49.7255762897914,3029.34554704861,2568.15356506171,2345.18968559258,2382.70935852678,2413.09648017614,2223.287174294,1846.29364610626,2317.88585930281,2015.05109758569,1995.6351499238,1935.58423810163,1597.76843528667
49.8353457738749,3030.22271726649,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2223.287174294,1846.29364610626,2317.88585930281,2015.05109758569,1995.6351499238,1935.58423810163,1597.76843528667
49.9451152579583,3030.73254945847,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2223.287174294,1846.29364610626,2317.09530837633,2015.05109758569,1995.6351499238,1935.58423810163,1597.76843528667
50.0548847420417,3031.09648927208,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2222.08232272,1846.29364610626,2317.09530837633,2015.05109758569,1995.6351499238,1935.58423810163,1597.76843528667
50.1646542261251,3031.10752001251,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2222.08232272,1846.29364610626,2317.09530837633,2015.05109758569,1995.6351499238,1935.58423810163,1597.7463779252
50.2744237102086,3031.10752001251,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2222.08232272,1857.79417447849,2317.09530837633,2015.05109758569,1995.6351499238,1935.58423810163,1584.69093401252
50.384193194292,3031.10752001251,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2222.08232272,1857.79417447849,2323.26963895826,2015.05109758569,1986.54585617509,1935.58423810163,1584.69093401252
50.4939626783754,3031.63080073132,2568.15356506171,2345.18968559258,2382.70935852678,2411.40279661881,2222.08232272,1857.79417447849,2322.48106252571,2015.05109758569,1986.54585617509,1935.58423810163,1584.69093401252
50.6037321624588,3031.63080073132,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1857.79417447849,2322.48106252571,2015.05109758569,1986.54585617509,1929.10071586724,1584.69093401252
50.7135016465423,3031.63080073132,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1857.79417447849,2322.48106252571,2015.05109758569,1992.62224860652,1929.10071586724,1578.46238344403
50.8232711306257,3031.63080073132,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1857.79417447849,2322.48106252571,2015.05109758569,1998.18073122878,1929.10071586724,1572.76913631584
50.9330406147091,3031.63080073132,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1840.99943484135,2322.48106252571,2015.05109758569,2015.66005240129,1929.10071586724,1572.76913631584
51.0428100987925,3031.73300092424,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1840.99943484135,2322.48106252571,2015.05109758569,2015.47290072625,1929.10071586724,1572.76913631584
51.152579582876,3031.82949948648,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1840.99943484135,2322.48106252571,2014.91235358147,2015.47290072625,1929.10071586724,1572.76913631584
51.2623490669594,3031.89717003193,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1840.99943484135,2322.48106252571,2014.91235358147,2015.47290072625,1928.95553742557,1572.76913631584
51.3721185510428,3031.99956257517,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2222.08232272,1840.99943484135,2322.48106252571,2014.91235358147,2015.28583609714,1928.95553742557,1572.76913631584
51.4818880351262,3032.36496476129,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2220.89328780695,1840.99943484135,2322.48106252571,2014.91235358147,2015.28583609714,1928.95553742557,1572.76913631584
51.5916575192097,3032.72681468402,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1840.99943484135,2322.48106252571,2014.91235358147,2015.28583609714,1928.95553742557,1572.76913631584
51.7014270032931,3032.82879104589,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1840.99943484135,2322.48106252571,2014.91235358147,2015.09950673274,1928.95553742557,1572.76913631584
51.8111964873765,3032.82879104589,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1850.58314808423,2322.48106252571,2014.91235358147,2015.09950673274,1928.95553742557,1561.92446550027
51.9209659714599,3032.82879104589,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1850.58314808423,2322.48106252571,2014.91235358147,2019.29103337771,1928.95553742557,1557.55315544257
52.0307354555434,3032.93304515625,2568.15356506171,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1850.58314808423,2322.48106252571,2014.91235358147,2019.10420941685,1928.95553742557,1557.55315544257
52.1405049396268,3034.84462776978,2565.77771884697,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1850.58314808423,2322.48106252571,2014.91235358147,2019.10420941685,1928.95553742557,1557.55315544257
52.2502744237102,3034.93975751767,2565.77771884697,2347.9361589735,2382.70935852678,2411.40279661881,2219.7216496554,1850.58314808423,2322.48106252571,2014.77455462412,2019.10420941685,1928.95553742557,1557.55315544257
52.3600439077936,3035.79534640355,2565.77771884697,2347.9361589735,2382.70935852678,2409.75490864541,2219.7216496554,1850.58314808423,2322.48106252571,2014.77455462412,2019.10420941685,1928.95553742557,1557.55315544257
52.4698133918771,3035.88979543166,2565.77771884697,2347.9361589735,2382.70935852678,2409.75490864541,2219.7216496554,1850.58314808423,2322.48106252571,2014.63739532483,2019.10420941685,1928.95553742557,1557.55315544257
52.5795828759605,3036.24195416249,2565.77771884697,2347.9361589735,2382.70935852678,2409.75490864541,2218.58308696193,1850.58314808423,2322.48106252571,2014.63739532483,2019.10420941685,1928.95553742557,1557.55315544257
52.6893523600439,3036.75443205838,2565.77771884697,2347.9361589735,2382.70935852678,2409.75490864541,2218.58308696193,1850.58314808423,2321.70269893994,2014.63739532483,2019.10420941685,1928.95553742557,1557.55315544257
52.7991218441273,3036.84838556836,2565.77771884697,2347.9361589735,2382.70935852678,2409.75490864541,2218.58308696193,1850.58314808423,2321.70269893994,2014.50069041114,2019.10420941685,1928.95553742557,1557.55315544257
52.9088913282108,3036.85659113228,2565.77771884697,2347.9361589735,2382.70935852678,2409.75490864541,2218.58308696193,1850.58314808423,2321.70269893994,2014.50069041114,2019.10420941685,1928.95553742557,1557.53873926038
53.0186608122942,3036.85659113228,2567.32104500661,2347.9361589735,2382.70935852678,2409.75490864541,2218.58308696193,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.95553742557,1557.53873926038
53.1284302963776,3037.69805110005,2567.32104500661,2347.9361589735,2382.70935852678,2408.14269038663,2218.58308696193,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.95553742557,1557.53873926038
53.238199780461,3038.04498181473,2567.32104500661,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.95553742557,1557.53873926038
53.3479692645445,3038.11071387221,2567.32104500661,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.81364244654,1557.53873926038
53.4577387486279,3039.95361362882,2565.02606214592,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.81364244654,1557.53873926038
53.5675082327113,3041.74280755638,2562.80398744433,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.81364244654,1557.53873926038
53.6772777167947,3041.80632723843,2562.80398744433,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.67482493034,1557.53873926038
53.7870472008782,3041.80632723843,2562.93978927926,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.67482493034,1557.32602309182
53.8968166849616,3043.55153066163,2560.78039640018,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.67482493034,1557.32602309182
54.006586169045,3043.55931789362,2560.78039640018,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.67482493034,1557.31209614793
54.1163556531284,3043.56712036983,2560.78039640018,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.58314808423,2321.70269893994,2012.64320382187,2019.10420941685,1928.67482493034,1557.29815575738
54.2261251372119,3043.60502817317,2560.78039640018,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1928.67482493034,1557.29815575738
54.3358946212953,3043.60502817317,2560.78039640018,2347.9361589735,2382.70935852678,2408.14269038663,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1936.56172161628,1550.7655735587
54.4456641053787,3043.60502817317,2560.78039640018,2347.9361589735,2386.4834088193,2408.14269038663,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.30999736048,1550.7655735587
54.5554335894621,3044.30162946898,2560.78039640018,2347.9361589735,2385.32554363836,2408.14269038663,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.30999736048,1550.7655735587
54.6652030735456,3044.84262655977,2560.78039640018,2347.3332759155,2385.32554363836,2408.14269038663,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.30999736048,1550.7655735587
54.774972557629,3045.52796035483,2560.78039640018,2347.3332759155,2384.18772325401,2408.14269038663,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.30999736048,1550.7655735587
54.8847420417124,3046.31235115289,2560.78039640018,2347.3332759155,2384.18772325401,2406.61102485059,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.30999736048,1550.7655735587
54.9945115257958,3046.84290427487,2560.78039640018,2346.7382545065,2384.18772325401,2406.61102485059,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.30999736048,1550.7655735587
55.1042810098793,3046.90432622777,2560.78039640018,2346.7382545065,2384.18772325401,2406.61102485059,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1550.7655735587
55.2140504939627,3047.43167798463,2560.78039640018,2346.14708952283,2384.18772325401,2406.61102485059,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1550.7655735587
55.3238199780461,3048.1992561977,2560.78039640018,2346.14708952283,2384.18772325401,2405.11509973536,2217.466874384,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1550.7655735587
55.4335894621295,3048.52007824785,2560.78039640018,2346.14708952283,2384.18772325401,2405.11509973536,2216.41897194468,1850.51753320019,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1550.7655735587
55.543358946213,3048.52007824785,2560.78039640018,2346.14708952283,2384.18772325401,2405.11509973536,2216.41897194468,1858.76589679564,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1541.98069109605
55.6531284302964,3048.83884713805,2560.78039640018,2346.14708952283,2384.18772325401,2405.11509973536,2215.3839135908,1858.76589679564,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1541.98069109605
55.7628979143798,3049.50261562057,2560.78039640018,2346.14708952283,2383.07802861125,2405.11509973536,2215.3839135908,1858.76589679564,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1541.98069109605
55.8726673984632,3049.50261562057,2560.78039640018,2346.14708952283,2383.07802861125,2405.11509973536,2215.3839135908,1866.14209103288,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1534.1461830685
55.9824368825467,3050.25566259868,2560.78039640018,2346.14708952283,2383.07802861125,2403.65199091872,2215.3839135908,1866.14209103288,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1534.1461830685
56.0922063666301,3050.90896303227,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.14209103288,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1534.1461830685
56.2019758507135,3050.94785038682,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2321.70269893994,2012.64320382187,2019.10420941685,1931.18087191187,1534.1461830685
56.3117453347969,3050.94785038682,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2328.56099653351,2012.64320382187,2010.50403760172,1931.18087191187,1534.1461830685
56.4215148188804,3050.9542451077,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2328.56099653351,2012.64320382187,2010.50403760172,1931.18087191187,1534.13547241377
56.5312843029638,3050.9542451077,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2328.56099653351,2012.64320382187,2010.50403760172,1937.79793539864,1528.85652025393
56.6410537870472,3051.03965513489,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2328.56099653351,2012.51468270833,2010.50403760172,1937.79793539864,1528.85652025393
56.7508232711306,3051.04584839019,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2328.56099653351,2012.51468270833,2010.50403760172,1937.79793539864,1528.84635822413
56.860592755214,3051.04584839019,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1866.07722897229,2328.56099653351,2012.51468270833,2010.50403760172,1943.85520529249,1523.97906407326
56.9703622392975,3051.04584839019,2560.78039640018,2346.14708952283,2381.98685071786,2403.65199091872,2215.3839135908,1862.54209113149,2331.65924399719,2012.51468270833,2010.50403760172,1943.85520529249,1523.97906407326
57.0801317233809,3051.79459651539,2560.78039640018,2346.14708952283,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2331.65924399719,2012.51468270833,2010.50403760172,1943.85520529249,1523.97906407326
57.1899012074643,3053.43869533465,2558.6878811783,2346.14708952283,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2331.65924399719,2012.51468270833,2010.50403760172,1943.85520529249,1523.97906407326
57.2996706915478,3053.92227068711,2558.6878811783,2346.14708952283,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.51468270833,2010.50403760172,1943.85520529249,1523.97906407326
57.4094401756312,3053.98477898145,2558.6878811783,2346.14708952283,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.51468270833,2010.50403760172,1943.72838774389,1523.97906407326
57.5192096597146,3055.58244776894,2556.65595694264,2346.14708952283,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.51468270833,2010.50403760172,1943.72838774389,1523.97906407326
57.628979143798,3057.13929119365,2554.68122042159,2346.14708952283,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.51468270833,2010.50403760172,1943.72838774389,1523.97906407326
57.7387486278814,3057.63167767111,2554.68122042159,2345.5714871085,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.51468270833,2010.50403760172,1943.72838774389,1523.97906407326
57.8485181119649,3057.71287026029,2554.68122042159,2345.5714871085,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.38971227614,2010.50403760172,1943.72838774389,1523.97906407326
57.9582875960483,3057.77345492226,2554.68122042159,2345.5714871085,2381.98685071786,2402.2103983672,2215.3839135908,1862.54209113149,2330.91853017388,2012.38971227614,2010.50403760172,1943.60409561686,1523.97906407326
58.0680570801317,3057.77345492226,2554.68122042159,2345.5714871085,2394.66479581314,2402.2103983672,2187.18454527587,1862.54209113149,2330.91853017388,2012.38971227614,2010.50403760172,1943.60409561686,1523.97906407326
58.1778265642151,3057.77345492226,2554.68122042159,2345.5714871085,2394.66479581314,2402.2103983672,2187.18454527587,1868.99763034944,2330.91853017388,2012.38971227614,2010.50403760172,1943.60409561686,1517.34325951323
58.2875960482986,3058.43703498056,2554.68122042159,2345.5714871085,2393.58522236887,2402.2103983672,2187.18454527587,1868.99763034944,2330.91853017388,2012.38971227614,2010.50403760172,1943.60409561686,1517.34325951323
58.397365532382,3058.68742763773,2554.68122042159,2345.5714871085,2393.58522236887,2402.2103983672,2186.44015439865,1868.99763034944,2330.91853017388,2012.38971227614,2010.50403760172,1943.60409561686,1517.34325951323
58.5071350164654,3059.17669999057,2554.68122042159,2344.99791932251,2393.58522236887,2402.2103983672,2186.44015439865,1868.99763034944,2330.91853017388,2012.38971227614,2010.50403760172,1943.60409561686,1517.34325951323
58.6169045005488,3059.23702408045,2554.68122042159,2344.99791932251,2393.58522236887,2402.2103983672,2186.44015439865,1868.99763034944,2330.91853017388,2012.38971227614,2010.50403760172,1943.48037035403,1517.34325951323
58.7266739846323,3059.31806708074,2554.68122042159,2344.99791932251,2393.58522236887,2402.2103983672,2186.44015439865,1868.99763034944,2330.91853017388,2012.26482597289,2010.50403760172,1943.48037035403,1517.34325951323
58.8364434687157,3060.01956050399,2554.68122042159,2344.99791932251,2393.58522236887,2400.83551238993,2186.44015439865,1868.99763034944,2330.91853017388,2012.26482597289,2010.50403760172,1943.48037035403,1517.34325951323
58.9462129527991,3060.07965833668,2554.68122042159,2344.99791932251,2393.58522236887,2400.83551238993,2186.44015439865,1868.99763034944,2330.91853017388,2012.26482597289,2010.50403760172,1943.35709882041,1517.34325951323
59.0559824368825,3060.32743474686,2554.68122042159,2344.99791932251,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2330.91853017388,2012.26482597289,2010.50403760172,1943.35709882041,1517.34325951323
59.165751920966,3060.4081211235,2554.68122042159,2344.99791932251,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2330.91853017388,2012.1402940803,2010.50403760172,1943.35709882041,1517.34325951323
59.2755214050494,3060.49178941283,2554.68122042159,2344.99791932251,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2330.91853017388,2012.1402940803,2010.34940918304,1943.35709882041,1517.34325951323
59.3852908891328,3061.99974240613,2552.75246436481,2344.99791932251,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2330.91853017388,2012.1402940803,2010.34940918304,1943.35709882041,1517.34325951323
59.4950603732162,3061.99974240613,2552.75246436481,2344.99791932251,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2337.12465720947,2012.1402940803,2002.54561719509,1943.35709882041,1517.34325951323
59.6048298572997,3061.99974240613,2552.75246436481,2360.0851470268,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2317.24147335699,2012.1402940803,2002.54561719509,1943.35709882041,1517.34325951323
59.7145993413831,3062.52021532878,2552.75246436481,2359.49277480183,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2317.24147335699,2012.1402940803,2002.54561719509,1943.35709882041,1517.34325951323
59.8243688254665,3062.59991638049,2552.75246436481,2359.49277480183,2393.58522236887,2400.83551238993,2185.70625748214,1868.99763034944,2317.24147335699,2012.0166375596,2002.54561719509,1943.35709882041,1517.34325951323
59.9341383095499,3063.28506213951,2552.75246436481,2359.49277480183,2393.58522236887,2399.49321014193,2185.70625748214,1868.99763034944,2317.24147335699,2012.0166375596,2002.54561719509,1943.35709882041,1517.34325951323
60.0439077936334,3063.92639366928,2552.75246436481,2359.49277480183,2392.53180736426,2399.49321014193,2185.70625748214,1868.99763034944,2317.24147335699,2012.0166375596,2002.54561719509,1943.35709882041,1517.34325951323
60.1536772777168,3064.00530581957,2552.75246436481,2359.49277480183,2392.53180736426,2399.49321014193,2185.70625748214,1868.99763034944,2317.24147335699,2011.89374017373,2002.54561719509,1943.35709882041,1517.34325951323
60.2634467618002,3064.0831355799,2552.75246436481,2359.49277480183,2392.53180736426,2399.49321014193,2185.70625748214,1868.99763034944,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.34325951323
60.3732162458836,3064.75738155695,2552.75246436481,2359.49277480183,2392.53180736426,2398.17648187252,2185.70625748214,1868.99763034944,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.34325951323
60.4829857299671,3065.38965662392,2552.75246436481,2359.49277480183,2391.49437008577,2398.17648187252,2185.70625748214,1868.99763034944,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.34325951323
60.5927552140505,3066.05193614184,2552.75246436481,2359.49277480183,2391.49437008577,2396.88574104799,2185.70625748214,1868.99763034944,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.34325951323
60.7025246981339,3066.05193614184,2552.75246436481,2359.49277480183,2393.88830172707,2396.88574104799,2185.70625748214,1866.42836840069,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.34325951323
60.8122941822173,3066.0571934382,2552.75246436481,2359.49277480183,2393.88830172707,2396.88574104799,2185.70625748214,1866.42836840069,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.33469561126
60.9220636663008,3066.56442054985,2552.75246436481,2358.9070642547,2393.88830172707,2396.88574104799,2185.70625748214,1866.42836840069,2317.24147335699,2011.89374017373,2002.40504356222,1943.35709882041,1517.33469561126
61.0318331503842,3066.56442054985,2552.75246436481,2358.9070642547,2393.88830172707,2396.88574104799,2185.70625748214,1866.42836840069,2317.24147335699,2011.89374017373,1952.5974003204,1943.35709882041,1563.86324202017
61.1416026344676,3066.64246724156,2552.75246436481,2358.9070642547,2393.88830172707,2396.88574104799,2185.70625748214,1866.42836840069,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1563.86324202017
61.251372118551,3066.64246724156,2552.75246436481,2358.9070642547,2393.88830172707,2396.88574104799,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.20113098203
61.3611416026345,3067.27528418331,2552.75246436481,2358.9070642547,2392.86331755007,2396.88574104799,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.20113098203
61.4709110867179,3067.92948511279,2552.75246436481,2358.9070642547,2392.86331755007,2395.61673167795,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.20113098203
61.5806805708013,3068.57548125689,2552.75246436481,2358.9070642547,2392.86331755007,2394.36868034955,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.20113098203
61.6904500548847,3069.21350889986,2552.75246436481,2358.9070642547,2392.86331755007,2393.14090265875,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.20113098203
61.8002195389682,3069.70974053006,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.20113098203
61.9099890230516,3069.71603149553,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1873.91692646814,2317.24147335699,2011.77157021307,1952.5974003204,1943.35709882041,1556.19113465335
62.019758507135,3069.71603149553,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2317.24147335699,2011.77157021307,1952.5974003204,1967.91739807425,1556.19113465335
62.1295279912184,3070.12122608164,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2316.64065580092,2011.77157021307,1952.5974003204,1967.91739807425,1556.19113465335
62.2392974753019,3070.12122608164,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2317.24964154616,2011.77157021307,1952.5974003204,1967.91739807425,1555.48417858841
62.3490669593853,3070.12751083546,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2317.24964154616,2011.77157021307,1952.5974003204,1967.91739807425,1555.47423497721
62.4588364434687,3070.20439847809,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2317.24964154616,2011.65035888517,1952.5974003204,1967.91739807425,1555.47423497721
62.5686059275521,3070.26195548357,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2317.24964154616,2011.65035888517,1952.49464228596,1967.91739807425,1555.47423497721
62.6783754116356,3070.26827080189,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.95342054727,2317.24964154616,2011.65035888517,1952.49464228596,1967.91739807425,1555.46426155313
62.788144895719,3070.3008506761,2552.75246436481,2358.32793472952,2392.86331755007,2393.14090265875,2185.70625748214,1855.90349571766,2317.24964154616,2011.65035888517,1952.49464228596,1967.91739807425,1555.46426155313
62.8979143798024,3070.3008506761,2552.75246436481,2358.32793472952,2392.86331755007,2413.59104985387,2185.70625748214,1855.90349571766,2301.75890986825,2011.65035888517,1952.49464228596,1967.91739807425,1555.46426155313
63.0076838638858,3070.3008506761,2552.75246436481,2358.32793472952,2392.86331755007,2430.56178749587,2185.70625748214,1855.90349571766,2288.66663501743,2011.65035888517,1952.49464228596,1967.91739807425,1555.46426155313
63.1174533479693,3071.0683221269,2552.75246436481,2358.32793472952,2392.86331755007,2429.25765404491,2185.70625748214,1855.90349571766,2288.66663501743,2011.65035888517,1952.49464228596,1967.91739807425,1555.46426155313
63.2272228320527,3071.82516866186,2552.75246436481,2358.32793472952,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2288.66663501743,2011.65035888517,1952.49464228596,1967.91739807425,1555.46426155313
63.3369923161361,3071.90183115995,2552.75246436481,2358.32793472952,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2288.66663501743,2011.52933840021,1952.49464228596,1967.91739807425,1555.46426155313
63.4467618002195,3072.39649958466,2552.75246436481,2357.74700146953,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2288.66663501743,2011.52933840021,1952.49464228596,1967.91739807425,1555.46426155313
63.556531284303,3072.39649958466,2552.75246436481,2370.31161190984,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2273.97323559105,2011.52933840021,1952.49464228596,1967.91739807425,1555.46426155313
63.6663007683864,3072.39649958466,2552.75246436481,2373.97675860544,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2273.97323559105,2006.12987970212,1952.49464228596,1967.91739807425,1555.46426155313
63.7760702524698,3072.71098205281,2552.75246436481,2373.97675860544,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2273.56690217565,2006.12987970212,1952.49464228596,1967.91739807425,1555.46426155313
63.8858397365532,3072.71727688878,2552.75246436481,2373.97675860544,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2273.56690217565,2006.12987970212,1952.49464228596,1967.91739807425,1555.45430317035
63.9956092206367,3072.78160091454,2552.75246436481,2373.97675860544,2392.86331755007,2427.97610148035,2185.70625748214,1855.90349571766,2273.56690217565,2006.12987970212,1952.49464228596,1967.79174907687,1555.45430317035
64.1053787047201,3073.39975915073,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.70625748214,1855.90349571766,2273.56690217565,2006.12987970212,1952.49464228596,1967.79174907687,1555.45430317035
64.2151481888035,3073.46381358554,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.70625748214,1855.90349571766,2273.56690217565,2006.12987970212,1952.49464228596,1967.66655434235,1555.45430317035
64.3249176728869,3073.52117376824,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.70625748214,1855.90349571766,2273.56690217565,2006.12987970212,1952.39223085084,1967.66655434235,1555.45430317035
64.4346871569704,3073.83473329124,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.70625748214,1855.90349571766,2273.16141636772,2006.12987970212,1952.39223085084,1967.66655434235,1555.45430317035
64.5444566410538,3074.0700081508,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2273.16141636772,2006.12987970212,1952.39223085084,1967.66655434235,1555.45430317035
64.6542261251372,3074.0763031882,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2273.16141636772,2006.12987970212,1952.39223085084,1967.66655434235,1555.44434235426
64.7639956092206,3074.38904383157,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2272.75725031379,2006.12987970212,1952.39223085084,1967.66655434235,1555.44434235426
64.8737650933041,3074.44636879954,2552.75246436481,2373.97675860544,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2272.75725031379,2006.12987970212,1952.28995283945,1967.66655434235,1555.44434235426
64.9835345773875,3075.86479635525,2550.86724101432,2373.97675860544,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2272.75725031379,2006.12987970212,1952.28995283945,1967.66655434235,1555.44434235426
65.0933040614709,3076.39372145009,2550.86724101432,2373.38089413553,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2272.75725031379,2006.12987970212,1952.28995283945,1967.66655434235,1555.44434235426
65.2030735455543,3076.45011999439,2550.86724101432,2373.38089413553,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2272.75725031379,2006.12987970212,1952.18872687854,1967.66655434235,1555.44434235426
65.3128430296378,3076.75714791232,2550.86724101432,2373.38089413553,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2272.35754962717,2006.12987970212,1952.18872687854,1967.66655434235,1555.44434235426
65.4226125137212,3076.75714791232,2550.86724101432,2384.28162502415,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2259.60668528681,2006.12987970212,1952.18872687854,1967.66655434235,1555.44434235426
65.5323819978046,3078.1398982397,2549.02971592523,2384.28162502415,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2259.60668528681,2006.12987970212,1952.18872687854,1967.66655434235,1555.44434235426
65.642151481888,3078.1398982397,2549.02971592523,2384.28162502415,2391.85559402647,2427.97610148035,2185.01381895358,1855.90349571766,2260.30685745373,2006.12987970212,1952.18872687854,1967.66655434235,1554.47332842357
65.7519209659715,3078.73705306271,2549.02971592523,2384.28162502415,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.30685745373,2006.12987970212,1952.18872687854,1967.66655434235,1554.47332842357
65.8616904500549,3078.79933202586,2549.02971592523,2384.28162502415,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.30685745373,2006.12987970212,1952.18872687854,1967.54376906357,1554.47332842357
65.9714599341383,3078.85503217607,2549.02971592523,2384.28162502415,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.30685745373,2006.12987970212,1952.08834256995,1967.54376906357,1554.47332842357
66.0812294182217,3078.85503217607,2549.02971592523,2387.01649630808,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.30685745373,2006.12987970212,1952.08834256995,1962.11986732878,1554.47332842357
66.1909989023052,3079.41345129212,2549.02971592523,2386.41130264726,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.30685745373,2006.12987970212,1952.08834256995,1962.11986732878,1554.47332842357
66.3007683863886,3079.41345129212,2549.02971592523,2386.41130264726,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2261.00412423796,2006.12987970212,1952.08834256995,1962.11986732878,1553.51011780533
66.410537870472,3079.69595953505,2549.02971592523,2386.41130264726,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.65088189402,2006.12987970212,1952.08834256995,1962.11986732878,1553.51011780533
66.5203073545554,3080.25050742156,2549.02971592523,2385.80984953905,2390.87227542279,2427.97610148035,2185.01381895358,1855.90349571766,2260.65088189402,2006.12987970212,1952.08834256995,1962.11986732878,1553.51011780533
66.6300768386389,3080.25050742156,2549.02971592523,2387.30781837377,2390.87227542279,2427.97610148035,2185.01381895358,1853.60925397224,2260.65088189402,2006.12987970212,1952.08834256995,1962.11986732878,1553.51011780533
66.7398463227223,3080.25050742156,2549.02971592523,2389.74580328414,2390.87227542279,2427.97610148035,2185.01381895358,1853.60925397224,2260.65088189402,2006.12987970212,1947.64899302654,1962.11986732878,1553.51011780533
66.8496158068057,3080.25050742156,2549.02971592523,2399.06935391812,2390.87227542279,2427.97610148035,2185.01381895358,1853.60925397224,2249.52399155582,2006.12987970212,1947.64899302654,1962.11986732878,1553.51011780533
66.9593852908891,3080.25050742156,2549.02971592523,2401.39424384969,2390.87227542279,2427.97610148035,2185.01381895358,1853.60925397224,2249.52399155582,2006.12987970212,1947.64899302654,1957.32996329654,1553.51011780533
67.0691547749726,3080.97857699086,2549.02971592523,2401.39424384969,2390.87227542279,2426.72921718757,2185.01381895358,1853.60925397224,2249.52399155582,2006.12987970212,1947.64899302654,1957.32996329654,1553.51011780533
67.178924259056,3081.69706184716,2549.02971592523,2401.39424384969,2390.87227542279,2425.50295469783,2185.01381895358,1853.60925397224,2249.52399155582,2006.12987970212,1947.64899302654,1957.32996329654,1553.51011780533
67.2886937431394,3081.69706184716,2549.02971592523,2404.19542615861,2390.87227542279,2425.50295469783,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1957.32996329654,1553.51011780533
67.3984632272228,3082.30097941156,2549.02971592523,2403.58420539371,2390.87227542279,2425.50295469783,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1957.32996329654,1553.51011780533
67.5082327113063,3083.0082441071,2549.02971592523,2403.58420539371,2390.87227542279,2424.29814304731,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1957.32996329654,1553.51011780533
67.6180021953897,3083.70651997647,2549.02971592523,2403.58420539371,2390.87227542279,2423.11257889713,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1957.32996329654,1553.51011780533
67.7277716794731,3084.39606385401,2549.02971592523,2403.58420539371,2390.87227542279,2421.9456503157,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1957.32996329654,1553.51011780533
67.8375411635565,3084.39606385401,2549.02971592523,2405.76956360407,2390.87227542279,2421.9456503157,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1952.84406129526,1553.51011780533
67.94731064764,3084.99279523483,2549.02971592523,2405.16559385366,2390.87227542279,2421.9456503157,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.64899302654,1952.84406129526,1553.51011780533
68.0570801317234,3085.04528703359,2549.02971592523,2405.16559385366,2390.87227542279,2421.9456503157,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.55508103802,1952.84406129526,1553.51011780533
68.1668496158068,3085.72549191637,2549.02971592523,2405.16559385366,2390.87227542279,2420.7971730002,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.55508103802,1952.84406129526,1553.51011780533
68.2766190998902,3085.77774723738,2549.02971592523,2405.16559385366,2390.87227542279,2420.7971730002,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.4614876055,1952.84406129526,1553.51011780533
68.3863885839737,3086.45063290034,2549.02971592523,2405.16559385366,2390.87227542279,2419.66522957243,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.4614876055,1952.84406129526,1553.51011780533
68.4961580680571,3087.02022325697,2549.02971592523,2405.16559385366,2389.91813733793,2419.66522957243,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.4614876055,1952.84406129526,1553.51011780533
68.6059275521405,3087.68229292995,2549.02971592523,2405.16559385366,2389.91813733793,2418.55266964946,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.4614876055,1952.84406129526,1553.51011780533
68.7156970362239,3088.33660751734,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.4614876055,1952.84406129526,1553.51011780533
68.8254665203074,3088.3878905787,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1853.60925397224,2249.52399155582,2001.5843769727,1947.36899449359,1952.84406129526,1553.51011780533
68.9352360043908,3088.45438304735,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1853.60925397224,2249.52399155582,2001.47964463003,1947.36899449359,1952.84406129526,1553.51011780533
69.0450054884742,3088.48396502114,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1853.56251385601,2249.52399155582,2001.47964463003,1947.36899449359,1952.84406129526,1553.51011780533
69.1547749725576,3088.48396502114,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1860.91779510765,2249.52399155582,2001.47964463003,1947.36899449359,1952.84406129526,1545.6070727887
69.264544456641,3088.48396502114,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1867.55829297243,2249.52399155582,2001.47964463003,1947.36899449359,1952.84406129526,1538.49123412549
69.3743139407245,3088.48396502114,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1873.60520300113,2249.52399155582,2001.47964463003,1947.36899449359,1952.84406129526,1532.02681893442
69.4840834248079,3088.48396502114,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1901.16842346341,2249.52399155582,1971.85858352198,1947.36899449359,1952.84406129526,1532.02681893442
69.5938529088913,3088.48899046538,2549.02971592523,2405.16559385366,2389.91813733793,2417.4565058521,2185.01381895358,1901.16842346341,2249.52399155582,1971.85858352198,1947.36899449359,1952.84406129526,1532.0192943441
69.7036223929748,3089.14472876519,2549.02971592523,2405.16559385366,2389.91813733793,2416.36720360183,2185.01381895358,1901.16842346341,2249.52399155582,1971.85858352198,1947.36899449359,1952.84406129526,1532.0192943441
69.8133918770582,3089.18227939655,2549.02971592523,2405.16559385366,2389.91813733793,2416.36720360183,2185.01381895358,1901.11545820011,2249.52399155582,1971.85858352198,1947.36899449359,1952.84406129526,1532.0192943441
69.9231613611416,3089.83142993979,2549.02971592523,2405.16559385366,2389.91813733793,2415.29264368544,2185.01381895358,1901.11545820011,2249.52399155582,1971.85858352198,1947.36899449359,1952.84406129526,1532.0192943441
70.032930845225,3089.83142993979,2549.02971592523,2405.16559385366,2389.91813733793,2415.29264368544,2185.01381895358,1923.25418445783,2249.52399155582,1971.85858352198,1947.36899449359,1921.25943524168,1532.0192943441
70.1427003293085,3089.8876205847,2549.02971592523,2405.16559385366,2389.91813733793,2415.29264368544,2185.01381895358,1923.25418445783,2249.52399155582,1971.7743083243,1947.36899449359,1921.25943524168,1532.0192943441
70.2524698133919,3089.8876205847,2549.02971592523,2405.16559385366,2389.91813733793,2415.29264368544,2185.01381895358,1956.56004147318,2219.84118690432,1971.7743083243,1947.36899449359,1921.25943524168,1532.0192943441
70.3622392974753,3089.8876205847,2549.02971592523,2405.16559385366,2389.91813733793,2415.29264368544,2185.01381895358,1959.85733935358,2219.84118690432,1971.7743083243,1947.36899449359,1921.25943524168,1528.04548124082
70.4720087815587,3089.8876205847,2549.02971592523,2405.16559385366,2389.91813733793,2415.29264368544,2185.01381895358,1962.98667721356,2219.84118690432,1971.7743083243,1947.36899449359,1921.25943524168,1524.28786297321
70.5817782656422,3090.53514889134,2549.02971592523,2405.16559385366,2389.91813733793,2414.2276127694,2185.01381895358,1962.98667721356,2219.84118690432,1971.7743083243,1947.36899449359,1921.25943524168,1524.28786297321
70.6915477497256,3090.53514889134,2549.02971592523,2405.16559385366,2389.91813733793,2414.2276127694,2185.01381895358,1978.60211628625,2219.84118690432,1971.7743083243,1947.36899449359,1898.35167621022,1524.28786297321
70.801317233809,3091.17656105628,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2185.01381895358,1978.60211628625,2219.84118690432,1971.7743083243,1947.36899449359,1898.35167621022,1524.28786297321
70.9110867178924,3091.394782043,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,1978.60211628625,2219.84118690432,1971.7743083243,1947.36899449359,1898.35167621022,1524.28786297321
71.0208562019758,3091.394782043,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2006.27501078156,2192.94747088162,1971.7743083243,1947.36899449359,1898.35167621022,1524.28786297321
71.1306256860593,3091.394782043,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2031.18195616122,2168.71430768513,1971.7743083243,1947.36899449359,1898.35167621022,1524.28786297321
71.2403951701427,3091.43354601869,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2031.18195616122,2168.71430768513,1971.7743083243,1947.36899449359,1898.28721055383,1524.28786297321
71.3501646542261,3091.43354601869,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2053.38132563256,2147.08860615991,1971.7743083243,1947.36899449359,1898.28721055383,1524.28786297321
71.4599341383095,3091.51776094883,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2053.2856426517,2147.08860615991,1971.7743083243,1947.36899449359,1898.28721055383,1524.28786297321
71.569703622393,3091.51776094883,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2072.93340455616,2127.91444754635,1971.7743083243,1947.36899449359,1898.28721055383,1524.28786297321
71.6794731064764,3091.51776094883,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2081.17091771472,2127.91444754635,1971.7743083243,1947.36899449359,1884.7258380098,1524.28786297321
71.7892425905598,3091.51776094883,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2184.37133580745,2081.17091771472,2134.00526235831,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
71.8990120746433,3091.73803360665,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2183.73099929783,2081.17091771472,2134.00526235831,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.0087815587267,3091.73803360665,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2183.73099929783,2097.95714334058,2117.50115683871,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.1185510428101,3091.73803360665,2549.02971592523,2405.16559385366,2389.91813733793,2413.17643709166,2183.73099929783,2112.82430016542,2102.87257860654,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.2283205268935,3092.32985317629,2549.02971592523,2404.54749447237,2389.91813733793,2413.17643709166,2183.73099929783,2112.82430016542,2102.87257860654,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.3380900109769,3092.91682835175,2549.02971592523,2403.93458685662,2389.91813733793,2413.17643709166,2183.73099929783,2112.82430016542,2102.87257860654,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.4478594950604,3093.49904777109,2549.02971592523,2403.32677500503,2389.91813733793,2413.17643709166,2183.73099929783,2112.82430016542,2102.87257860654,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.5576289791438,3093.49904777109,2549.02971592523,2403.32677500503,2389.91813733793,2413.17643709166,2183.73099929783,2126.10479062344,2089.79475026933,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.6673984632272,3094.06352495939,2549.02971592523,2403.32677500503,2388.97195060155,2413.17643709166,2183.73099929783,2126.10479062344,2089.79475026933,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.7771679473106,3094.63971872416,2549.02971592523,2402.72377362514,2388.97195060155,2413.17643709166,2183.73099929783,2126.10479062344,2089.79475026933,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.8869374313941,3094.73940541212,2549.02971592523,2402.72377362514,2388.97195060155,2413.17643709166,2183.73099929783,2126.10479062344,2089.6992384271,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
72.9967069154775,3094.73940541212,2549.02971592523,2402.72377362514,2388.97195060155,2413.17643709166,2183.73099929783,2138.01748183006,2077.96582084606,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.1064763995609,3094.73940541212,2549.02971592523,2402.72377362514,2388.97195060155,2413.17643709166,2183.73099929783,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.2162458836443,3095.31364965549,2549.02971592523,2402.12278757098,2388.97195060155,2413.17643709166,2183.73099929783,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.3260153677278,3095.88335605915,2549.02971592523,2401.52668293341,2388.97195060155,2413.17643709166,2183.73099929783,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.4357848518112,3096.4375635367,2549.02971592523,2401.52668293341,2388.04125093685,2413.17643709166,2183.73099929783,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.5455543358946,3096.65169965259,2549.02971592523,2401.52668293341,2388.04125093685,2413.17643709166,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.6553238199781,3097.92395598393,2547.24426750546,2401.52668293341,2388.04125093685,2413.17643709166,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.7650933040615,3097.92395598393,2559.06268059176,2392.68874767193,2388.04125093685,2413.17643709166,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.8748627881449,3099.24760509714,2557.29007298696,2392.68874767193,2388.04125093685,2413.17643709166,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
73.9846322722283,3099.7842842351,2557.29007298696,2392.68874767193,2387.13290590455,2413.17643709166,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
74.0944017563117,3100.31595888795,2557.29007298696,2392.68874767193,2386.23539953958,2413.17643709166,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
74.2041712403952,3100.92425676741,2557.29007298696,2392.68874767193,2386.23539953958,2412.15923943998,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
74.3139407244786,3101.52606263803,2557.29007298696,2392.68874767193,2386.23539953958,2411.15573415149,2183.10793894103,2148.7043289588,2067.4332884707,1971.7743083243,1947.36899449359,1875.03448416026,1524.28786297321
74.423710208562,3101.52606263803,2557.29007298696,2392.68874767193,2390.67087092251,2411.15573415149,2183.10793894103,2148.7043289588,2067.4332884707,1967.59743870269,1947.36899449359,1875.03448416026,1524.28786297321
74.5334796926454,3101.57536389396,2557.29007298696,2392.68874767193,2390.67087092251,2411.15573415149,2183.10793894103,2148.7043289588,2067.4332884707,1967.59743870269,1947.27892669449,1875.03448416026,1524.28786297321
74.6432491767289,3101.57536389396,2557.29007298696,2392.68874767193,2390.67087092251,2411.15573415149,2183.10793894103,2158.5827032417,2057.68859132604,1967.59743870269,1947.27892669449,1875.03448416026,1524.28786297321
74.7530186608123,3101.57536389396,2557.29007298696,2392.68874767193,2390.67087092251,2411.15573415149,2183.10793894103,2158.5827032417,2057.68859132604,1945.19881217386,1975.71481738549,1875.03448416026,1524.28786297321
74.8627881448957,3101.57536389396,2557.29007298696,2392.68874767193,2390.67087092251,2411.15573415149,2183.10793894103,2167.54426750896,2048.84355392237,1945.19881217386,1975.71481738549,1875.03448416026,1524.28786297321
74.9725576289791,3101.65050608792,2557.29007298696,2392.68874767193,2390.67087092251,2411.15573415149,2183.10793894103,2167.54426750896,2048.77757698761,1945.19881217386,1975.71481738549,1875.03448416026,1524.28786297321
75.0823271130626,3102.25198811942,2557.29007298696,2392.68874767193,2390.67087092251,2410.15947226661,2183.10793894103,2167.54426750896,2048.77757698761,1945.19881217386,1975.71481738549,1875.03448416026,1524.28786297321
75.192096597146,3102.25198811942,2557.29007298696,2392.68874767193,2390.67087092251,2410.15947226661,2183.10793894103,2175.73489845249,2040.69219325827,1945.19881217386,1975.71481738549,1875.03448416026,1524.28786297321
75.3018660812294,3102.25198811942,2522.96593517282,2392.68874767193,2390.67087092251,2410.15947226661,2183.10793894103,2196.84748767477,2040.69219325827,1945.19881217386,1975.71481738549,1875.03448416026,1524.28786297321
75.4116355653128,3102.2839258365,2522.96593517282,2392.68874767193,2390.67087092251,2410.15947226661,2183.10793894103,2196.84748767477,2040.692193
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment