Skip to content

Instantly share code, notes, and snippets.

@mbostock
Last active February 9, 2016 01:24
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save mbostock/3025699 to your computer and use it in GitHub Desktop.
UT1 - UTC
license: gpl-3.0

A recreation of Nelson Minar’s graph, experimenting with some subtle mousemove features to allow closer inspection. Also duplicates the x axis labels to improve readability via white stroke.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font: 10px sans-serif;
}
.line {
fill: none;
stroke: #696969;
stroke-width: 1.5px;
}
svg:not(:hover) .focus {
display: none;
}
.focus line {
stroke: red;
shape-rendering: crispEdges;
}
.focus circle {
fill: #fff;
fill-opacity: .5;
stroke: red;
stroke-width: 1.5px;
}
.axis path,
.axis line {
fill: none;
stroke: #000;
shape-rendering: crispEdges;
}
.y.axis path {
display: none;
}
.y.axis line {
stroke: #ccc;
stroke-dasharray: 2,3;
}
.x.axis line + text {
stroke: #fff;
stroke-width: 4px;
}
.overlay {
fill: none;
pointer-events: all;
}
</style>
<body>
<script src="//d3js.org/d3.v3.min.js"></script>
<script>
var margin = {top: 20, right: 40, bottom: 20, left: 10},
width = 960 - margin.left - margin.right,
height = 500 - margin.top - margin.bottom;
var format = d3.format("+.1f");
var x = d3.time.scale()
.range([0, width]);
var y = d3.scale.linear()
.domain([-1, 1])
.range([height, 0]);
var xAxis = d3.svg.axis()
.scale(x)
.orient("bottom");
var yAxis = d3.svg.axis()
.scale(y)
.orient("right")
.tickSize(-width)
.tickFormat(format)
.tickPadding(6);
var line = d3.svg.line()
.x(function(d) { return x(d[0]); })
.y(function(d) { return y(d[1]); });
var svg = d3.select("body").append("svg")
.attr("width", width + margin.left + margin.right)
.attr("height", height + margin.top + margin.bottom)
.append("g")
.attr("transform", "translate(" + margin.left + "," + margin.top + ")");
d3.json("offsets.json", function(error, offsets) {
if (error) throw error;
var start = Date.UTC(1973, 0, 2),
step = 1000 * 60 * 60 * 24;
offsets = offsets.map(function(t, i) { return [new Date(start + i * step), t]; });
x.domain([start, start + (offsets.length - 1) * step]);
svg.append("g")
.attr("class", "y axis")
.attr("transform", "translate(" + width + ",0)")
.call(yAxis);
svg.append("path")
.datum(offsets)
.attr("class", "line")
.attr("d", line);
svg.append("g")
.attr("class", "x axis")
.attr("transform", "translate(0," + y(0) + ")")
.call(xAxis)
.selectAll("text")
.select(function() { return this.parentNode.appendChild(this.cloneNode(true)); });
var focus = svg.append("g")
.attr("class", "focus");
focus.append("line")
.attr("class", "x")
.attr("y1", y(0) - 6)
.attr("y2", y(0) + 6);
focus.append("line")
.attr("class", "y")
.attr("x1", width - 6)
.attr("x2", width + 6);
focus.append("circle")
.attr("r", 3.5);
svg.append("rect")
.attr("class", "overlay")
.attr("width", width)
.attr("height", height)
.on("mousemove", mousemove);
function mousemove() {
var d = offsets[Math.round((x.invert(d3.mouse(this)[0]) - start) / step)];
focus.select("circle").attr("transform", "translate(" + x(d[0]) + "," + y(d[1]) + ")");
focus.select(".x").attr("transform", "translate(" + x(d[0]) + ",0)");
focus.select(".y").attr("transform", "translate(0," + y(d[1]) + ")");
svg.selectAll(".x.axis path").style("fill-opacity", Math.random()); // XXX Chrome redraw bug
}
});
</script>
[0.8084136,0.8056121,0.8027853,0.7998687,0.7968102,0.793578,0.7901668,0.7866011,0.7829347,0.7792445,0.7756176,0.7721317,0.7688336,0.7657193,0.7627283,0.7597566,0.7566889,0.7534399,0.7499838,0.7463609,0.7426579,0.7389748,0.7353956,0.7319736,0.7287306,0.7256628,0.722746,0.7199385,0.7171829,0.7144124,0.7115586,0.7085614,0.7053789,0.7019963,0.6984328,0.6947431,0.6910107,0.6873306,0.6837869,0.6804307,0.6772644,0.6742385,0.6712625,0.6682286,0.6650424,0.6616529,0.6580677,0.6543493,0.6505928,0.6468953,0.6433316,0.6399423,0.6367352,0.6336919,0.630774,0.6279279,0.6250891,0.6221886,0.6191607,0.6159523,0.6125322,0.6089013,0.6050997,0.6012058,0.5973227,0.5935523,0.589965,0.5865779,0.5833499,0.580195,0.5770078,0.5736928,0.5701889,0.5664844,0.5626178,0.5586655,0.5547203,0.5508674,0.547167,0.5436458,0.5402997,0.5370991,0.5339971,0.5309355,0.5278505,0.5246794,0.5213674,0.5178742,0.5141827,0.5103096,0.5063122,0.5022844,0.4983371,0.4945661,0.4910184,0.4876757,0.4844605,0.4812654,0.4779891,0.4745647,0.4709736,0.4672426,0.4634317,0.4596179,0.4558779,0.4522734,0.4488407,0.4455865,0.4424897,0.439508,0.4365855,0.4336606,0.4306726,0.4275684,0.4243068,0.4208636,0.4172389,0.4134655,0.4096129,0.4057802,0.402072,0.3985643,0.3952735,0.3921469,0.3890818,0.3859659,0.3827176,0.3793098,0.3757693,0.3721592,0.3685557,0.3650306,0.3616408,0.3584224,0.355388,0.3525255,0.3498,0.3471596,0.3445439,0.3418925,0.3391528,0.3362851,0.3332657,0.3300902,0.3267775,0.3233747,0.3199569,0.3166159,0.3134356,0.3104598,0.3076686,0.3049796,0.3022768,0.2994564,0.2964664,0.2933211,0.2900872,0.2868541,0.2837045,0.2806983,0.2778692,0.2752276,0.2727627,0.2704442,0.2682246,0.266045,0.2638436,0.2615657,0.2591699,0.2566327,0.2539509,0.2511419,0.2482449,0.245319,0.2424387,0.2396786,0.2370902,0.2346781,0.232388,0.2301174,0.2277515,0.2252077,0.2224687,0.219586,0.2166565,0.2137843,0.2110507,0.2085005,0.2061451,0.2039708,0.2019459,0.2000243,0.1981479,0.1962533,0.1942802,0.1921809,0.1899269,0.1875128,0.1849568,0.1822995,0.1795993,0.1769251,0.1743441,0.1719054,0.1696228,0.1674614,0.1653392,0.1631472,0.1607856,0.1582024,0.1554139,0.1525002,0.1495736,0.1467406,0.1440735,0.1416009,0.1393151,0.137184,0.1351607,0.1331882,0.1312032,0.1291429,0.126953,0.1245961,0.1220581,0.1193507,0.1165122,0.113603,0.1106965,0.1078639,0.1051572,0.102593,0.1001441,0.0977406,0.0952855,0.092681,0.0898585,0.0868039,0.0835661,0.0802433,0.0769513,0.0737894,0.070817,0.0680492,0.0654657,0.0630238,0.0606689,0.0583403,0.0559762,0.05352,0.050928,0.0481746,0.0452577,0.0422026,0.0390617,0.035909,0.0328247,0.0298744,0.0270883,0.0244488,0.0218933,0.0193303,0.0166633,0.0138174,0.01076,0.007511,0.0041384,0.0007396,-0.0025858,-0.005762,-0.0087523,-0.0115609,-0.0142229,-0.016792,-0.0193301,-0.0218999,-0.0245595,-0.0273564,-0.0303227,-0.0334696,-0.0367842,-0.0402271,-0.043733,-0.0472192,-0.0506048,-0.0538352,-0.0569034,-0.0598563,-0.0627811,-0.0657762,-0.0689203,-0.0722515,-0.075759,-0.0793892,-0.0830615,-0.0866893,-0.0901978,-0.0935398,-0.0967028,-0.099707,-0.1025973,-0.105432,-0.1082732,-0.1111788,-0.1141968,-0.1173614,-0.1206893,-0.1241777,-0.1278023,-0.1315154,-0.1352477,-0.1389186,-0.1424581,-0.1458313,-0.1490578,-0.1522093,-0.1553854,-0.158676,-0.1621287,-0.1657351,-0.16944,-0.1731627,-0.1768203,-0.1803456,-0.1836953,-0.1868539,-0.1898331,-0.1926685,-0.1954122,-0.1981241,-0.2008624,-0.2036761,-0.2065999,-0.2096513,-0.2128303,-0.2161195,-0.2194838,-0.2228712,-0.2262164,-0.2294539,-0.2325381,-0.2354665,-0.2382914,-0.2411077,-0.2440187,-0.2470949,-0.250346,-0.2537182,-0.2571179,-0.2604459,-0.2636253,-0.2666123,-0.2693957,-0.2719901,-0.2744297,-0.2767632,-0.2790482,-0.2813442,-0.2837034,-0.2861643,-0.2887468,-0.2914517,-0.2942622,-0.2971465,0.6999397,0.6970498,0.6942395,0.6915535,0.6890074,0.6865717,0.6841698,0.681697,0.6790586,0.6762093,0.6731747,0.6700426,0.6669295,0.6639409,0.6611431,0.6585571,0.6561674,0.6539358,0.6518118,0.649738,0.6476544,0.6455049,0.6432452,0.6408489,0.6383108,0.6356463,0.6328882,0.630082,0.6272805,0.624536,0.6218904,0.6193623,0.6169351,0.6145502,0.612115,0.609528,0.6067152,0.603662,0.6004253,0.597116,0.5938599,0.5907584,0.5878637,0.5851777,0.5826659,0.5802756,0.5779472,0.5756203,0.5732372,0.5707486,0.5681203,0.5653388,0.5624128,0.5593721,0.5562632,0.5531433,0.5500704,0.5470924,0.5442339,0.541486,0.5388025,0.5361047,0.5332977,0.5302975,0.5270601,0.5236025,0.5200033,0.5163797,0.5128505,0.5095011,0.5063649,0.5034271,0.5006406,0.4979445,0.4952763,0.492577,0.489795,0.4868905,0.4838411,0.4806454,0.4773238,0.4739164,0.4704786,0.4670728,0.4637564,0.4605661,0.4575046,0.4545355,0.4515887,0.4485771,0.4454192,0.4420626,0.4385013,0.4347817,0.4309932,0.4272443,0.4236316,0.4202148,0.4170058,0.4139751,0.4110679,0.4082207,0.4053728,0.4024713,0.3994744,0.3963549,0.393104,0.3897321,0.3862691,0.3827615,0.3792677,0.3758485,0.3725525,0.3693989,0.3663656,0.3633908,0.3603894,0.3572796,0.3540077,0.3505634,0.3469824,0.343336,0.3397142,0.3362044,0.3328708,0.3297415,0.3268058,0.3240214,0.3213294,0.3186676,0.3159807,0.3132253,0.3103727,0.3074105,0.3043439,0.3011949,0.2980002,0.2948089,0.2916766,0.2886552,0.2857771,0.2830386,0.2803919,0.2777554,0.2750395,0.2721796,0.2691593,0.2660149,0.262821,0.259667,0.2566346,0.2537821,0.2511369,0.2486946,0.2464227,0.2442692,0.2421738,0.2400784,0.2379358,0.2357142,0.2333991,0.2309934,0.2285159,0.2259979,0.2234798,0.2210077,0.2186275,0.2163746,0.214258,0.2122472,0.2102706,0.2082332,0.2060499,0.2036805,0.2011476,0.1985285,0.1959273,0.1934405,0.1911331,0.189031,0.1871249,0.1853813,0.18375,0.1821734,0.1805931,0.1789582,0.1772317,0.1753951,0.1734487,0.1714098,0.1693085,0.1671837,0.165078,0.1630329,0.1610818,0.1592401,0.1574923,0.1557843,0.1540287,0.1521293,0.1500169,0.1476817,0.1451827,0.1426299,0.140145,0.1378232,0.1357103,0.1338033,0.1320647,0.130439,0.1288654,0.1272841,0.125641,0.1238934,0.1220153,0.1200007,0.1178632,0.1156324,0.1133476,0.1110526,0.1087894,0.1065923,0.1044802,0.1024472,0.1004554,0.0984341,0.0962924,0.0939462,0.0913521,0.0885322,0.085575,0.0826093,0.0797613,0.0771165,0.0747017,0.0724925,0.0704333,0.0684587,0.0665061,0.0645209,0.0624589,0.0602903,0.0580035,0.0556049,0.0531185,0.050581,0.0480358,0.0455258,0.0430867,0.0407385,0.0384787,0.0362758,0.0340701,0.031781,0.0293242,0.0266374,0.0237065,0.0205798,0.0173604,0.0141763,0.0111401,0.0083164,0.0057108,0.0032814,0.0009616,-0.0013179,-0.0036179,-0.0059866,-0.0084583,-0.0110513,-0.0137657,-0.0165837,-0.0194719,-0.0223876,-0.0252842,-0.0281196,-0.0308646,-0.0335124,-0.0360853,-0.0386346,-0.0412329,-0.0439584,-0.0468745,-0.0500097,-0.0533446,-0.05681,-0.0603021,-0.0637097,-0.0669473,-0.0699777,-0.0728156,-0.0755143,-0.0781431,-0.0807686,-0.0834441,-0.086208,-0.0890826,-0.0920741,-0.0951715,-0.0983483,-0.1015659,-0.1047799,-0.1079464,-0.1110293,-0.1140108,-0.1169006,-0.11974,-0.1225964,-0.1255455,-0.1286501,-0.1319404,-0.1354043,-0.1389884,-0.1426094,-0.1461734,-0.1495987,-0.1528354,-0.1558762,-0.1587541,-0.1615278,-0.164263,-0.1670174,-0.1698332,-0.172735,-0.1757311,-0.1788144,-0.1819632,-0.1851449,-0.1883197,-0.1914464,-0.1944883,-0.1974212,-0.2002435,-0.202985,-0.2057058,-0.2084838,-0.21139,-0.2144627,-0.2176931,-0.2210268,-0.224381,-0.2276676,-0.2308134,-0.2337744,-0.2365412,-0.239138,-0.2416141,-0.2440314,-0.2464506,-0.2489196,-0.2514689,-0.2541106,-0.2568403,-0.2596399,-0.2624808,-0.2653281,-0.2681453,-0.2708996,-0.273567,-0.27614,-0.2786368,-0.281107,-0.2836257,-0.2862743,-0.2891104,0.7078579,0.7046803,0.7014497,0.6982714,0.695232,0.6923807,0.6897248,0.6872379,0.6848711,0.6825648,0.6802586,0.6779006,0.675454,0.672901,0.6702422,0.6674943,0.6646853,0.6618495,0.6590226,0.6562367,0.6535157,0.6508699,0.6482896,0.6457382,0.6431505,0.6404435,0.6375408,0.6344045,0.6310581,0.6275863,0.6241103,0.6207474,0.6175771,0.6146251,0.6118692,0.6092576,0.6067271,0.6042157,0.6016702,0.5990497,0.5963302,0.5935064,0.5905911,0.5876116,0.5846036,0.5816055,0.5786527,0.5757724,0.5729794,0.5702701,0.567618,0.5649701,0.562251,0.559378,0.5562877,0.5529646,0.549458,0.5458737,0.5423423,0.538977,0.5358403,0.5329337,0.5302116,0.5276056,0.5250459,0.5224734,0.5198434,0.5171261,0.5143083,0.5113942,0.5084048,0.5053728,0.5023361,0.499332,0.4963907,0.493531,0.4907548,0.488043,0.4853529,0.4826201,0.4797682,0.4767259,0.4734509,0.4699525,0.4662989,0.4626044,0.4589952,0.4555692,0.4523689,0.4493773,0.4465367,0.4437748,0.441026,0.4382407,0.4353866,0.4324469,0.4294201,0.4263204,0.4231754,0.420021,0.4168948,0.4138299,0.4108492,0.4079608,0.4051529,0.4023911,0.3996205,0.396774,0.3937858,0.3906093,0.3872338,0.3836956,0.3800753,0.3764804,0.3730146,0.3697469,0.3666935,0.3638199,0.3610615,0.3583483,0.3556238,0.3528517,0.3500142,0.347109,0.3441472,0.3411523,0.338157,0.3351967,0.3323045,0.3295053,0.3268109,0.3242149,0.3216892,0.319184,0.3166353,0.3139803,0.3111739,0.3082034,0.3050948,0.3019102,0.2987348,0.2956577,0.2927485,0.2900394,0.2875173,0.285132,0.282816,0.2805053,0.2781537,0.2757367,0.2732487,0.2706984,0.2681056,0.2654994,0.2629145,0.2603852,0.2579386,0.2555903,0.2533396,0.2511658,0.2490252,0.246856,0.244592,0.2421829,0.2396134,0.236911,0.2341408,0.2313875,0.2287348,0.2262454,0.2239499,0.2218425,0.2198846,0.2180165,0.2161745,0.2143061,0.212379,0.2103829,0.2083254,0.2062273,0.2041165,0.2020254,0.1999857,0.1980241,0.196157,0.1943863,0.1926958,0.1910474,0.1893819,0.1876273,0.1857183,0.1836207,0.1813488,0.1789669,0.1765706,0.1742573,0.1720998,0.1701312,0.168344,0.1666992,0.1651392,0.1636006,0.1620266,0.1603759,0.158628,0.1567832,0.1548583,0.1528805,0.1508822,0.1488959,0.1469502,0.1450651,0.1432476,0.1414886,0.1397595,0.1380105,0.136174,0.1341773,0.1319653,0.129526,0.1269047,0.1241974,0.1215221,0.1189817,0.1166353,0.1144887,0.1125046,0.1106224,0.1087764,0.1069086,0.1049753,0.102951,0.1008294,0.0986231,0.0963583,0.0940691,0.0917911,0.0895554,0.0873847,0.0852891,0.0832633,0.0812851,0.079313,0.0772876,0.0751373,0.072794,0.0702166,0.0674142,0.0644542,0.0614496,0.0585239,0.0557716,0.0532315,0.0508842,0.0486702,0.0465162,0.0443559,0.0421398,0.0398374,0.037436,0.0349399,0.0323679,0.0297501,0.0271207,0.0245116,0.0219472,0.0194403,0.0169898,0.0145789,0.0121737,0.0097242,0.0071684,0.0044416,0.0014919,-0.0016994,-0.0051006,-0.0086282,-0.012165,-0.0155952,-0.0188413,-0.0218847,-0.024762,-0.0275418,-0.0302966,-0.0330828,-0.0359344,-0.0388657,-0.0418759,-0.0449511,-0.048066,-0.0511879,-0.0542834,-0.0573245,-0.0602941,-0.0631882,-0.0660176,-0.0688091,-0.0716054,-0.0744609,-0.0774346,-0.0805777,-0.0839198,-0.0874542,-0.0911303,-0.0948601,-0.0985383,-0.1020736,-0.1054163,-0.1085713,-0.1115887,-0.1145391,-0.1174873,-0.1204765,-0.123525,-0.1266325,-0.1297858,-0.1329625,-0.1361331,-0.139265,-0.1423287,-0.1453036,-0.148182,-0.1509705,-0.1536913,-0.156382,-0.1590922,-0.1618767,-0.164783,-0.1678395,-0.1710447,-0.1743636,-0.1777311,-0.1810652,-0.1842862,-0.1873391,-0.19021,-0.1929285,-0.195555,-0.1981576,-0.2007906,-0.2034832,-0.2062402,-0.2090498,-0.2118905,-0.2147357,-0.2175565,-0.2203255,-0.2230217,-0.2256353,-0.2281707,-0.2306472,-0.2330996,-0.2355762,-0.2381328,-0.2408208,-0.2436717,-0.2466843,-0.2498212,-0.2530165,-0.2561922,-0.2592762,-0.2622185,-0.2650022,-0.2676465,-0.2701997,0.7272753,0.7247195,0.7220937,0.7193844,0.7166008,0.7137664,0.7109112,0.7080664,0.7052611,0.7025187,0.6998521,0.697261,0.6947293,0.6922256,0.6897027,0.6871023,0.6843642,0.681443,0.6783264,0.6750466,0.6716761,0.6683068,0.6650254,0.6618902,0.6589209,0.6561001,0.6533824,0.6507085,0.6480194,0.6452687,0.6424322,0.63951,0.6365216,0.6334985,0.6304756,0.627486,0.6245566,0.6217051,0.6189367,0.6162418,0.6135953,0.6109567,0.6082723,0.6054802,0.6025221,0.5993631,0.5960105,0.5925209,0.588989,0.5855199,0.582197,0.5790591,0.5760972,0.5732653,0.5705003,0.5677394,0.564932,0.5620461,0.5590709,0.5560158,0.5529061,0.5497758,0.5466598,0.5435882,0.5405821,0.5376512,0.5347915,0.5319842,0.529196,0.5263792,0.5234757,0.5204234,0.5171715,0.5136991,0.5100324,0.5062477,0.5024547,0.4987629,0.495247,0.4919272,0.4887723,0.4857199,0.4827018,0.4796626,0.4765664,0.4733978,0.4701591,0.4668673,0.4635507,0.4602429,0.4569755,0.453773,0.4506484,0.4476024,0.4446221,0.441681,0.4387402,0.4357495,0.4326527,0.4293964,0.4259435,0.4222905,0.4184793,0.414595,0.4107459,0.4070296,0.4035016,0.4001613,0.3969611,0.3938321,0.3907106,0.3875544,0.3843455,0.3810843,0.3777845,0.3744687,0.3711656,0.3679052,0.3647131,0.3616048,0.3585829,0.3556372,0.3527447,0.3498713,0.3469731,0.3440008,0.3409059,0.3376508,0.3342197,0.3306298,0.3269355,0.3232212,0.3195799,0.3160843,0.3127633,0.3095947,0.3065199,0.3034706,0.3003936,0.2972629,0.2940782,0.2908582,0.2876306,0.2844268,0.2812786,0.2782144,0.2752548,0.272408,0.2696686,0.267018,0.2644259,0.2618525,0.2592518,0.2565794,0.2538012,0.2509035,0.2478987,0.244828,0.2417564,0.2387604,0.2359075,0.2332369,0.2307459,0.2283918,0.2261089,0.2238336,0.2215249,0.2191712,0.216785,0.2143914,0.2120188,0.2096944,0.2074423,0.2052801,0.2032145,0.2012386,0.1993309,0.1974574,0.1955742,0.1936316,0.1915802,0.189382,0.1870203,0.1845075,0.1818855,0.1792172,0.1765725,0.1740121,0.1715736,0.1692617,0.1670472,0.1648757,0.1626864,0.1604313,0.1580886,0.1556655,0.1531903,0.1506999,0.1482309,0.1458142,0.1434734,0.1412223,0.1390619,0.1369788,0.1349449,0.1329202,0.1308563,0.1287021,0.126412,0.1239588,0.1213461,0.118614,0.115832,0.1130812,0.1104321,0.1079266,0.1055711,0.1033385,0.1011786,0.0990332,0.0968508,0.0945995,0.0922728,0.0898871,0.0874746,0.085073,0.082716,0.0804285,0.0782244,0.0761063,0.0740632,0.0720691,0.0700848,0.0680617,0.0659464,0.0636864,0.0612402,0.0585916,0.0557625,0.0528148,0.0498372,0.0469196,0.0441251,0.0414742,0.0389446,0.0364845,0.0340309,0.0315267,0.0289311,0.0262257,0.0234156,0.0205256,0.0175922,0.0146545,0.0117457,0.0088877,0.0060897,0.003348,0.0006452,-0.0020486,-0.0047741,-0.0075791,-0.0105144,-0.0136269,-0.016948,-0.0204795,-0.0241822,-0.0279778,-0.0317669,-0.0354593,-0.0390024,-0.0423945,-0.0456768,-0.0489115,-0.0521582,-0.0554593,-0.0588345,-0.0622818,-0.0657821,-0.0693039,-0.0728097,-0.0762655,-0.079646,-0.0829371,-0.0861385,-0.0892634,-0.0923369,-0.0953932,-0.0984743,-0.1016259,-0.1048936,-0.1083145,-0.1119079,-0.1156625,-0.119529,-0.1234249,-0.1272555,-0.1309437,-0.1344561,-0.1378094,-0.1410571,-0.1442634,-0.1474793,-0.1507301,-0.1540176,-0.157328,-0.1606377,-0.1639164,-0.1671331,-0.1702607,-0.1732811,-0.1761891,-0.1789938,-0.1817178,-0.1843935,-0.1870603,-0.1897619,-0.1925415,-0.1954372,-0.1984737,-0.2016542,-0.2049534,-0.2083184,-0.211677,-0.2149558,-0.2181039,-0.2211135,-0.2240212,-0.2268888,-0.229776,-0.2327199,-0.2357278,-0.2387829,-0.2418571,-0.2449193,-0.2479404,-0.2508957,-0.2537673,-0.2565482,-0.2592447,-0.2618767,-0.264474,-0.2670731,-0.2697129,-0.2724314,-0.275261,-0.2782225,-0.281319,-0.2845316,-0.2878187,-0.2911204,-0.294371,-0.2975161,-0.3005304,-0.3034273,-0.3062537,-0.3090692,-0.311922,-0.314833,-0.3177925,-0.3207702,-0.3237297,-0.3266384,-0.3294706,-0.3322088,-0.3348456,0.6626146,0.6601542,0.6577437,0.6553454,0.6529181,0.6504204,0.6478164,0.6450825,0.642215,0.6392336,0.6361803,0.6331113,0.6300844,0.6271466,0.6243212,0.6216012,0.6189491,0.6163087,0.6136241,0.6108598,0.6080119,0.6051061,0.6021853,0.5992943,0.5964696,0.5937355,0.5911046,0.588577,0.58614,0.583768,0.5814243,0.5790647,0.5766428,0.5741154,0.5714494,0.5686306,0.5656717,0.562614,0.5595198,0.5564562,0.5534767,0.5506078,0.5478438,0.5451503,0.5424736,0.5397563,0.5369534,0.5340461,0.5310453,0.5279869,0.5249188,0.521887,0.5189262,0.5160572,0.5132867,0.510608,0.5080016,0.5054356,0.5028697,0.5002573,0.4975522,0.4947141,0.4917169,0.4885588,0.4852701,0.4819121,0.4785637,0.4752984,0.4721626,0.4691639,0.4662733,0.4634375,0.4605966,0.4576994,0.4547147,0.4516356,0.4484799,0.4452829,0.4420863,0.4389276,0.4358332,0.4328172,0.4298796,0.427007,0.4241743,0.4213467,0.4184828,0.4155389,0.4124736,0.4092525,0.405858,0.4022993,0.3986193,0.3948903,0.391197,0.38761,0.3841626,0.3808438,0.3776089,0.3743999,0.371166,0.3678762,0.3645227,0.3611185,0.3576921,0.3542804,0.3509212,0.3476455,0.3444718,0.3414039,0.3384316,0.3355315,0.3326702,0.3298077,0.3269007,0.3239076,0.3207921,0.3175286,0.3141105,0.3105576,0.3069205,0.3032749,0.2997009,0.2962568,0.292958,0.2897762,0.2866557,0.2835395,0.2803899,0.2771967,0.2739744,0.2707516,0.2675631,0.2644429,0.2614199,0.2585137,0.2557315,0.2530666,0.2505,0.248003,0.2455409,0.2430758,0.2405706,0.2379922,0.2353162,0.2325314,0.229645,0.2266872,0.2237111,0.2207834,0.217964,0.2152857,0.2127407,0.2102843,0.2078555,0.2054028,0.2029035,0.2003658,0.1978193,0.1953018,0.1928489,0.1904879,0.1882365,0.1861021,0.1840795,0.182151,0.1802898,0.1784624,0.1766328,0.1747658,0.1728301,0.170802,0.16867,0.1664392,0.1641327,0.1617912,0.1594674,0.1572142,0.1550684,0.1530362,0.1510885,0.1491704,0.1472233,0.1452099,0.1431276,0.1410063,0.1388933,0.1368339,0.1348617,0.1329962,0.1312448,0.1296028,0.1280535,0.1265678,0.1251077,0.1236312,0.1220973,0.1204695,0.1187204,0.116836,0.1148204,0.1126973,0.1105084,0.1083038,0.106132,0.1040285,0.1020065,0.1000507,0.0981202,0.0961612,0.0941278,0.0920003,0.089794,0.0875534,0.0853335,0.0831817,0.0811293,0.0791899,0.0773623,0.0756325,0.0739742,0.0723504,0.0707182,0.0690351,0.0672628,0.0653707,0.0633402,0.0611703,0.058881,0.0565139,0.0541233,0.0517625,0.0494693,0.047256,0.0451064,0.0429797,0.0408208,0.0385753,0.0362066,0.0337081,0.0311055,0.0284474,0.0257886,0.0231757,0.0206363,0.0181788,0.0157953,0.013466,0.011161,0.008843,0.0064706,0.004004,0.0014091,-0.0013383,-0.0042476,-0.0073062,-0.0104764,-0.0136988,-0.0169052,-0.020038,-0.0230665,-0.0259946,-0.0288557,-0.0317005,-0.0345818,-0.0375401,-0.040592,-0.0437267,-0.0469085,-0.0500878,-0.0532151,-0.0562532,-0.0591836,-0.0620067,-0.064738,-0.067406,-0.0700491,-0.0727102,-0.0754337,-0.0782602,-0.081223,-0.084345,-0.0876327,-0.0910666,-0.0945998,-0.0981657,-0.1016941,-0.1051328,-0.1084644,-0.1117094,-0.1149143,-0.1181321,-0.1214052,-0.1247532,-0.1281711,-0.1316331,-0.1350996,-0.1385262,-0.1418728,-0.145112,-0.1482335,-0.1512441,-0.1541639,-0.1570228,-0.1598567,-0.1627045,-0.1656043,-0.1685886,-0.1716809,-0.1748927,-0.1782201,-0.1816386,-0.1851014,-0.1885468,-0.1919154,-0.1951718,-0.1983183,-0.201393,-0.2044519,-0.2075452,-0.2106991,-0.2139108,-0.2171547,-0.2203943,-0.223591,-0.2267115,-0.2297324,-0.2326429,-0.2354469,-0.2381618,-0.2408153,-0.2434423,-0.2460815,-0.248771,-0.2515444,-0.2544278,-0.2574365,-0.260573,-0.2638249,-0.2671627,-0.2705405,-0.2739051,-0.2772126,-0.280448,-0.283633,-0.2868168,-0.2900523,-0.2933742,-0.2967846,-0.3002546,-0.303738,-0.3071872,-0.3105643,-0.3138448,-0.3170175,-0.320084,-0.3230583,-0.3259651,-0.3288364,-0.3317079,-0.3346141,-0.3375855,-0.3406452,-0.3438062,-0.3470689,0.6495799,0.6461657,0.6427251,0.6393008,0.6359322,0.6326427,0.6294277,0.6262525,0.6230644,0.6198158,0.6164849,0.6130872,0.6096683,0.6062857,0.6029888,0.5998091,0.5967585,0.5938325,0.5910143,0.5882761,0.5855821,0.582892,0.5801658,0.5773679,0.5744697,0.5714534,0.5683144,0.5650633,0.5617252,0.5583351,0.554931,0.5515455,0.548199,0.5448913,0.5415966,0.5382678,0.5348519,0.5313117,0.5276441,0.5238842,0.520094,0.5163414,0.5126804,0.5091415,0.5057315,0.5024393,0.4992416,0.4961054,0.4929915,0.489859,0.4866695,0.4833921,0.4800065,0.4765067,0.4729031,0.4692238,0.4655122,0.4618169,0.4581794,0.4546243,0.4511522,0.4477386,0.4443381,0.4408954,0.4373617,0.4337108,0.4299524,0.4261309,0.4223118,0.4185603,0.4149244,0.4114273,0.4080688,0.404832,0.4016881,0.3986009,0.3955292,0.3924295,0.3892628,0.3859992,0.3826208,0.3791243,0.3755256,0.3718613,0.3681831,0.3645447,0.360987,0.3575246,0.3541427,0.3508029,0.3474548,0.3440502,0.3405558,0.336965,0.3333013,0.3296143,0.3259656,0.3224115,0.3189884,0.3157082,0.3125617,0.3095245,0.3065628,0.3036363,0.3007012,0.2977161,0.2946479,0.2914764,0.288194,0.2848082,0.2813439,0.2778448,0.2743663,0.2709621,0.2676644,0.2644727,0.2613544,0.2582582,0.2551323,0.2519412,0.2486729,0.245341,0.2419797,0.2386354,0.2353552,0.232176,0.2291156,0.2261717,0.2233243,0.220542,0.2177892,0.215028,0.2122214,0.2093375,0.206354,0.20326,0.2000567,0.1967586,0.1933955,0.1900123,0.1866613,0.1833875,0.1802114,0.1771196,0.1740706,0.1710134,0.1679097,0.1647487,0.1615479,0.1583454,0.1551872,0.1521181,0.1491758,0.1463843,0.1437508,0.1412658,0.138907,0.1366443,0.1344434,0.1322665,0.1300788,0.1278528,0.1255716,0.1232298,0.1208332,0.1183989,0.1159551,0.1135387,0.1111876,0.1089262,0.1067521,0.1046309,0.1025078,0.1003299,0.0980696,0.095736,0.0933693,0.0910246,0.0887542,0.0865958,0.084569,0.0826756,0.0809024,0.0792241,0.0776066,0.0760121,0.0744031,0.0727462,0.0710163,0.0691983,0.0672891,0.0652983,0.0632462,0.0611619,0.0590782,0.0570289,0.0550402,0.0531198,0.0512485,0.0493814,0.047463,0.0454509,0.0433357,0.0411488,0.0389504,0.0368073,0.0347709,0.032868,0.0311012,0.0294544,0.0278991,0.0263985,0.0249118,0.023398,0.02182,0.0201487,0.0183645,0.0164591,0.0144375,0.012317,0.0101251,0.0078939,0.005654,0.0034289,0.0012267,-0.0009655,-0.003184,-0.005481,-0.007908,-0.0104929,-0.0132241,-0.0160497,-0.0188929,-0.0216772,-0.0243468,-0.0268753,-0.0292635,-0.0315314,-0.0337102,-0.0358377,-0.037953,-0.0400926,-0.042287,-0.0445572,-0.0469125,-0.0493499,-0.051855,-0.0544027,-0.0569592,-0.0594901,-0.0619703,-0.0643906,-0.0667626,-0.0691202,-0.0715144,-0.074001,-0.0766243,-0.0794,-0.0823044,-0.085279,-0.0882482,-0.0911439,-0.0939236,-0.0965771,-0.0991209,-0.1015875,-0.104017,-0.1064528,-0.108937,-0.111506,-0.1141859,-0.1169913,-0.119924,-0.1229721,-0.1261095,-0.1292973,-0.1324897,-0.1356445,-0.1387353,-0.1417607,-0.144745,-0.1477311,-0.1507697,-0.1539048,-0.1571603,-0.160529,-0.1639712,-0.1674242,-0.1708179,-0.1740947,-0.1772212,-0.1801929,-0.1830284,-0.1857629,-0.1884378,-0.1910952,-0.1937744,-0.1965091,-0.1993251,-0.2022359,-0.2052427,-0.2083339,-0.211483,-0.2146518,-0.2177977,-0.2208859,-0.2239023,-0.2268619,-0.2298052,-0.2327847,-0.2358478,-0.2390219,-0.2423079,-0.2456791,-0.2490879,-0.2524763,-0.2557899,-0.2589902,-0.2620621,-0.2650148,-0.267875,-0.270679,-0.2734658,-0.2762728,-0.2791322,-0.2820674,-0.2850906,-0.2882017,-0.2913895,-0.2946328,-0.2979005,-0.3011543,-0.3043565,-0.307482,-0.3105301,-0.3135301,-0.3165324,-0.3195887,-0.3227326,-0.3259667,-0.3292637,-0.332576,-0.3358497,-0.3390362,-0.3421014,-0.3450304,-0.3478291,-0.3505199,-0.3531358,-0.3557142,-0.3582917,-0.3609009,-0.3635676,-0.3663101,-0.3691359,-0.3720413,-0.3750135,-0.3780326,-0.3810731,-0.3841064,-0.3871084,-0.3900703,-0.3930096,-0.3959695,-0.3990034,0.5978467,0.5945697,0.5911932,0.5877744,0.584381,0.5810726,0.5778882,0.5748441,0.5719353,0.5691397,0.5664243,0.563751,0.5610822,0.5583848,0.5556325,0.5528079,0.5499043,0.5469264,0.5438893,0.5408155,0.5377308,0.5346611,0.5316289,0.5286463,0.5257068,0.5227791,0.5198117,0.5167498,0.5135606,0.5102518,0.5068743,0.5035055,0.5002245,0.4970888,0.494124,0.4913265,0.4886718,0.4861229,0.4836377,0.481174,0.4786937,0.4761664,0.473571,0.470897,0.4681453,0.4653281,0.4624676,0.4595912,0.456726,0.4538934,0.4511034,0.4483507,0.4456103,0.4428362,0.4399709,0.4369641,0.4337961,0.4304926,0.4271212,0.4237698,0.420519,0.4174203,0.414488,0.4117054,0.4090358,0.4064347,0.4038562,0.4012576,0.3986025,0.3958637,0.3930255,0.3900844,0.3870484,0.3839369,0.380779,0.3776105,0.3744645,0.3713622,0.3683064,0.3652795,0.362244,0.3591484,0.355939,0.3525797,0.3490694,0.3454509,0.341803,0.3382179,0.3347706,0.3315021,0.3284158,0.3254851,0.3226674,0.3199145,0.3171797,0.3144209,0.3116043,0.3087078,0.3057218,0.3026491,0.2995037,0.2963103,0.2931018,0.2899125,0.2867685,0.2836793,0.2806325,0.2775945,0.2745184,0.2713542,0.2680628,0.264629,0.2610721,0.2574466,0.253831,0.2503072,0.2469376,0.243749,0.2407328,0.237856,0.2350738,0.2323397,0.2296111,0.226853,0.2240405,0.2211617,0.2182171,0.2152181,0.2121858,0.209149,0.2061406,0.203192,0.2003225,0.1975296,0.194786,0.1920462,0.1892586,0.1863813,0.1833957,0.1803125,0.1771708,0.1740323,0.1709672,0.1680373,0.165281,0.1627065,0.160295,0.1580105,0.1558104,0.1536519,0.1514975,0.1493186,0.1470966,0.1448243,0.1425061,0.1401554,0.1377921,0.1354399,0.1331243,0.1308664,0.1286736,0.1265296,0.1243925,0.122207,0.1199229,0.1175144,0.114989,0.1123863,0.109765,0.1071885,0.1047108,0.1023674,0.1001686,0.0981005,0.096131,0.0942189,0.0923229,0.0904067,0.0884423,0.0864119,0.0843099,0.0821431,0.0799288,0.0776904,0.0754542,0.0732463,0.0710905,0.069001,0.0669743,0.0649819,0.062974,0.060895,0.0587078,0.0564116,0.0540463,0.0516778,0.0493789,0.0472094,0.0452041,0.0433701,0.0416904,0.04013,0.0386444,0.037188,0.0357202,0.0342088,0.0326314,0.0309764,0.029243,0.0274414,0.02559,0.0237104,0.0218239,0.0199474,0.0180901,0.0162491,0.0144037,0.0125107,0.0105122,0.0083556,0.0060164,0.0035157,0.0009207,-0.0016753,-0.0041836,-0.0065431,-0.0087296,-0.010752,-0.0126439,-0.014451,-0.01622,-0.0179931,-0.0198029,-0.0216716,-0.0236095,-0.0256158,-0.0276791,-0.0297788,-0.0318884,-0.0339831,-0.0360443,-0.038063,-0.0400432,-0.0420051,-0.0439879,-0.0460486,-0.0482495,-0.0506387,-0.0532262,-0.055971,-0.0587891,-0.0615789,-0.064253,-0.0667619,-0.0690993,-0.0712932,-0.0733908,-0.0754434,-0.0774972,-0.079589,-0.0817438,-0.0839745,-0.0862833,-0.0886616,-0.0910921,-0.0935505,-0.0960093,-0.0984433,-0.1008379,-0.1031927,-0.1055248,-0.1078683,-0.1102722,-0.1127943,-0.1154886,-0.1183862,-0.1214775,-0.1247057,-0.1279788,-0.1311972,-0.1342839,-0.1372038,-0.1399643,-0.1426026,-0.1451693,-0.1477145,-0.1502805,-0.1528975,-0.1555829,-0.1583398,-0.161159,-0.16402,-0.1668947,-0.1697518,-0.1725592,-0.1752898,-0.1779287,-0.1804802,-0.1829696,-0.1854401,-0.1879468,-0.1905442,-0.1932721,-0.1961423,-0.1991291,-0.2021697,-0.2051786,-0.208073,-0.2107972,-0.2133364,-0.2157134,-0.2179753,-0.2201765,-0.2223672,-0.2245874,-0.2268647,-0.2292136,-0.2316351,-0.2341187,-0.2366455,-0.2391901,-0.2417243,-0.244221,-0.2466601,-0.2490371,-0.2513695,-0.2536967,-0.2560721,-0.2585498,-0.26117,-0.2639475,-0.2668647,-0.2698736,-0.2729044,-0.275881,-0.2787407,-0.2814493,-0.2840083,-0.2864479,-0.2888145,-0.291156,-0.2935125,-0.2959134,-0.2983759,-0.3009045,-0.3034911,-0.3061173,-0.3087584,-0.3113871,-0.313977,-0.3165058,-0.318961,-0.3213468,-0.3236906,-0.3260397,-0.3284498,-0.3309665,-0.3336098,-0.3363657,-0.3391907,-0.3420239,-0.3448026,-0.3474757,-0.3500141,-0.352417,0.6452895,0.6430621,0.6408528,0.6386189,0.6363294,0.6339655,0.6315211,0.6290021,0.6264249,0.6238131,0.6211923,0.6185857,0.6160126,0.6134855,0.6110047,0.608552,0.6060876,0.6035567,0.6009076,0.5981134,0.595188,0.592186,0.589187,0.5862723,0.5835051,0.5809189,0.5785156,0.5762698,0.5741382,0.5720702,0.5700191,0.5679478,0.5658329,0.5636633,0.5614402,0.5591746,0.5568855,0.5545953,0.5523248,0.5500888,0.5478929,0.5457315,0.5435844,0.541412,0.5391541,0.5367428,0.5341283,0.5313002,0.5282983,0.5252058,0.5221255,0.5191494,0.516336,0.5137023,0.5112296,0.508878,0.5065982,0.5043425,0.5020725,0.4997628,0.4974022,0.4949912,0.4925407,0.4900708,0.4876077,0.4851794,0.4828088,0.4805078,0.4782746,0.4760931,0.4739298,0.4717322,0.4694336,0.4669671,0.4642879,0.4613952,0.4583431,0.4552274,0.4521553,0.4492123,0.44644,0.4438328,0.441351,0.4389389,0.4365408,0.4341114,0.4316198,0.4290504,0.4264029,0.4236895,0.4209324,0.4181601,0.4154047,0.4126969,0.4100594,0.4075018,0.4050176,0.4025823,0.4001552,0.3976823,0.3951021,0.3923603,0.3894305,0.3863318,0.3831328,0.3799356,0.3768439,0.3739307,0.3712194,0.3686857,0.3662755,0.3639258,0.3615817,0.3592027,0.3567641,0.3542565,0.3516842,0.3490632,0.3464182,0.3437784,0.3411728,0.3386265,0.3361548,0.3337583,0.3314192,0.3291022,0.3267585,0.3243337,0.3217784,0.3190608,0.3161817,0.3131833,0.3101452,0.3071655,0.3043325,0.3016984,0.2992671,0.2970015,0.2948435,0.2927343,0.290627,0.2884912,0.286313,0.2840927,0.2818429,0.2795852,0.2773462,0.2751525,0.2730273,0.2709863,0.2690339,0.2671573,0.2653243,0.2634865,0.2615881,0.2595791,0.2574269,0.255126,0.2527025,0.2502129,0.2477344,0.2453462,0.2431074,0.2410416,0.2391324,0.2373344,0.2355909,0.2338518,0.2320828,0.2302667,0.2284015,0.2264982,0.2245776,0.2226671,0.2207948,0.2189844,0.2172528,0.2156076,0.2140434,0.2125368,0.2110454,0.2095125,0.2078815,0.2061137,0.2042008,0.2021688,0.2000726,0.1979841,0.1959745,0.1940988,0.1923839,0.1908231,0.1893795,0.1879987,0.1866265,0.1852215,0.1837591,0.1822307,0.1806414,0.1790069,0.1773508,0.1756992,0.1740768,0.1725032,0.170989,0.1695337,0.1681222,0.1667222,0.1652845,0.1637527,0.1620779,0.1602395,0.1582583,0.1561946,0.1541299,0.1521443,0.1502964,0.1486118,0.1470815,0.1456683,0.1443178,0.1429732,0.1415874,0.1401301,0.1385894,0.1369687,0.1352829,0.1335554,0.1318133,0.1300834,0.1283859,0.1267301,0.1251133,0.1235207,0.1219225,0.1202727,0.1185111,0.1165766,0.114428,0.1120662,0.1095426,0.1069489,0.1043892,0.1019489,0.0996734,0.0975626,0.0955804,0.093671,0.0917748,0.0898417,0.0878381,0.0857493,0.0835779,0.0813401,0.079061,0.0767709,0.0745004,0.0722761,0.0701139,0.0680157,0.0659688,0.0639465,0.0619068,0.0597933,0.0575407,0.055089,0.0524066,0.0495106,0.0464724,0.0433991,0.0404004,0.0375577,0.0349182,0.0324834,0.0302035,0.0280063,0.0258234,0.023604,0.0213205,0.0189651,0.0165452,0.0140799,0.0115948,0.0091189,0.0066793,0.0042965,0.0019799,-0.0002765,-0.0024942,-0.0047078,-0.0069638,-0.009317,-0.0118221,-0.0145304,-0.0174605,-0.0205831,-0.0238106,-0.0270211,-0.0301049,-0.0329949,-0.0356806,-0.0382011,-0.0406219,-0.0430096,-0.0454152,-0.0478681,-0.0503777,-0.0529366,-0.0555252,-0.0581162,-0.0606789,-0.0631836,-0.0656068,-0.0679354,-0.0701701,-0.072328,-0.074443,-0.0765626,-0.078742,-0.0810375,-0.083497,-0.0861474,-0.0889805,-0.0919443,-0.0949507,-0.097897,-0.1006989,-0.1033167,-0.1057629,-0.1080901,-0.1103661,-0.1126502,-0.1149806,-0.1173724,-0.1198217,-0.1223117,-0.1248166,-0.1273068,-0.129754,-0.1321351,-0.1344346,-0.1366482,-0.1387862,-0.1408748,-0.1429548,-0.1450774,-0.1472953,-0.1496516,-0.1521703,-0.1548481,-0.15765,-0.1605108,-0.1633476,-0.1660804,-0.168657,-0.1710682,-0.1733479,-0.1755567,-0.1777584,-0.1800008,-0.1823075,-0.1846798,-0.1871034,-0.1895546,-0.1920046,-0.1944243,-0.1967885,-0.1990804,-0.2012938,-0.2034353,-0.2055258,-0.207602,-0.2097146,-0.2119194,-0.2142648,-0.2167765,-0.2194491,-0.2222436,-0.2250952,-0.2279275,-0.2306682,-0.2332661,-0.2357033,-0.2379994,-0.2402035,-0.2423758,-0.2445679,-0.2468095,-0.2491057,-0.251442,-0.253794,-0.2561321,-0.2584255,-0.2606471,-0.2627783,-0.2648127,-0.2667574,-0.2686329,-0.2704737,-0.2723288,-0.2742581,-0.2763209,-0.2785579,-0.2809739,-0.2835314,-0.2861587,-0.2887686,-0.2912821,-0.2936481,-0.2958536,-0.2979223,-0.2999064,-0.3018716,-0.3038801,-0.3059761,-0.3081792,-0.3104854,-0.3128745,-0.3153174,-0.3177823,-0.3202394,-0.322666,-0.3250503,-0.3273948,-0.329716,-0.3320431,-0.3344157,-0.3368844,-0.3395072,-0.342335,-0.3453901,-0.3486493,-0.3520406,-0.3554584,-0.3587933,-0.3619623,-0.3649285,-0.3677025,-0.3703307,-0.372877,-0.3754038,-0.3779582,-0.3805644,-0.3832242,-0.3859205,-0.3886246,-0.3913022,-0.39392,-0.3964497,-0.398874,-0.40119,-0.4034116,-0.4055686,-0.4077036,-0.4098703,-0.4121312,-0.4145515,-0.417183,-0.4200437,-0.4231004,-0.4262687,-0.4294354,-0.4324954,-0.4353844,-0.4380944,-0.4406674,-0.4431731,-0.4456841,-0.4482574,-0.450925,-0.4536942,-0.4565519,-0.4594698,-0.4624109,-0.4653347,-0.468202,-0.4709814,-0.4736544,-0.4762187,-0.4786905,-0.4811011,-0.4834941,-0.4859213,-0.4884379,-0.4910953,-0.4939266,-0.4969277,-0.5000459,-0.5031847,-0.5062295,-0.5090857,-0.5117099,-0.5141186,-0.5163752,-0.5185604,-0.5207465,-0.5229808,-0.5252829,-0.52765,-0.5300637,-0.532497,-0.5349191,-0.5372995,-0.5396126,-0.5418428,-0.5439878,-0.5460607,-0.5480906,-0.5501186,-0.5521928,-0.5543632,-0.5566755,-0.5591634,-0.5618363,-0.5646671,-0.5675871,-0.570496,-0.573289,-0.5758915,-0.5782828,-0.5804976,-0.5826056,-0.5846815,-0.5867797,-0.5889236,-0.5911085,-0.5933109,-0.5954982,-0.5976347,-0.5996868,-0.6016264,-0.6034351,-0.6051079,-0.6066551,-0.6081027,-0.6094906,-0.6108687,-0.6122893,-0.6137992,-0.6154306,-0.6171945,-0.6190747,-0.6210247,-0.622971,-0.6248287,-0.6265248,-0.6280229,0.3706628,0.369474,0.3683321,0.3671684,0.3659428,0.3646494,0.3633078,0.3619513,0.3606168,0.3593379,0.3581416,0.357044,0.3560483,0.3551431,0.3543028,0.3534876,0.3526462,0.3517207,0.3506567,0.3494149,0.3479811,0.3463725,0.3446362,0.3428402,0.3410608,0.3393655,0.3377943,0.3363478,0.3349863,0.3336433,0.3322499,0.3307579,0.3291525,0.3274508,0.3256908,0.3239185,0.3221781,0.3205064,0.318929,0.3174576,0.3160886,0.3148032,0.3135698,0.3123454,0.3110783,0.3097129,0.3082022,0.3065233,0.3046891,0.3027498,0.3007827,0.2988725,0.2970896,0.2954732,0.2940228,0.2927005,0.2914417,0.2901735,0.2888348,0.2873924,0.2858456,0.2842211,0.2825606,0.2809085,0.279303,0.277771,0.2763252,0.2749615,0.273659,0.2723829,0.2710877,0.2697195,0.2682195,0.2665309,0.2646125,0.2624559,0.2600973,0.257615,0.2551111,0.252681,0.2503863,0.2482409,0.2462131,0.2442406,0.2422516,0.240185,0.238004,0.2357026,0.2333037,0.2308499,0.2283923,0.22598,0.2236531,0.2214368,0.219339,0.2173486,0.2154358,0.2135575,0.2116628,0.2096954,0.2075974,0.2053167,0.2028217,0.2001183,0.1972611,0.1943471,0.1914893,0.1887798,0.1862616,0.1839192,0.1816919,0.1794999,0.1772707,0.1749562,0.1725398,0.1700338,0.167471,0.1648961,0.1623558,0.1598919,0.1575357,0.1553039,0.1531951,0.1511892,0.1492495,0.1473287,0.1453744,0.143333,0.1411538,0.1387962,0.1362432,0.1335169,0.1306862,0.1278548,0.1251319,0.122595,0.1202632,0.1180968,0.1160187,0.1139469,0.1118217,0.1096183,0.1073445,0.1050298,0.1027128,0.1004339,0.0982301,0.0961296,0.0941487,0.0922882,0.0905321,0.0888475,0.0871882,0.0855007,0.0837309,0.0818298,0.0797576,0.0774903,0.07503,0.072414,0.0697175,0.0670377,0.0644665,0.0620567,0.0598016,0.0576429,0.0554981,0.053295,0.0509962,0.0486043,0.0461519,0.0436856,0.0412525,0.0388929,0.0366364,0.0345008,0.0324906,0.0305945,0.0287859,0.0270239,0.0252585,0.023436,0.0215085,0.0194405,0.0172138,0.0148316,0.0123219,0.0097399,0.0071623,0.0046706,0.0023263,0.0001462,-0.0019054,-0.0039027,-0.0059284,-0.0080408,-0.0102555,-0.0125476,-0.0148672,-0.0171589,-0.0193745,-0.0214792,-0.0234527,-0.02529,-0.0270009,-0.02861,-0.0301551,-0.0316845,-0.0332532,-0.034915,-0.0367131,-0.0386703,-0.0407831,-0.0430212,-0.0453311,-0.0476454,-0.0498955,-0.0520287,-0.0540253,-0.0559095,-0.0577455,-0.0596171,-0.0615982,-0.0637272,-0.0659975,-0.0683654,-0.0707694,-0.0731495,-0.075459,-0.0776691,-0.0797686,-0.0817644,-0.0836799,-0.0855528,-0.0874314,-0.0893703,-0.0914243,-0.0936406,-0.0960476,-0.0986448,-0.1013969,-0.1042374,-0.1070805,-0.1098412,-0.1124566,-0.114901,-0.1171908,-0.1193797,-0.1215447,-0.1237647,-0.1260944,-0.128549,-0.1311017,-0.1336971,-0.1362698,-0.1387623,-0.1411343,-0.1433666,-0.1454618,-0.1474423,-0.1493472,-0.1512273,-0.1531389,-0.1551397,-0.1572844,-0.1596176,-0.162162,-0.1649055,-0.1677951,-0.170745,-0.1736585,-0.1764562,-0.1790985,-0.1815938,-0.1839932,-0.1863724,-0.1888093,-0.1913623,-0.1940566,-0.1968787,-0.1997826,-0.202704,-0.2055774,-0.208349,-0.2109844,-0.2134705,-0.2158158,-0.2180492,-0.2202162,-0.2223717,-0.2245733,-0.2268774,-0.2293341,-0.2319804,-0.2348277,-0.2378484,-0.2409723,-0.2440981,-0.2471225,-0.2499735,-0.2526337,-0.2551418,-0.2575739,-0.2600135,-0.2625257,-0.2651419,-0.2678565,-0.270633,-0.2734152,-0.276141,-0.2787542,-0.2812127,-0.2834952,-0.2856014,-0.287552,-0.2893863,-0.2911583,-0.292927,-0.2947504,-0.2966811,-0.2987619,-0.3010195,-0.303454,-0.306028,-0.308665,-0.3112657,-0.3137408,-0.3160438,-0.318188,-0.3202398,-0.3222897,-0.3244169,-0.3266643,-0.329031,-0.331481,-0.3339587,-0.3364044,-0.3387638,-0.3409953,-0.3430736,-0.3449916,-0.3467616,-0.3484145,-0.3499959,-0.3515595,-0.3531593,-0.3548427,-0.3566453,-0.3585886,-0.3606756,-0.3628842,-0.3651605,-0.3674253,-0.3696002,-0.3716254,-0.3734737,-0.3751703,-0.376792,-0.3784326,-0.3801594,-0.3819907,-0.3838983,-0.3858258,-0.3877103,-0.3894981,0.6088479,0.6073479,0.6060049,0.6048054,0.60372,0.6027053,0.6017083,0.6006733,0.5995499,0.5983007,0.5969056,0.595364,0.5936956,0.5919425,0.5901676,0.5884468,0.5868494,0.5854124,0.5841203,0.5829053,0.581671,0.5803313,0.5788437,0.5772216,0.5755232,0.5738263,0.5722032,0.5707053,0.5693596,0.5681712,0.5671263,0.5661952,0.5653351,0.5644941,0.5636159,0.5626452,0.5615369,0.5602634,0.5588197,0.5572257,0.5555235,0.5537711,0.5520332,0.5503692,0.548815,0.5473672,0.5459756,0.5445544,0.5430096,0.5412752,0.5393373,0.5372372,0.5350542,0.5328763,0.5307758,0.5287967,0.526954,0.5252385,0.5236217,0.5220609,0.5205042,0.5188956,0.5171805,0.5153119,0.5132578,0.5110089,0.5085851,0.5060365,0.503435,0.5008592,0.4983778,0.4960345,0.4938346,0.4917438,0.4896941,0.4876031,0.485399,0.4830373,0.4805233,0.4779121,0.4752867,0.4727292,0.4703022,0.468037,0.4659344,0.4639711,0.4621054,0.4602845,0.4584512,0.4565488,0.4545275,0.452349,0.4499928,0.447464,0.4447998,0.442069,0.4393583,0.4367514,0.4343044,0.4320287,0.4298885,0.4278114,0.4257092,0.423502,0.4211408,0.4186205,0.4159817,0.4132987,0.4106578,0.4081357,0.4057842,0.4036232,0.4016406,0.3997999,0.3980484,0.396324,0.3945638,0.3927112,0.3907208,0.3885615,0.3862211,0.3837137,0.3810864,0.3784173,0.3757985,0.3733078,0.3709809,0.3687976,0.366689,0.3645618,0.3623294,0.3599352,0.3573658,0.3546511,0.3518525,0.3490463,0.3463065,0.3436902,0.3412291,0.3389272,0.3367644,0.3347008,0.3326829,0.3306523,0.3285536,0.3263409,0.3239822,0.321461,0.3187796,0.3159649,0.313074,0.31019,0.3074027,0.3047775,0.3023272,0.3000035,0.2977149,0.2953615,0.292871,0.2902214,0.287439,0.284584,0.2817292,0.2789422,0.2762748,0.2737565,0.2713938,0.2691708,0.2670529,0.2649918,0.2629342,0.2608272,0.2586249,0.2562932,0.2538143,0.2511873,0.2484294,0.2455797,0.2427007,0.2398711,0.2371642,0.2346187,0.2322164,0.2298826,0.2275127,0.2250139,0.2223412,0.2195097,0.2165829,0.2136446,0.2107721,0.20802,0.2054147,0.2029563,0.200624,0.1983806,0.1961774,0.1939577,0.1916633,0.1892426,0.1866567,0.1838856,0.1809298,0.1778099,0.1745644,0.1712483,0.1679293,0.1646773,0.1615447,0.1585415,0.1556218,0.152695,0.1496589,0.1464429,0.1430378,0.1394994,0.1359254,0.1324207,0.129068,0.1259141,0.1229714,0.1202249,0.1176403,0.1151703,0.1127582,0.110344,0.1078702,0.1052902,0.102575,0.099717,0.0967321,0.0936557,0.0905378,0.0874345,0.0844003,0.0814752,0.0786682,0.0759443,0.0732254,0.070412,0.0674142,0.0641898,0.0607651,0.0572275,0.0536948,0.0502761,0.047046,0.0440344,0.0412326,0.0386039,0.0360953,0.0336458,0.0311929,0.0286776,0.0260509,0.023279,0.0203495,0.017275,0.0140931,0.0108624,0.007652,0.0045271,0.0015336,-0.0013144,-0.0040428,-0.0067179,-0.0094346,-0.0122914,-0.0153587,-0.0186513,-0.0221188,-0.0256615,-0.0291622,-0.0325213,-0.0356784,-0.0386183,-0.041363,-0.0439583,-0.046463,-0.0489398,-0.0514484,-0.0540401,-0.0567518,-0.0596041,-0.0625963,-0.0657026,-0.0688712,-0.0720307,-0.0751039,-0.078028,-0.0807742,-0.0833584,-0.0858388,-0.0883019,-0.0908405,-0.0935275,-0.0963942,-0.0994176,-0.1025254,-0.1056176,-0.1085927,-0.1113754,-0.1139307,-0.116265,-0.1184174,-0.1204473,-0.1224231,-0.1244127,-0.126476,-0.1286597,-0.1309937,-0.1334868,-0.1361254,-0.1388716,-0.1416633,-0.1444209,-0.1470661,-0.149547,-0.1518596,-0.1540512,-0.1562076,-0.1584251,-0.1607807,-0.1633107,-0.1660014,-0.1687957,-0.171608,-0.1743467,-0.1769339,-0.1793214,-0.181498,-0.1834866,-0.1853347,-0.1871042,-0.1888615,-0.190668,-0.1925724,-0.1946052,-0.1967782,-0.1990851,-0.2015009,-0.2039805,-0.2064585,-0.2088585,-0.211114,-0.2131959,-0.2151302,-0.2169953,-0.2188962,-0.2209259,-0.2231326,-0.2255058,-0.2279826,-0.2304709,-0.2328745,-0.2351138,-0.2371372,-0.2389256,-0.2404926,-0.2418773,-0.243135,-0.244329,-0.245522,-0.2467667,-0.2481009,0.7504566,0.748908,0.7472747,0.7455936,0.7439163,0.7423062,0.7408278,0.7395221,0.7383841,0.7373516,0.7363176,0.7351656,0.7338135,0.7322417,0.730496,0.7286659,0.7268536,0.7251454,0.7235919,0.7222071,0.7209791,0.7198753,0.7188491,0.7178435,0.7168004,0.7156679,0.7144078,0.7130018,0.7114515,0.7097757,0.7080081,0.706195,0.7043917,0.7026552,0.7010326,0.6995424,0.6981552,0.6967898,0.6953336,0.6936845,0.6917937,0.6896873,0.6874573,0.6852287,0.6831175,0.6811993,0.6794993,0.6780003,0.6766589,0.6754178,0.6742145,0.6729878,0.6716828,0.6702575,0.6686882,0.6669725,0.6651288,0.6631946,0.6612212,0.6592669,0.6573871,0.6556257,0.6540029,0.6525015,0.6510598,0.6495766,0.6479396,0.6460662,0.6439392,0.6416152,0.6392088,0.636855,0.6346638,0.6326963,0.6309573,0.6294089,0.6279905,0.6266349,0.6252772,0.6238588,0.6223313,0.6206637,0.6188448,0.6168851,0.6148165,0.6126891,0.6105619,0.6084916,0.6065204,0.6046655,0.6029108,0.601203,0.5994573,0.5975715,0.5954543,0.5930607,0.5904151,0.5876118,0.5847899,0.5820891,0.5796096,0.5773911,0.5754174,0.5736341,0.5719687,0.5703471,0.5687032,0.5669814,0.5651425,0.5631672,0.5610546,0.5588232,0.5565113,0.5541736,0.5518701,0.5496522,0.5475474,0.5455457,0.5435957,0.541617,0.5395138,0.5371941,0.5346013,0.5317338,0.5286515,0.525467,0.5223152,0.519316,0.5165459,0.5140256,0.5117277,0.5095917,0.5075407,0.505501,0.50341,0.5012227,0.4989149,0.4964822,0.4939403,0.4913237,0.4886857,0.4860905,0.483605,0.481281,0.4791345,0.4771339,0.4752036,0.4732434,0.4711583,0.4688858,0.4664134,0.4637825,0.4610795,0.4584121,0.4558829,0.4535665,0.4514941,0.4496504,0.4479825,0.4464178,0.4448802,0.4433,0.4416233,0.439817,0.4378706,0.4357948,0.4336186,0.4313842,0.4291448,0.4269615,0.4248939,0.4229779,0.4212064,0.4195199,0.4178194,0.4159986,0.4139781,0.4117338,0.4093046,0.4067765,0.4042555,0.4018406,0.3996029,0.397576,0.3957548,0.3941037,0.3925668,0.3910808,0.3895859,0.3880335,0.386391,0.3846459,0.3828074,0.3809033,0.3789732,0.3770668,0.37524,0.3735432,0.3720128,0.3706533,0.3694203,0.3682197,0.3669313,0.365452,0.3637337,0.3618028,0.3597513,0.3577036,0.3557751,0.3540451,0.3525483,0.3512749,0.3501817,0.3492073,0.3482822,0.3473341,0.3462995,0.3451313,0.3438038,0.3423142,0.3406861,0.338965,0.3372047,0.3354606,0.3337874,0.3322234,0.3307833,0.3294476,0.32815,0.326783,0.3252253,0.323389,0.3212589,0.3189074,0.316471,0.3141043,0.3119369,0.3100421,0.3084317,0.3070701,0.3058807,0.3047698,0.3036431,0.3024176,0.30103,0.2994552,0.2976975,0.2957832,0.293755,0.291668,0.2895794,0.287546,0.2856164,0.2838195,0.282153,0.2805677,0.2789713,0.277245,0.2752778,0.2730091,0.2704591,0.2677298,0.264973,0.2623382,0.259927,0.2577783,0.2558727,0.2541519,0.2525436,0.2509748,0.2493737,0.2476814,0.2458641,0.2439148,0.2418495,0.2397062,0.2375393,0.2354104,0.2333785,0.2314874,0.2297566,0.2281724,0.2266851,0.2252106,0.2236407,0.2218643,0.2197971,0.2174177,0.2147866,0.2120352,0.2093272,0.2068048,0.2045467,0.2025546,0.2007703,0.1991141,0.1975021,0.195863,0.1941465,0.1923232,0.1903817,0.1883291,0.1861914,0.1840107,0.1818416,0.1797487,0.1777901,0.1760039,0.1743977,0.1729405,0.1715624,0.1701647,0.1686413,0.1669039,0.1649088,0.1626807,0.1603128,0.157943,0.1557163,0.1537413,0.1520591,0.1506414,0.1494118,0.1482765,0.1471485,0.1459603,0.1446704,0.1432634,0.1417474,0.1401511,0.1385142,0.1368845,0.1353134,0.1338492,0.1325291,0.1313726,0.1303624,0.1294398,0.1285171,0.1274988,0.1263048,0.1248956,0.1232869,0.121551,0.1198014,0.1181599,0.1167246,0.1155455,0.1146131,0.113868,0.1132262,0.1126004,0.1119164,0.1111222,0.110191,0.109122,0.1079348,0.1066656,0.1053602,0.1040695,0.1028524,0.101765,0.1008459,0.1001015,0.099494,0.0989447,0.0983525,0.0976272,0.0967228,0.0956541,0.0944811,0.0932965,0.0922015,0.0912778,0.0905705,0.0900846,0.0897819,0.0895943,0.0894428,0.0892535,0.0889645,0.0885366,0.0879576,0.0872381,0.0864061,0.0855079,0.0845982,0.0837297,0.0829466,0.0822749,0.0817199,0.0812522,0.0807991,0.080253,0.0795004,0.0784621,0.077131,0.0755844,0.073956,0.0723961,0.0710296,0.0699288,0.0691035,0.0685007,0.0680293,0.0675907,0.0670927,0.0664605,0.065643,0.0646187,0.0634024,0.0620338,0.0605685,0.0590726,0.0576114,0.0562414,0.0550051,0.0539262,0.0530016,0.0521865,0.0513731,0.0504205,0.0492011,0.0476472,0.0457775,0.0436988,0.0415674,0.0395339,0.0377024,0.0361257,0.0348022,0.0336857,0.0326912,0.0317346,0.0307466,0.0296707,0.02847,0.0271316,0.0256652,0.0241011,0.022492,0.0208963,0.0193637,0.0179301,0.0166131,0.0154103,0.0142905,0.0131872,0.0120032,0.0106253,0.0089553,0.006959,0.0046915,0.0022838,-0.0001004,-0.0023085,-0.0042533,-0.0059313,-0.0074022,-0.0087569,-0.0100902,-0.0114808,-0.0129801,-0.0146124,-0.0163768,-0.0182517,-0.0201975,-0.0221648,-0.0241002,-0.0259535,-0.0276788,-0.0292488,-0.0306634,-0.031956,-0.0331909,-0.0344639,-0.0358906,-0.0375822,-0.0396071,-0.0419565,-0.044525,-0.0471428,-0.0496329,-0.0518652,-0.0537906,-0.0554429,-0.056912,-0.0583041,-0.0597134,-0.0612057,-0.0628168,-0.0645559,-0.0664093,-0.0683462,-0.0703216,-0.0722728,-0.0741339,-0.0758485,-0.0773789,-0.0787172,-0.0799007,-0.0810033,-0.0821215,-0.0833594,-0.0848141,-0.0865559,-0.0885988,-0.0908891,-0.0933118,-0.0957153,-0.097952,-0.0999269,-0.1016202,-0.1030819,-0.104403,-0.1056908,-0.1070334,-0.1084835,-0.1100626,-0.1117656,-0.1135639,-0.1154147,-0.1172671,-0.1190692,-0.1207752,-0.1223456,-0.123759,-0.1250266,-0.1261934,-0.1273332,-0.1285349,-0.1298835,-0.1314348,-0.1331992,-0.1351332,-0.1371443,-0.1391115,-0.1409145,-0.1424692,-0.143753,-0.1448098,-0.1457299,-0.1466221,-0.1475939,-0.1487214,-0.1500375,-0.1515424,-0.1532112,-0.1549994,-0.1568519,-0.1587058,-0.1605019,-0.1621932,-0.1637509,-0.1651726,-0.1664928,-0.167782,-0.1691344,-0.170645,-0.172381,-0.1743616,-0.1765442,-0.1788316,-0.1810993,-0.1832277,-0.1851255,-0.1867528,-0.1881288,-0.1893206,-0.1904232,-0.1915358,-0.1927352,-0.1940623,-0.1955214,-0.1970876,-0.1987174,-0.2003576,-0.2019533,-0.2034558,-0.2048286,-0.2060426,-0.2070897,-0.2079909,-0.2088025,-0.2096176,-0.2105549,-0.2117207,-0.2131723,-0.2148936,-0.2167968,-0.218746,-0.2206037,-0.2222727,-0.2237165,-0.2249617,-0.226081,-0.2271691,-0.2283206,-0.22961,-0.2310803,-0.2327366,-0.2345492,-0.2364665,-0.2384225,-0.240348,-0.2421828,-0.2438804,-0.2454137,-0.2467771,-0.2479911,-0.2491133,-0.2502366,-0.2514795,-0.2529655,-0.2547878,-0.2569763,-0.2594585,-0.2620856,-0.2646828,-0.2671051,-0.2692732,-0.2711846,-0.2729019,-0.2745215,-0.2761415,-0.2778426,-0.279675,-0.2816553,-0.2837689,-0.2859755,-0.2882214,-0.2904485,-0.292603,-0.2946427,-0.2965422,-0.2982871,-0.2998836,-0.301362,-0.3027774,-0.3042116,-0.3057732,-0.3075636,-0.3096428,-0.3119958,-0.3145239,-0.3170615,-0.3194341,-0.3215212,-0.3232916,-0.3248028,-0.3261699,-0.3275209,-0.328963,-0.3305648,-0.3323551,-0.3343249,-0.3364369,-0.3386354,-0.3408538,-0.3430262,-0.3450926,-0.3470059,-0.3487431,-0.3503086,-0.3517354,-0.3530852,-0.3544381,-0.355888,-0.3575299,-0.3594374,-0.3616394,-0.3640873,-0.3666569,-0.3691842,-0.3715169,-0.3735543,-0.3752849,-0.3767787,-0.3781483,-0.3795079,-0.3809302,-0.38246,-0.3841082,-0.3858583,-0.3876741,-0.3894973,-0.3912622,-0.3929147,-0.3944138,-0.3957396,-0.396896,-0.3979119,-0.3988418,-0.3997614,-0.4007599,-0.4019345,-0.4033664,-0.4050991,-0.4071166,-0.4093335,-0.4115995,-0.4137443,-0.4156353,-0.4172156,-0.4185166,-0.4196446,-0.4207279,-0.4218699,-0.4231266,-0.4245066,-0.4259873,-0.4275245,-0.4290641,-0.4305495,-0.4319284,-0.4331607,-0.4342276,-0.4351351,-0.4359163,-0.4366297,-0.4373176,-0.4380301,-0.4388699,-0.4399339,-0.4412778,-0.4428766,-0.4446405,-0.4464396,-0.4481272,-0.449573,-0.4506984,0.5485004,0.5479533,0.5475483,0.5471681,0.5467204,0.5461589,0.5454855,0.5447364,0.5439641,0.5432167,0.5425378,0.541963,0.541517,0.5412013,0.5409977,0.5408707,0.5407618,0.5405915,0.5402712,0.5397175,0.5388864,0.5377986,0.5365439,0.5352489,0.5340471,0.5330494,0.5323188,0.5318518,0.5315787,0.5313817,0.5311405,0.5307614,0.5301936,0.5294351,0.5285284,0.5275417,0.52655,0.5256244,0.5248226,0.5241795,0.5237084,0.5233999,0.5232192,0.5230925,0.5229286,0.5226251,0.5220829,0.5212352,0.5200746,0.5186708,0.517154,0.5156773,0.5143732,0.5133192,0.5125318,0.5119667,0.5115288,0.5110891,0.5105313,0.5097862,0.5088333,0.5076896,0.5064027,0.5050383,0.5036765,0.5023923,0.5012381,0.5002426,0.499414,0.498727,0.498129,0.4975442,0.4968756,0.496017,0.4948708,0.4933871,0.4915918,0.489593,0.487555,0.4856456,0.4839839,0.4826075,0.4814744,0.4804861,0.4795142,0.4784439,0.4771976,0.4757412,0.4740829,0.4722687,0.4703695,0.4684655,0.4666323,0.4649271,0.4633746,0.4619749,0.4607016,0.4595078,0.4583311,0.4570864,0.4556778,0.454017,0.452046,0.4497637,0.4472429,0.4446304,0.4421063,0.4398232,0.4378549,0.4361774,0.4346893,0.4332517,0.4317393,0.4300686,0.4282048,0.4261575,0.4239661,0.4216889,0.419395,0.4171614,0.4150581,0.4131363,0.4114209,0.409901,0.4085363,0.4072679,0.4060233,0.4047217,0.4032792,0.4016139,0.399676,0.3974757,0.3950962,0.3926791,0.3903914,0.3883651,0.3866431,0.3851706,0.3838201,0.3824445,0.3809286,0.3792145,0.3773015,0.3752322,0.3730921,0.3709772,0.3689471,0.3670461,0.3653038,0.3637359,0.3623349,0.3610675,0.3598781,0.3586943,0.3574387,0.3560384,0.3544301,0.3525711,0.350459,0.3481535,0.3457756,0.343478,0.3413995,0.3396175,0.3381258,0.336838,0.3356221,0.334351,0.3329424,0.331372,0.3296683,0.327891,0.3261083,0.3243807,0.3227654,0.3213098,0.3200411,0.318963,0.3180545,0.3172698,0.3165427,0.3157959,0.3149536,0.3139523,0.3127455,0.3113241,0.3097243,0.3080251,0.3063352,0.3047712,0.3034216,0.3023075,0.301368,0.3004827,0.2995162,0.2983598,0.2969636,0.2953429,0.2935629,0.2917248,0.2899306,0.2882484,0.2867219,0.2853715,0.2841855,0.2831361,0.2821769,0.2812422,0.2802534,0.2791259,0.2777851,0.2761849,0.2743231,0.2722451,0.2700458,0.2678507,0.2657832,0.2639369,0.2623484,0.2609846,0.2597535,0.2585328,0.2572048,0.2556936,0.2539825,0.2521126,0.2501598,0.2482091,0.2463389,0.2446154,0.2430854,0.2417715,0.2406684,0.2397425,0.2389247,0.2381275,0.2372563,0.2362232,0.2349594,0.2334329,0.2316683,0.22975,0.2277995,0.2259432,0.2242884,0.2228875,0.2217169,0.2206958,0.2197129,0.2186492,0.2174165,0.215979,0.2143595,0.2126288,0.2108892,0.209247,0.20779,0.2065674,0.2055736,0.2047815,0.2041464,0.2036018,0.2030661,0.2024443,0.20163,0.2005259,0.1990686,0.1972547,0.1951508,0.1928997,0.1906839,0.1886639,0.1869345,0.1855002,0.1842781,0.1831434,0.1819648,0.180632,0.1790828,0.1773168,0.1753876,0.1733778,0.1713813,0.1694839,0.1677409,0.1661771,0.1647869,0.163538,0.1623768,0.1612419,0.1600691,0.158793,0.1573524,0.1556986,0.1537982,0.151669,0.1493977,0.1471287,0.1450175,0.1431758,0.1416306,0.1403167,0.1391035,0.1378442,0.1364257,0.1347928,0.1329483,0.1309394,0.128842,0.1267425,0.1247231,0.1228508,0.121167,0.1196851,0.118399,0.1172779,0.1162708,0.115315,0.1143496,0.1133189,0.1121391,0.1107416,0.1091111,0.1073001,0.105422,0.1036278,0.1020574,0.1007902,0.0998116,0.0990184,0.0982691,0.0974382,0.0964573,0.0953279,0.0940921,0.0928189,0.0915853,0.090461,0.0894995,0.0887372,0.088189,0.0878444,0.0876652,0.0875913,0.0875533,0.0874778,0.0872904,0.0869271,0.0863418,0.0855194,0.0844774,0.0832784,0.0820326,0.0808672,0.0799009,0.0791784,0.0786525,0.0782093,0.0777131,0.0770517,0.0761817,0.0751326,0.0739793,0.0728127,0.071719,0.0707581,0.0699676,0.0693637,0.0689379,0.0686592,0.0684752,0.0683154,0.0680975,0.0677463,0.0672111,0.0664677,0.0655241,0.0644301,0.0632691,0.0621356,0.0611341,0.0603507,0.0598218,0.0595103,0.0593032,0.0590515,0.0586192,0.0579316,0.0569959,0.0558947,0.05475,0.0536802,0.0527743,0.0520745,0.0515941,0.0513228,0.0512227,0.0512306,0.0512704,0.0512696,0.0511307,0.0507672,0.0501244,0.0491897,0.0480126,0.0466928,0.0453554,0.0441275,0.0431091,0.0423523,0.0418447,0.0415022,0.0411933,0.0407779,0.0401484,0.0392644,0.0381627,0.0369384,0.0357095,0.0345786,0.0336146,0.0328473,0.032273,0.0318625,0.0315691,0.0313319,0.0310826,0.0307545,0.030285,0.0296062,0.0286745,0.0274904,0.0261038,0.0246057,0.0231164,0.0217498,0.0205828,0.0196373,0.0188699,0.0181674,0.0173911,0.0164179,0.0151709,0.0136407,0.0118924,0.0100364,0.0081925,0.0064627,0.0049142,0.0035697,0.0024123,0.0013968,0.0004559,-0.0004907,-0.0015236,-0.0027172,-0.0041322,-0.0058036,-0.0077296,-0.0098641,-0.0121088,-0.0143272,-0.0163835,-0.0181853,-0.0197097,-0.0210077,-0.0221888,-0.0233821,-0.024696,-0.0262068,-0.0279346,-0.0298429,-0.0318554,-0.0338791,-0.0358162,-0.0375998,-0.0391991,-0.0406182,-0.0418908,-0.0430707,-0.0442243,-0.0454178,-0.0466941,-0.0480877,-0.0496473,-0.0514065,-0.0533584,-0.0554448,-0.0575563,-0.0595497,-0.0612972,-0.062735,-0.0638876,-0.0648579,-0.065792,-0.0668309,-0.0680671,-0.0695356,-0.0712101,-0.0730183,-0.0748672,-0.0766606,-0.0783168,-0.0797822,-0.0810393,-0.0821047,-0.0830242,-0.083864,-0.0846995,-0.0856074,-0.086654,-0.0878886,-0.0893392,-0.0910056,-0.0928469,-0.0947752,-0.0966625,-0.0983718,-0.0998063,-0.1009546,-0.1018968,-0.1027771,-0.1037502,-0.1049243,-0.1063268,-0.1079203,-0.1096216,-0.1113302,-0.1129546,-0.1144229,-0.1156883,-0.1167309,-0.1175592,-0.1182174,-0.1187876,-0.1193656,-0.1200454,-0.120904,-0.1219939,-0.1233293,-0.1248936,-0.1266407,-0.1284983,-0.1303713,-0.1321473,-0.1337271,-0.1350609,-0.1361752,-0.1371751,-0.1382137,-0.1394301,-0.1408961,-0.1425952,-0.1444395,-0.1463076,-0.1480827,-0.1496792,-0.1510483,-0.1521754,-0.1530803,-0.1538085,-0.1544257,-0.1550127,-0.1556534,-0.1564181,-0.1573645,-0.158524,-0.159897,-0.1614522,-0.1631232,-0.1648159,-0.1664282,-0.1678649,-0.1690662,-0.1700387,-0.1708653,-0.1716884,-0.1726652,-0.1739127,-0.1754669,-0.1772708,-0.1792058,-0.1811378,-0.1829575,-0.1845939,-0.1860192,-0.1872445,-0.1883072,-0.1892606,-0.1901714,-0.1911208,-0.1921866,-0.193428,-0.1948796,-0.1965519,-0.1984189,-0.2004177,-0.2024582,-0.2044387,-0.2062727,-0.2079101,-0.209354,-0.2106715,-0.211985,-0.2134432,-0.2151777,-0.2172543,-0.2196512,-0.2222653,-0.2249392,-0.227513,-0.2298655,-0.2319283,-0.2336842,-0.2351685,-0.2364484,-0.2376066,-0.2387344,-0.2399241,-0.2412586,-0.242793,-0.2445517,-0.2465222,-0.2486524,-0.2508574,-0.2530336,-0.2550811,-0.2569322,-0.2585706,-0.2600329,-0.2614082,-0.2628158,-0.264371,-0.2661513,-0.2681756,-0.2703899,-0.2726855,-0.2749331,-0.2770194,-0.2788751,-0.2804836,-0.2818734,-0.283104,-0.2842503,-0.2853874,-0.2865874,-0.287912,-0.2894067,-0.2910944,-0.292973,-0.2950098,-0.2971341,-0.299244,-0.3012298,-0.303004,-0.3045227,-0.305812,-0.3069629,-0.3081037,-0.3093636,-0.3108321,-0.3125422,-0.3144861,-0.316603,-0.3187741,-0.3208689,-0.3227828,-0.3244569,-0.3258816,-0.3270942,-0.3281572,-0.3291436,-0.3301221,-0.3311539,-0.3322995,-0.3335992,-0.3350731,-0.3367303,-0.3385437,-0.3404276,-0.3422612,-0.3439235,-0.3453338,-0.3464826,-0.3474467,-0.3483629,-0.3493776,-0.3505999,-0.3520735,-0.3537744,-0.3556266,-0.3575277,-0.3593786,-0.3611022,-0.362638,-0.363956,-0.3650632,-0.3659958,-0.3668097,-0.3675812,-0.3683809,-0.369262,-0.3702558,-0.371374,-0.3726318,-0.3740296,-0.3755369,-0.3770762,-0.3785276,-0.3797848,-0.3807967,-0.3815935,-0.3822823,-0.383008,-0.3839036,-0.3850391,-0.3864013,-0.3879081,-0.3894458,-0.3909028,-0.3921854,-0.3932371,-0.3940392,-0.3946064,-0.3949782,-0.3952155,-0.3954057,-0.3956377,-0.3959858,-0.3964968,-0.3971909,-0.3980607,-0.3990693,-0.4001562,-0.4012411,-0.4022308,-0.403041,-0.4036248,-0.4039958,-0.4042331,-0.4044738,-0.4048701,-0.4055364,-0.4064962,-0.4076638,-0.4088953,-0.4100463,-0.4110112,-0.4117408,-0.4122199,-0.4124699,-0.4125412,-0.4125071,-0.412448,-0.4124433,-0.4125566,-0.4128303,-0.4132855,-0.4139193,-0.4146974,-0.4155622,-0.4164404,-0.4172538,-0.4179335,-0.4184274,-0.4187256,-0.418883,-0.4190221,-0.4193053,-0.4198591,-0.4207337,-0.4218874,-0.4232078,-0.4245456,-0.425757,-0.4267492,-0.4274959,-0.4280265,-0.428406,-0.4287093,-0.4290138,-0.4293968,-0.4299323,-0.4306801,-0.431666,-0.4328724,-0.4342569,-0.4357566,-0.4372949,-0.4387883,-0.4401428,-0.4412898,-0.4422052,-0.4429257,-0.4435541,-0.4442372,-0.4451272,-0.4463371,-0.4478989,-0.4497324,-0.4516845,-0.4535847,-0.4552955,-0.4567444,-0.4579189,-0.4588557,-0.4596261,-0.4603222,-0.4610477,-0.4618951,-0.4629281,-0.4641874,-0.4656891,-0.4674225,-0.4693294,-0.4713203,-0.4732929,-0.4751501,-0.4768156,-0.4782487,-0.4794675,-0.480552,-0.4816303,-0.4828506,-0.4843331,-0.4861358,-0.4882368,-0.4905374,-0.4928899,-0.4951331,-0.4971445,-0.4988691,-0.5003166,-0.5015445,-0.5026421,-0.5037056,-0.504823,-0.506066,-0.507486,-0.5091028,-0.5109039,-0.5128522,-0.5148864,-0.5169297,-0.5189036,-0.5207327,-0.5223558,-0.5237628,-0.525008,-0.526209,-0.5275029,-0.5290038,-0.5307724,-0.5328031,-0.5350281,-0.5373298,-0.5395742,-0.5416488,-0.5434872,-0.5450686,-0.546433,-0.5476615,-0.5488511,-0.5500926,-0.55146,-0.5529999,-0.5547263,-0.5566215,-0.5586448,-0.56075,-0.5628751,-0.5649417,-0.566869,-0.568597,-0.5701069,-0.5714407,-0.5726968,-0.5740011,-0.5754712,-0.5771869,-0.5791584,-0.5813273,-0.5835879,-0.5858129,-0.5878848,-0.5897266,-0.5913102,-0.592654,-0.5938134,-0.5948717,-0.595915,-0.5970162,-0.598233,-0.5996051,-0.6011439,-0.6028368,-0.6046484,-0.6065228,-0.6083872,-0.6101643,-0.6117854,-0.613215,-0.6144751,-0.6156546,-0.616888,-0.6183087,-0.6200044,-0.6219879,-0.6241916,-0.6264917,-0.6287492,-0.6308466,-0.6327074,-0.6343047,0.3643359,0.363154,0.3620705,0.3610015,0.3598753,0.3586365,0.3572471,0.3556948,0.3539913,0.3521665,0.3502778,0.3484002,0.3466047,0.3449548,0.3434929,0.3422302,0.3411225,0.3400672,0.3389315,0.3376045,0.3360331,0.334248,0.3323616,0.3305222,0.3288558,0.3274423,0.3263006,0.3253914,0.3246412,0.3239661,0.3232782,0.3224941,0.3215454,0.3203865,0.3189993,0.3173961,0.3156136,0.313707,0.3117424,0.3097906,0.3079259,0.3062099,0.3046719,0.3032892,0.3019706,0.3005676,0.2989203,0.2969179,0.2945436,0.2918866,0.289118,0.2864294,0.2839731,0.2818326,0.2800136,0.2784502,0.2770416,0.275682,0.274272,0.2727302,0.2710085,0.2690869,0.2669756,0.2647148,0.2623694,0.2600206,0.2577546,0.2556525,0.253778,0.252167,0.2508187,0.249666,0.2485848,0.2474243,0.2460468,0.244367,0.2423916,0.24022,0.2380082,0.2359188,0.2340736,0.2325177,0.2312157,0.2300812,0.2290136,0.2279109,0.2266886,0.2252855,0.2236704,0.2218412,0.2198188,0.2176495,0.2153997,0.2131468,0.2109724,0.2089457,0.2071038,0.2054397,0.2038986,0.2023847,0.2007794,0.1989671,0.1968611,0.1944457,0.191792,0.1890491,0.1864031,0.1840144,0.1819748,0.1802943,0.1789103,0.1777169,0.1766038,0.1754752,0.1742566,0.1728954,0.1713644,0.1696622,0.1678124,0.1658636,0.1638925,0.1619866,0.1602245,0.1586572,0.1572894,0.1560703,0.1549047,0.153672,0.1522565,0.1505778,0.1486136,0.1464117,0.1440806,0.1417605,0.1395862,0.1376608,0.1360256,0.1346542,0.1334761,0.1324109,0.1313713,0.1302763,0.1290683,0.127717,0.1262133,0.1245756,0.1228491,0.1210924,0.11937,0.1177471,0.1162924,0.1150454,0.1139954,0.1130803,0.1121986,0.1112198,0.1100398,0.1086191,0.1069921,0.1052645,0.1035727,0.1020433,0.1007667,0.0997778,0.0990535,0.0985275,0.0981095,0.0977073,0.097246,0.0966805,0.0960036,0.0952268,0.0943678,0.0934588,0.0925481,0.0916995,0.0909777,0.0904384,0.0901177,0.0900149,0.0900624,0.0901369,0.0900934,0.0898102,0.0892316,0.088385,0.0873733,0.086344,0.0854335,0.0847418,0.0843141,0.0841319,0.084125,0.0842025,0.084267,0.0842285,0.0840289,0.0836478,0.0830936,0.0823976,0.0816013,0.0807592,0.0799317,0.079173,0.0785253,0.0780269,0.077691,0.0774895,0.0773361,0.0770965,0.0766323,0.0758591,0.074789,0.0735338,0.0722474,0.0710847,0.0701596,0.0695149,0.0691277,0.0689368,0.0688818,0.0688687,0.0688022,0.0686072,0.0682346,0.06767,0.0669317,0.0660632,0.065124,0.0641787,0.0632947,0.0625328,0.0619352,0.0615171,0.0612602,0.061097,0.0609106,0.06056,0.0599233,0.0589457,0.0576683,0.0562267,0.0548063,0.0535751,0.0526233,0.0519583,0.0515218,0.0512158,0.0509407,0.0506135,0.0501704,0.0495728,0.0488086,0.0478895,0.0468491,0.0457372,0.0446088,0.0435173,0.0425094,0.0416176,0.0408537,0.040202,0.0396117,0.0389934,0.0382304,0.037201,0.0358267,0.0341033,0.0321162,0.0300269,0.0280326,0.0262958,0.0248911,0.0237947,0.0229129,0.0221256,0.0213175,0.020393,0.0192879,0.0179673,0.0164363,0.0147299,0.0129008,0.0110164,0.00915,0.0073759,0.0057552,0.0043211,0.0030723,0.0019672,0.0009216,-0.0001779,-0.0014499,-0.0029935,-0.00486,-0.0070127,-0.0093296,-0.0116369,-0.0137585,-0.0155748,-0.0170621,-0.0182835,-0.0193563,-0.0204089,-0.0215486,-0.0228463,-0.0243338,-0.0260129,-0.0278625,-0.0298413,-0.0318831,-0.033904,-0.0358264,-0.0376031,-0.0392126,-0.0406488,-0.0419354,-0.043149,-0.0443983,-0.045799,-0.0474457,-0.0493865,-0.0516035,-0.0540082,-0.0564613,-0.0588064,-0.060915,-0.0627202,-0.0642336,-0.0655337,-0.0667396,-0.0679681,-0.069305,-0.0707954,-0.0724497,-0.0742535,-0.0761632,-0.0781163,-0.0800401,-0.0818634,-0.0835319,-0.0850103,-0.0862912,-0.0874052,-0.0884203,-0.0894172,-0.0904855,-0.0917247,-0.0931945,-0.0948916,-0.096747,-0.0986359,-0.1004196,-0.101981,-0.1032525,-0.1042393,-0.1050068,-0.1056582,-0.1063049,-0.1070412,-0.1079291,-0.108992,-0.1102233,-0.1115963,-0.1130673,-0.1145712,-0.116038,-0.1174078,-0.1186385,-0.1197092,-0.1206214,-0.1214132,-0.1221645,-0.1229827,-0.1239743,-0.125225,-0.1267543,-0.1285004,-0.130345,-0.1321491,-0.1337774,-0.1351505,-0.1362576,-0.1371455,-0.1379013,-0.1386373,-0.1394616,-0.1404574,-0.1416736,-0.1431205,-0.1447616,-0.1465301,-0.1483473,-0.1501338,-0.1518189,-0.1533553,-0.154717,-0.1559051,-0.1569538,-0.157935,-0.1589578,-0.1601535,-0.1616323,-0.1634433,-0.1655472,-0.1678171,-0.1700663,-0.1721189,-0.1738599,-0.1752553,-0.1763551,-0.1772574,-0.1780733,-0.1789027,-0.1798247,-0.1809041,-0.182167,-0.183606,-0.1851811,-0.1868212,-0.1884571,-0.1900272,-0.191484,-0.1927989,-0.1939651,-0.1950026,-0.1959659,-0.1969471,-0.1980659,-0.1994452,-0.2011785,-0.2032793,-0.2056651,-0.2081797,-0.2106399,-0.2128751,-0.2147888,-0.2163788,-0.2177114,-0.2188886,-0.2200394,-0.2212703,-0.2226503,-0.2242155,-0.2259718,-0.2278782,-0.2298661,-0.2318579,-0.2337766,-0.2355599,-0.2371722,-0.2386029,-0.239863,-0.2409837,-0.2420238,-0.2430836,-0.244287,-0.2457435,-0.2475138,-0.2495733,-0.2518017,-0.2540196,-0.2560509,-0.2577829,-0.2591995,-0.2603725,-0.2614262,-0.2624907,-0.2636673,-0.2650159,-0.2665581,-0.2682859,-0.2701695,-0.2721646,-0.2742185,-0.2762755,-0.2782884,-0.2802241,-0.2820579,-0.2837722,-0.2853774,-0.286916,-0.2884667,-0.2901211,-0.291963,-0.2940538,-0.2963978,-0.2989217,-0.3014854,-0.303921,-0.3060844,-0.307906,-0.3094115,-0.3107027,-0.3119147,-0.3131697,-0.3145476,-0.3160813,-0.3177652,-0.3195678,-0.3214394,-0.3233227,-0.3251602,-0.3269045,-0.3285223,-0.3299973,-0.3313399,-0.3325863,-0.3337976,-0.3350546,-0.3364407,-0.3380307,-0.3398788,-0.3419916,-0.3443144,-0.3467302,-0.349083,-0.3512195,-0.3530323,-0.3544916,-0.355651,-0.3566229,-0.3575437,-0.3585352,-0.3596716,-0.3609688,-0.3624037,-0.3639285,-0.3654832,-0.3669942,-0.3683983,-0.3696466,-0.3707084,-0.3715774,-0.3722769,-0.3728686,-0.3734443,-0.3741105,-0.3749661,-0.3760741,-0.3774322,-0.3789774,-0.3805971,-0.3821493,-0.3834958,-0.3845495,-0.3852864,-0.3857517,-0.386048,-0.3863039,-0.3866447,-0.3871577,-0.3878778,-0.3887945,-0.3898635,-0.3910182,-0.3921788,-0.3932753,-0.39427,-0.3951447,-0.3959039,-0.3965794,-0.3972166,-0.3978659,-0.3985928,-0.3994896,-0.4006341,-0.4020576,-0.4037228,-0.4055239,-0.4073019,-0.4089052,-0.4102433,-0.4112839,-0.4120503,-0.4126295,-0.4131306,-0.4136615,-0.4143133,-0.4151323,-0.4161185,-0.4172365,-0.418433,-0.4196457,-0.4208198,-0.4219054,-0.4228663,-0.423696,-0.4244052,-0.4250175,-0.4255986,-0.426245,-0.427067,-0.4281631,-0.4295876,-0.4313289,-0.4332964,-0.4353249,-0.4372318,-0.4388743,-0.4401885,-0.4411958,-0.4419794,-0.4426496,-0.4433147,-0.4440748,-0.4449997,-0.4461165,-0.447412,-0.4488356,-0.4503134,-0.4517622,-0.4531064,-0.4542891,-0.4552823,-0.4561018,-0.4567942,-0.4574267,-0.4580789,-0.4588443,-0.4598172,-0.4610891,-0.4627038,-0.4646288,-0.4667525,-0.4688967,-0.470883,-0.4725908,-0.4739895,-0.475138,-0.4761522,-0.4771611,-0.478269,-0.4795393,-0.4810007,-0.4826439,-0.4844261,-0.4862798,-0.4881254,-0.4898845,-0.4915056,-0.4929688,-0.4942807,-0.4954739,-0.4966043,-0.4977421,-0.498971,-0.5003795,-0.5020461,-0.5040221,-0.5063123,-0.5088391,-0.5114566,-0.5139913,-0.5163054,-0.5183583,-0.5201838,-0.5218852,-0.5235906,-0.5253997,-0.5273721,-0.5295232,-0.5318268,-0.5342212,-0.5366206,-0.5389762,-0.5412737,-0.5434745,-0.5455377,-0.547448,-0.5492146,-0.5508652,-0.5524458,-0.5540247,-0.5556915,-0.5575438,-0.5596554,-0.5620512,-0.5646984,-0.5674937,-0.5702733,-0.572876,-0.5751977,-0.5772254,-0.5790313,-0.5807467,-0.582508,-0.5844159,-0.5865187,-0.5888108,-0.5912528,-0.5937856,-0.5963459,-0.5988747,-0.6013224,-0.6036359,-0.6057759,-0.6077516,-0.6096027,-0.6113859,-0.6131627,-0.6149991,-0.6169553,-0.6190735,-0.6213656,-0.6238178,-0.6263725,-0.6289261,-0.6313544,-0.6335491,-0.6354597,-0.6371172,-0.6386199,-0.6400958,-0.6416534,-0.643368,-0.6452608,-0.6473071,-0.6494566,-0.6516485,-0.6538131,-0.6558879,-0.6578232,-0.6595809,-0.66115,-0.6625569,-0.6638543,-0.6651129,-0.6664124,-0.6678307,-0.6694376,0.3287269,0.3266725,0.3244582,0.3221797,0.3199636,0.3179297,0.3161524,0.3146449,0.313356,0.3121713,0.3109565,0.3095988,0.3080358,0.3062677,0.3043597,0.3023998,0.3004701,0.298635,0.2969362,0.2953819,0.2939668,0.2926648,0.2914253,0.2901789,0.288839,0.2873116,0.2855196,0.2834238,0.2810342,0.2784038,0.2756301,0.2728592,0.270225,0.2678138,0.2656352,0.2636245,0.2616752,0.2596702,0.2575174,0.2551623,0.2526081,0.2499046,0.2471242,0.2443472,0.2416477,0.2390826,0.2366861,0.234464,0.2324159,0.2305264,0.2287737,0.2271038,0.2254025,0.2235507,0.2214646,0.2191088,0.2165172,0.2137919,0.2110759,0.2085244,0.2062419,0.2042442,0.2024714,0.2008174,0.1991599,0.1973862,0.1954194,0.1932272,0.1908222,0.1882774,0.1856878,0.1831458,0.1807277,0.1784787,0.1763851,0.1744106,0.1725108,0.1706249,0.1686814,0.1666113,0.1643476,0.1618352,0.1590428,0.15598,0.1527388,0.1494722,0.1463527,0.1435227,0.1410526,0.1388913,0.1369198,0.1349972,0.1329948,0.1308263,0.1284791,0.125989,0.1234005,0.1207695,0.1181604,0.1156384,0.1132536,0.1110319,0.1089727,0.1070604,0.1052568,0.1034963,0.1017025,0.0997942,0.0976828,0.0953127,0.0926727,0.0898134,0.0868494,0.0839407,0.0812412,0.0788644,0.0768378,0.075097,0.0735353,0.0720065,0.0703841,0.0685999,0.0666449,0.0645559,0.0623954,0.0602391,0.0581578,0.0562075,0.0544191,0.0527796,0.0512638,0.0498308,0.0484214,0.0469658,0.0453831,0.0436019,0.0415935,0.0393468,0.0368873,0.0342806,0.0316298,0.0290623,0.0266935,0.0246039,0.0228051,0.0212136,0.0196774,0.0180581,0.0162783,0.0143344,0.0122736,0.010166,0.008086,0.0060984,0.0042529,0.0025857,0.0011101,-0.0001959,-0.0013809,-0.0025135,-0.003673,-0.0049334,-0.0063484,-0.0079429,-0.0097268,-0.0116904,-0.0137874,-0.0159358,-0.0180284,-0.0199632,-0.0216792,-0.0231673,-0.0244761,-0.0256966,-0.0269617,-0.0283732,-0.0299634,-0.0316955,-0.0334904,-0.0352756,-0.0369936,-0.0386098,-0.0400911,-0.0414052,-0.0425646,-0.0435927,-0.0445264,-0.0454146,-0.0463042,-0.0472713,-0.0483912,-0.0497076,-0.0512149,-0.0528519,-0.0545367,-0.0561623,-0.0576233,-0.0588443,-0.0598026,-0.0605431,-0.0611792,-0.0618544,-0.0626957,-0.0637726,-0.0650757,-0.0665355,-0.0680628,-0.069579,-0.0710387,-0.0724027,-0.0736444,-0.074754,-0.075734,-0.0765984,-0.0774116,-0.0782635,-0.0792412,-0.0804197,-0.0818451,-0.0835223,-0.08541,-0.0874217,-0.0894475,-0.0913755,-0.0931224,-0.0946485,-0.0959762,-0.0971937,-0.0984211,-0.099781,-0.101359,-0.103181,-0.1052101,-0.1073639,-0.1095407,-0.1116517,-0.1136237,-0.1154128,-0.1170063,-0.1184209,-0.1196936,-0.1208781,-0.1220464,-0.1232772,-0.1246569,-0.1262598,-0.1281281,-0.1302574,-0.1325831,-0.1349704,-0.1372667,-0.13935,-0.1411585,-0.1427058,-0.1440925,-0.1454633,-0.1469507,-0.1486486,-0.1505938,-0.1527597,-0.1550775,-0.1574541,-0.1597948,-0.1620216,-0.1640838,-0.1659714,-0.1677059,-0.1693304,-0.1709028,-0.1724894,-0.1741627,-0.1759935,-0.1780415,-0.1803398,-0.1828764,-0.1855925,-0.188381,-0.1911108,-0.1936591,-0.1959465,-0.1979688,-0.1997965,-0.2015434,-0.2033287,-0.2052471,-0.2073396,-0.2095926,-0.2119529,-0.214349,-0.2167102,-0.218976,-0.2211047,-0.2230799,-0.2249007,-0.2266058,-0.2282622,-0.2299443,-0.2317127,-0.2336194,-0.2357125,-0.2380406,-0.2406275,-0.2434497,-0.2464269,-0.2494311,-0.2523157,-0.2549514,-0.2572687,-0.2592871,-0.2611342,-0.2629813,-0.2649741,-0.2671883,-0.2696222,-0.2722069,-0.2748509,-0.2774623,-0.2799625,-0.2822953,-0.2844355,-0.2863854,-0.2881725,-0.2898485,-0.2914976,-0.293198,-0.2950112,-0.2969871,-0.29916,-0.3015452,-0.3041313,-0.3068717,-0.3096839,-0.3124678,-0.3151231,-0.3175777,-0.319815,-0.3218939,-0.3239279,-0.3260353,-0.3282948,-0.3307186,-0.3332597,-0.3358353,-0.3383542,-0.3407238,-0.3428765,-0.3447955,-0.3465033,-0.3480476,-0.3494854,-0.350877,-0.3522891,-0.3537909,-0.3554566,-0.3573242,-0.3594006,-0.3616674,-0.3640796,-0.3665721,-0.3690641,-0.3714688,-0.3737141,-0.3757623,-0.3776403,-0.3794462,0.6186843,0.6166315,0.6143363,0.611817,0.6091567,0.606465,0.6038382,0.6013456,0.5990319,0.5968985,0.5949197,0.5930563,0.5912611,0.5894817,0.5876573,0.5857318,0.5836675,0.581456,0.579117,0.576684,0.5742079,0.5717553,0.5693912,0.5671681,0.5651266,0.5632548,0.5614803,0.5596883,0.5577597,0.5556131,0.5532291,0.5506575,0.5479908,0.5453355,0.5427959,0.540438,0.5382839,0.53631,0.5344724,0.5327163,0.5309724,0.529169,0.5272419,0.5251454,0.5228575,0.5203772,0.5177506,0.5150605,0.5124121,0.5098919,0.5075533,0.5054083,0.5034117,0.5014726,0.4994984,0.4973922,0.4950712,0.4924937,0.4896776,0.4867126,0.4837306,0.4808656,0.4782214,0.4758524,0.4737516,0.4718771,0.4701633,0.4685187,0.4668491,0.4650781,0.4631396,0.4609871,0.4586085,0.4560198,0.4532265,0.4503172,0.4474261,0.4446808,0.4421666,0.4398905,0.4377939,0.4357838,0.4337555,0.4316163,0.4292673,0.4266594,0.4238557,0.4209707,0.4181313,0.4154328,0.4129197,0.4105971,0.4084379,0.4064033,0.404446,0.4025132,0.4005531,0.3985199,0.3963749,0.3940829,0.3916288,0.3890231,0.3863098,0.3835681,0.3809135,0.3784485,0.3762221,0.3742124,0.3723286,0.3703996,0.3683056,0.3659878,0.3634436,0.3607184,0.3578964,0.3550775,0.3523544,0.3497942,0.3474302,0.3452608,0.3432543,0.3413552,0.3394983,0.3376167,0.3356444,0.3335258,0.3312212,0.3287171,0.3260363,0.3232294,0.3203761,0.3175738,0.3149157,0.3124616,0.3102125,0.3081194,0.3060899,0.3040257,0.3018516,0.2995499,0.2971617,0.294769,0.2924727,0.2903407,0.2884098,0.286686,0.2851451,0.2837354,0.2823931,0.2810628,0.2796881,0.278217,0.2766039,0.2748214,0.2728628,0.2707329,0.2684523,0.2660677,0.2636503,0.2612909,0.2590661,0.2570059,0.255088,0.2532615,0.2514199,0.2494684,0.2473679,0.2451519,0.2429089,0.2407422,0.2387377,0.2369489,0.2353956,0.2340761,0.2329681,0.2320304,0.2312048,0.2304198,0.2296005,0.2286824,0.2276281,0.2264308,0.2251032,0.2236564,0.2221212,0.2205693,0.2190862,0.2177499,0.2166085,0.2156574,0.214824,0.2139664,0.2129306,0.2116212,0.2100267,0.2082232,0.20635,0.2045433,0.202887,0.2014288,0.2001928,0.1991569,0.198265,0.1974502,0.196648,0.195797,0.194837,0.1937237,0.1924422,0.1910109,0.1894901,0.1879684,0.1865041,0.1851304,0.1838755,0.1827663,0.1818012,0.18094,0.1800969,0.1791559,0.177997,0.1765549,0.1748489,0.1729686,0.1710324,0.1691515,0.167418,0.1658761,0.1645254,0.163332,0.1622407,0.1611932,0.160132,0.1590025,0.1577508,0.1563172,0.1546848,0.1528708,0.1509195,0.1488894,0.146866,0.1449284,0.1431206,0.1414454,0.1398613,0.138288,0.1366215,0.1347566,0.1326277,0.1302365,0.1276561,0.1249946,0.1223692,0.1198767,0.1175861,0.1155196,0.1136592,0.1119591,0.1103618,0.108813,0.1072563,0.105619,0.1038399,0.1018815,0.0997336,0.0974127,0.0949595,0.0924457,0.0899754,0.0876314,0.0854615,0.0834527,0.0815472,0.0796651,0.0777177,0.075616,0.0733199,0.0708523,0.0682878,0.0657268,0.0632638,0.0609639,0.058869,0.056985,0.0552853,0.0537206,0.0522372,0.0507875,0.0493195,0.0477564,0.0460361,0.0441356,0.0420612,0.0398509,0.0375686,0.0352949,0.0330995,0.0310417,0.0291148,0.027254,0.0253612,0.0233402,0.0211259,0.0187028,0.0160843,0.0133268,0.0105304,0.0078106,0.005265,0.0029487,0.0008511,-0.0010784,-0.0029105,-0.0047132,-0.0065468,-0.0084613,-0.0104936,-0.0126651,-0.014988,-0.0174559,-0.02004,-0.0226776,-0.0252876,-0.0277914,-0.0301384,-0.0323031,-0.0343326,-0.0363381,-0.0384519,-0.0407821,-0.0433747,-0.0461838,-0.0491132,-0.0520558,-0.0549122,-0.0576073,-0.0600987,-0.0623847,-0.0644921,-0.0664733,-0.0683857,-0.0702933,-0.0722545,-0.0743159,-0.0765077,-0.0788375,-0.0812901,-0.0838362,-0.0864346,-0.0890351,-0.0915728,-0.0939872,-0.0962268,-0.0982691,-0.1001823,-0.102097,-0.1041315,-0.1063573,-0.108783,-0.1113528,-0.1139713,-0.116538,-0.1189669,-0.1212127,-0.123271,-0.1251688,-0.126958,-0.1287025,-0.1304697,-0.1323195,-0.1342986,-0.1364353,-0.1387373,-0.141189,-0.1437619,-0.146414,-0.1490865,-0.1517153,-0.15424,-0.1566207,-0.1588674,-0.1610333,-0.1632161,-0.1655405,-0.1681102,-0.1709677,-0.1740621,-0.1772519,-0.1803886,-0.1833518,-0.1860804,-0.1885686,-0.1908501,-0.1929885,-0.1950709,-0.1971593,-0.199305,-0.2015446,-0.2039,-0.2063735,-0.2089558,-0.2116476,-0.2144125,-0.2171919,-0.2199072,-0.2224955,-0.2249148,-0.2271555,-0.2292539,-0.2312884,-0.2333678,-0.2356092,-0.2380939,-0.2408349,-0.2437673,-0.2467682,-0.249697,-0.2524493,-0.2549883,-0.2573242,-0.2595027,-0.261579,-0.2635778,-0.265553,-0.2675636,-0.2696777,-0.2719472,-0.274396,-0.277019,-0.2797781,-0.2826109,-0.2854498,-0.2882332,-0.2909033,-0.2934245,-0.2958238,-0.2982162,-0.3007007,-0.3033697,-0.3062892,-0.3094879,-0.3129254,-0.3164952,-0.3200557,-0.3234755,-0.3266717,-0.329613,-0.3323322,-0.3348972,-0.3373814,-0.3398416,-0.3423232,-0.3448638,-0.3475046,-0.35027,-0.353159,-0.3561467,-0.3591813,-0.3621965,-0.3651257,-0.3679179,-0.3705484,-0.3730281,-0.3754104,-0.377789,-0.3802685,-0.3829396,-0.3858635,-0.3890481,-0.3924448,-0.3959547,-0.3994345,-0.4027424,-0.4057962,-0.4085756,-0.4111119,-0.4134665,-0.4157167,-0.4179575,-0.4202549,-0.4226507,-0.4251694,-0.4278102,-0.4305487,-0.4333374,-0.4361019,-0.4387743,-0.4412974,-0.4436401,-0.4458075,-0.4478448,-0.4498324,-0.4518697,-0.4540569,-0.4564552,-0.4590606,-0.4618152,-0.4646212,-0.4673761,-0.4700135,-0.4724669,-0.4747057,-0.4767546,-0.4786754,-0.4805461,-0.4824415,-0.4844096,-0.4864697,-0.4886161,-0.4908549,-0.4931717,-0.4955335,-0.49789,-0.5001684,-0.5023018,-0.5042647,-0.5060482,-0.5076691,-0.5091986,-0.5107371,-0.5123914,-0.5142322,-0.5162628,-0.5184294,-0.5206391,-0.5227886,-0.5247969,-0.5266224,-0.528258,-0.5297321,-0.5310984,-0.5324169,-0.533742,-0.5351187,-0.5365792,-0.5381442,-0.5398207,-0.5416046,-0.5434616,-0.5453415,-0.5471886,-0.5489465,-0.550572,-0.55204,-0.5533529,-0.5545543,-0.555725,0.4430344,0.4416625,0.4401134,0.4384007,0.4366085,0.43485,0.4332235,0.4317828,0.4305427,0.4294865,0.4285566,0.4276965,0.4268543,0.4259842,0.4250348,0.4239607,0.4227467,0.421406,0.4199607,0.4184432,0.416894,0.415354,0.4138637,0.4124529,0.411132,0.4098802,0.4086434,0.4073562,0.4059385,0.4043069,0.4024366,0.4003782,0.3982373,0.3961415,0.3941947,0.3924553,0.3908971,0.3895037,0.3882306,0.3870284,0.3858402,0.3846017,0.3832055,0.3816134,0.3798581,0.3779985,0.3760882,0.374177,0.372309,0.3705106,0.3687871,0.367141,0.3655529,0.3639738,0.3623317,0.3605467,0.3585391,0.3562469,0.3536833,0.3509574,0.348236,0.3456907,0.3434429,0.3415198,0.3398593,0.3383828,0.3370057,0.335635,0.334189,0.3326051,0.3308498,0.3289365,0.3268989,0.3247839,0.3226458,0.320544,0.3185331,0.316647,0.3148812,0.3132056,0.3115789,0.3099439,0.3082308,0.3063743,0.3043123,0.3019925,0.299455,0.2968051,0.2941798,0.2916956,0.2894126,0.2873331,0.2854181,0.2836059,0.2818319,0.2800243,0.2781248,0.2760933,0.2739097,0.2715849,0.2691516,0.2666587,0.2641685,0.2617408,0.2594234,0.2572328,0.2551327,0.2530889,0.2510471,0.2489181,0.2466139,0.2440706,0.2412529,0.238187,0.234992,0.231821,0.2287981,0.2260072,0.223479,0.2211785,0.2190228,0.2169251,0.2148113,0.2126294,0.2103711,0.2080561,0.2057002,0.2032799,0.2007862,0.1982738,0.1957968,0.1933985,0.1911089,0.1889266,0.1868191,0.1847416,0.182622,0.1803777,0.1779326,0.1752521,0.1723552,0.1693242,0.1662758,0.163328,0.1605601,0.1580102,0.1556704,0.1534892,0.1513892,0.1492944,0.1471484,0.1449172,0.142585,0.1401601,0.1376307,0.1349978,0.1322962,0.1295952,0.1269388,0.1243567,0.1218813,0.1195091,0.117191,0.1148579,0.1124318,0.1098465,0.1070747,0.1041381,0.1011014,0.0980716,0.0951553,0.0924337,0.0899485,0.0876954,0.0856257,0.0836578,0.0816986,0.0796729,0.0775299,0.0752427,0.0728075,0.0702411,0.0675778,0.0648692,0.0621558,0.0594726,0.0568488,0.0543011,0.051827,0.0494017,0.0469942,0.0445533,0.0420196,0.039332,0.0364782,0.0335061,0.030505,0.0275765,0.0248034,0.0222263,0.0198484,0.0176386,0.0155467,0.0135074,0.0114408,0.0092966,0.0070474,0.0046771,0.0021837,-0.0004216,-0.0031197,-0.0058615,-0.0085826,-0.0112397,-0.0138048,-0.0162715,-0.018656,-0.0210088,-0.0234136,-0.0259626,-0.0287354,-0.031765,-0.0350151,-0.0383829,-0.0417341,-0.0449303,-0.0478711,-0.050527,-0.0529449,-0.0552091,-0.0574115,-0.05964,-0.0619513,-0.0643872,-0.0669683,-0.0696796,-0.0724823,-0.0753204,-0.0781348,-0.0808817,-0.0835278,-0.0860526,-0.088452,-0.0907399,-0.0929523,-0.0951549,-0.0974399,-0.099894,-0.1025771,-0.1055128,-0.1086612,-0.111926,-0.1151866,-0.1183238,-0.1212674,-0.1240124,-0.1266093,-0.1291262,-0.1316214,-0.1341445,-0.1367305,-0.1394002,-0.1421586,-0.1449934,-0.147876,-0.150767,-0.1536279,-0.1564138,-0.1590791,-0.1616193,-0.1640443,-0.1663801,-0.1686707,-0.1709852,-0.1734162,-0.1760452,-0.1789181,-0.182027,-0.1853049,-0.1886449,-0.1919366,-0.1950817,-0.1980362,-0.2008204,-0.2034946,-0.2061265,-0.2087657,-0.2114587,-0.214252,-0.2171371,-0.2200814,-0.2230509,-0.2260076,-0.2289119,-0.231745,-0.234524,-0.2372566,-0.2399153,-0.2425024,-0.2450465,-0.24759,-0.2502161,-0.2530331,-0.2560973,-0.2593856,-0.2628282,-0.2663126,-0.2697036,-0.2728847,-0.275806,-0.2784756,-0.2809614,-0.2833478,-0.285709,-0.2880941,-0.2905176,-0.2929733,-0.2954742,-0.2980295,-0.3006189,-0.3032096,-0.3057649,-0.3082523,-0.3106405,-0.3129153,-0.3150937,-0.3172137,-0.3193379,-0.3215384,-0.323878,-0.3263859,-0.3290617,-0.3318674,-0.3347288,-0.3375521,-0.3402444,-0.3427338,-0.344988,-0.3470334,-0.3489402,-0.3507954,-0.3526776,-0.3546384,-0.3566962,-0.358835,-0.3610428,-0.3632887,-0.3655298,-0.3677212,-0.3698227,-0.371806,-0.3736696,-0.3754346,-0.3771309,-0.3788121,-0.380548,-0.3824039,-0.3844198,-0.3865856,-0.3888592,-0.3911811,-0.3934731,-0.3956458,-0.3976294,-0.3993976,0.5990185,0.5975637,0.5961716,0.5947781,0.593337,0.591826,0.5902477,0.5886246,0.5869904,0.5853763,0.5838058,0.5822942,0.5808475,0.5794578,0.5781177,0.5768332,0.5755806,0.5743033,0.5729157,0.5713412,0.5695358,0.5674918,0.5652846,0.5630399,0.5608798,0.5588908,0.5571087,0.5555179,0.5540545,0.5526264,0.5511747,0.5496475,0.548012,0.5462578,0.5443936,0.5424372,0.5404298,0.53844,0.5365189,0.5347011,0.5330063,0.5314366,0.5299553,0.5285022,0.5270059,0.525385,0.5235705,0.521524,0.5192489,0.5167832,0.5142149,0.5116703,0.5092663,0.5070722,0.5051027,0.5033278,0.501685,0.5001039,0.4985113,0.4968504,0.4950862,0.4932055,0.4912145,0.4891406,0.4870368,0.4849557,0.4829371,0.4810031,0.4791552,0.477379,0.4756535,0.4739244,0.4721163,0.4701492,0.4679557,0.4655068,0.462829,0.4600106,0.4571826,0.4544741,0.4519681,0.4496804,0.4475633,0.4455301,0.4435048,0.4414416,0.4392987,0.4370611,0.4347353,0.4323449,0.4299285,0.427536,0.4251922,0.4229103,0.420699,0.4185515,0.4164438,0.4143376,0.4121909,0.409981,0.4076597,0.4051655,0.4024492,0.3994976,0.3963437,0.3930624,0.3897978,0.3866855,0.3838031,0.3811575,0.3786961,0.3763349,0.3739807,0.3715587,0.3690408,0.3664285,0.3637384,0.3609955,0.3582323,0.3554897,0.3528084,0.3502161,0.3477295,0.3453524,0.3430718,0.3408582,0.3386784,0.3364745,0.3341635,0.3316771,0.3289775,0.3260707,0.3230121,0.3199071,0.3168796,0.3140237,0.3113834,0.3089432,0.3066415,0.304401,0.3021559,0.2998598,0.2974962,0.2950715,0.2926053,0.2901235,0.2876565,0.2852402,0.282913,0.2806942,0.2785924,0.2766075,0.2747344,0.2729405,0.2711283,0.2692428,0.2672212,0.2650174,0.2626176,0.2600421,0.2573449,0.2546283,0.2519848,0.2494757,0.2471156,0.2448725,0.2426749,0.2404409,0.2380978,0.2356301,0.2330724,0.2304602,0.2278228,0.22518,0.2225574,0.2200225,0.2175947,0.2152673,0.2130357,0.2108811,0.2087679,0.2066455,0.2044494,0.2020894,0.1995435,0.1968395,0.1940403,0.1912336,0.1885117,0.1859406,0.1835463,0.1813334,0.1792665,0.1772733,0.1752801,0.173229,0.1710519,0.1687408,0.1663658,0.1640207,0.1617294,0.1594777,0.1572902,0.1552151,0.1532257,0.1512705,0.1493427,0.1474119,0.1454428,0.1433648,0.1410917,0.1386059,0.1359379,0.1331459,0.130321,0.1275623,0.1249623,0.1225673,0.1203668,0.1183269,0.1163889,0.1144735,0.1124977,0.1104163,0.1082248,0.1059411,0.1036053,0.101252,0.0989085,0.0966064,0.0943771,0.0922366,0.0901651,0.088141,0.0861291,0.0840696,0.0818968,0.0795445,0.0769417,0.0740594,0.0709249,0.0676152,0.0642437,0.0609322,0.0577721,0.0548009,0.052021,0.0494063,0.0468998,0.0444237,0.0419203,0.0393562,0.0367168,0.0340318,0.031368,0.0287787,0.0262819,0.023883,0.0215743,0.0193382,0.0171803,0.0150687,0.0129578,0.0107898,0.0085017,0.0060326,0.0033326,0.0003951,-0.0027528,-0.0060085,-0.0092338,-0.0123005,-0.0151352,-0.0177557,-0.0202212,-0.0226033,-0.0249792,-0.0274009,-0.0298777,-0.0324025,-0.0349784,-0.0375941,-0.0402229,-0.0428327,-0.045389,-0.0478582,-0.0502217,-0.0524809,-0.0546494,-0.0567577,-0.0588686,-0.0610478,-0.0633557,-0.0658343,-0.0684906,-0.0713396,-0.0743697,-0.0775084,-0.0806353,-0.0836264,-0.0864073,-0.0889898,-0.0914571,-0.0938998,-0.0963773,-0.0989145,-0.1015037,-0.104123,-0.106757,-0.1093819,-0.1119588,-0.1144616,-0.1168773,-0.1191952,-0.1214243,-0.1236067,-0.1257671,-0.1279154,-0.1301026,-0.1323697,-0.1347483,-0.1372549,-0.1398905,-0.1426306,-0.1454086,-0.1481382,-0.1507337,-0.1531383,-0.1553358,-0.1573549,-0.1592761,-0.1611673,-0.1630773,-0.1650279,-0.16702,-0.1690379,-0.1710442,-0.1729976,-0.174868,-0.1766371,-0.1782956,-0.1798427,-0.1812966,-0.1826909,-0.1840773,-0.1855233,-0.187079,-0.1887757,-0.1906291,-0.1926287,-0.1947255,-0.1968617,-0.1989689,-0.2009705,-0.2027975,-0.2044114,-0.2058245,-0.2071052,-0.2083252,-0.2095464,-0.210811,-0.2121237,-0.2134642,-0.2147855,-0.2160255,0.7828082,0.7816948,0.7806488,0.7796762,0.7787678,0.7779008,0.777042,0.7761269,0.7750713,0.77383,0.7723872,0.7707525,0.7689641,0.7670763,0.7651577,0.7632529,0.7614265,0.7597296,0.7581855,0.7567854,0.7554865,0.7542063,0.752862,0.751417,0.7498953,0.748342,0.7468087,0.7453372,0.7439238,0.7425514,0.7412384,0.7400014,0.7388424,0.7377339,0.7365951,0.7353724,0.7340318,0.7325507,0.7309342,0.7292151,0.7274541,0.7256869,0.7239762,0.7223899,0.720961,0.7196705,0.7184551,0.7172416,0.7159852,0.7146378,0.7131693,0.7115746,0.7098746,0.7081107,0.7063317,0.7045914,0.7029326,0.7013361,0.6997984,0.6983162,0.6968772,0.6954521,0.6939716,0.6923631,0.6905735,0.6885644,0.686332,0.6839186,0.6814046,0.6788732,0.6763418,0.6738878,0.6715408,0.6692849,0.6670736,0.6648511,0.6625725,0.6601945,0.6576908,0.6550959,0.6524687,0.6498701,0.6473484,0.6449155,0.6425961,0.6404065,0.6383335,0.6363453,0.6344016,0.6324594,0.6304804,0.6284105,0.6261918,0.6237889,0.6211997,0.618448,0.6155946,0.6127409,0.6100006,0.6074333,0.6050234,0.6027112,0.6004232,0.5980975,0.595701,0.5932321,0.5907099,0.588172,0.5856701,0.5832603,0.5809877,0.5788545,0.5768208,0.5748499,0.5729144,0.5709798,0.5690059,0.5669492,0.5647738,0.5624574,0.5599731,0.5573087,0.5544841,0.5515527,0.548593,0.5456952,0.5429449,0.5403718,0.5379486,0.5356118,0.5333011,0.5309721,0.5285816,0.5261263,0.5236269,0.5211174,0.5186322,0.516198,0.5138343,0.5115572,0.5093764,0.5072843,0.5052543,0.5032403,0.5011883,0.4990442,0.4967604,0.4943193,0.4917307,0.4890234,0.4862459,0.4834702,0.480765,0.4781404,0.4756193,0.4732132,0.4708899,0.4685903,0.4662502,0.4638366,0.4613606,0.4588546,0.4563483,0.4538633,0.4514138,0.449006,0.4466493,0.4443806,0.4421671,0.4399627,0.4377129,0.4353692,0.4328874,0.4302438,0.4274789,0.424608,0.4216345,0.4185854,0.4155082,0.4124614,0.4095021,0.4066632,0.4039529,0.4013043,0.3986491,0.3959276,0.3931001,0.3901666,0.3871708,0.3841882,0.3812807,0.3784954,0.3758621,0.3733949,0.3710891,0.3689025,0.3667889,0.3647093,0.3626176,0.3604763,0.3582567,0.3559272,0.3534438,0.3508212,0.3480862,0.3452757,0.3424317,0.3396028,0.33683,0.3341176,0.3314459,0.3287946,0.3261127,0.32336,0.3205283,0.3176469,0.3147631,0.3119017,0.3090793,0.3063308,0.3036805,0.301151,0.2987599,0.2964983,0.2943054,0.2921404,0.2899663,0.2877325,0.2853938,0.282913,0.2802628,0.2774799,0.2746362,0.2717975,0.2690233,0.2663524,0.2637923,0.2613197,0.2588796,0.2563958,0.2538128,0.2511009,0.2482645,0.2453301,0.2423251,0.2392805,0.2362266,0.2332169,0.2302998,0.227505,0.2248338,0.2222117,0.2195679,0.2168685,0.2140958,0.2112347,0.208285,0.2052443,0.2020844,0.1988277,0.1955321,0.1922774,0.1891378,0.1861864,0.1834601,0.1809203,0.1784467,0.1759342,0.1733294,0.170615,0.1678022,0.164925,0.1620219,0.1591405,0.1563216,0.1535869,0.1509456,0.1483955,0.1459296,0.1435097,0.141067,0.13856,0.1359758,0.1333045,0.1305074,0.1275598,0.1244682,0.1213149,0.1181689,0.1150813,0.112089,0.1092159,0.1064526,0.1037781,0.1011288,0.098434,0.09567,0.0928311,0.0899312,0.087001,0.0840992,0.0812882,0.0786053,0.0760632,0.0736525,0.0713176,0.0689921,0.066629,0.0642069,0.0617191,0.0591652,0.0565375,0.0537971,0.0509247,0.0479392,0.0449017,0.0418998,0.0389796,0.0361562,0.033443,0.0308229,0.0282596,0.02571,0.0231487,0.0205781,0.0180277,0.0155359,0.0131413,0.0108654,0.0086809,0.0065787,0.0045674,0.0026276,0.0007323,-0.0011487,-0.0030485,-0.0050121,-0.0070748,-0.0092509,-0.0115255,-0.0138825,-0.0163001,-0.01876,-0.0212062,-0.0235769,-0.0258359,-0.0279783,-0.0300339,-0.032071,-0.0341516,-0.0362765,-0.0384683,-0.0407114,-0.0429584,-0.0451597,-0.0472715,-0.0492537,-0.0510676,-0.0526813,-0.0540981,-0.0553664,-0.0565354,-0.0576606,-0.0588091,-0.0600394,-0.0613917,-0.0628872,-0.0645251,-0.0662587,-0.0680235,-0.0697635,-0.0714495,-0.0730568,-0.074575,-0.0760209,-0.0774363,-0.0788799,-0.0803969,-0.0820014,-0.0837021,-0.0854591,-0.0872056,-0.0888714,-0.0904058,-0.0917836,-0.0930026,-0.094069,-0.0950105,-0.0958701,-0.0966902,-0.0975113,-0.0983707,-0.0992967,-0.100317,-0.1014557,-0.1027257,-0.1041051,-0.1055445,-0.1069766,-0.1083619,-0.109693,-0.1109925,-0.1122978,-0.113651,-0.1150949,-0.1166571,-0.1183382,-0.1200986,-0.1218818,-0.1236285,-0.1252946,-0.1268616,-0.128329,-0.1297034,-0.131018,-0.1323166,-0.1336363,-0.13501,-0.1364616,-0.1380001,-0.1396474,-0.1414427,-0.1433929,-0.1454562,-0.1475907,-0.1497025,-0.151767,-0.1537825,-0.155761,-0.1577216,-0.1596961,-0.161722,-0.1638283,-0.1660213,-0.1683026,-0.170648,-0.1729895,-0.1752585,-0.177414,-0.1794443,-0.181366,-0.1832176,-0.1850412,-0.1868687,-0.1887218,-0.1906193,-0.1925891,-0.1947023,-0.1969881,-0.1994366,-0.2020188,-0.2046866,-0.2073775,-0.2100231,-0.212559,-0.2149787,-0.2173141,-0.2196192,-0.221955,-0.2243687,-0.2268776,-0.2294574,-0.2320954,-0.2347708,-0.2374407,-0.240043,-0.2425135,-0.244822,-0.2469939,-0.2490414,-0.2509918,-0.252903,-0.2548219,-0.2567959,-0.2588641,-0.2610238,-0.2632644,-0.2656077,-0.2680386,-0.2705055,-0.2729679,-0.2753936,-0.2777586,-0.2800523,-0.2823049,-0.2845797,-0.2869368,-0.2894183,-0.2920392,-0.2947807,-0.2975545,-0.3002774,-0.3029022,-0.3054005,-0.3077733,-0.310036,-0.3121937,-0.3142428,-0.316222,-0.3181944,-0.3202274,-0.3223708,-0.3246674,-0.3271583,-0.329808,-0.3325595,-0.3353931,-0.3382679,-0.3411343,-0.3439494,-0.3466817,-0.3493417,-0.35197,-0.3546147,-0.3573134,-0.3600737,-0.3628803,-0.3656985,-0.3684625,-0.3711247,-0.3736763,-0.3761239,-0.3784583,-0.3806842,-0.3828188,-0.3849094,-0.3870088,-0.3891632,-0.3913948,-0.3937165,-0.3961442,-0.398692,-0.4013127,-0.4039583,-0.4066096,-0.4092631,-0.4118885,-0.4144606,-0.4169594,-0.4194037,-0.4218557,-0.4243949,-0.4270595,-0.4298165,-0.4325997,-0.4353333,-0.4379477,-0.4403901,-0.44263,0.5553381,0.5534944,0.5517992,0.550206,0.5486631,0.5471089,0.5454779,0.5437316,0.5418755,0.539943,0.5379673,0.5359725,0.5339726,0.5319804,0.530013,0.528088,0.526229,0.5244515,0.5226989,0.5208792,0.5189339,0.5168597,0.5147137,0.5125848,0.5105299,0.5085928,0.5067925,0.5051359,0.5036084,0.5021784,0.5008009,0.4994155,0.4979681,0.4964208,0.494762,0.4929956,0.4911211,0.489132,0.4870428,0.4848987,0.482754,0.4806519,0.4786158,0.4766457,0.4747175,0.4727885,0.470792,0.4686584,0.4663518,0.4638862,0.4613195,0.4587349,0.4562143,0.4538494,0.4517087,0.4497502,0.4479036,0.4461114,0.4443382,0.4425528,0.4406913,0.4387057,0.4365778,0.4342979,0.4318814,0.4293611,0.4267764,0.4241632,0.4215571,0.4189851,0.41647,0.414046,0.411739,0.4095313,0.4073478,0.4051182,0.4028083,0.4004215,0.3979874,0.3955474,0.3931505,0.3908551,0.388694,0.3866585,0.3847127,0.382824,0.3809589,0.3790803,0.3771458,0.3751251,0.3729993,0.3707549,0.3683841,0.3659126,0.363408,0.360906,0.3584323,0.3560166,0.3536714,0.3513871,0.3491239,0.346821,0.344432,0.3419432,0.3393788,0.33679,0.3342315,0.3317509,0.3293774,0.3271575,0.3250906,0.323129,0.3212178,0.3193276,0.3174268,0.3154769,0.3134548,0.311326,0.3090746,0.3067064,0.3042345,0.301677,0.2990579,0.2964328,0.2938689,0.2914006,0.2890235,0.2866951,0.2843544,0.2819452,0.2794431,0.2768435,0.2741764,0.2715041,0.2688926,0.2663945,0.2640366,0.2618457,0.2598228,0.2579363,0.2561515,0.2544426,0.2527779,0.2511043,0.2493864,0.2476085,0.2457585,0.2438432,0.241887,0.2399222,0.2379783,0.2361027,0.2343212,0.2326284,0.2309813,0.2293165,0.2275744,0.2257416,0.2238195,0.2218214,0.2197709,0.2177121,0.2157101,0.2138193,0.2120713,0.2104772,0.2090346,0.2077289,0.2064991,0.2053008,0.2040908,0.202823,0.2014711,0.2000309,0.1985095,0.1969371,0.1953555,0.1938048,0.1922978,0.1908662,0.1895376,0.1883021,0.1871231,0.1859428,0.1846937,0.1833258,0.1818755,0.1804146,0.1790032,0.1776801,0.1764665,0.1753664,0.1743645,0.1734528,0.1726149,0.1718045,0.1709772,0.1701042,0.169168,0.1681534,0.1670477,0.1658649,0.16462,0.1633291,0.1620086,0.1606733,0.1593354,0.1580314,0.1567874,0.1555672,0.1543026,0.1529259,0.1513918,0.1497036,0.1479393,0.146209,0.1446155,0.1432136,0.1420075,0.1409837,0.1401228,0.1393771,0.138689,0.1380241,0.1373322,0.1365818,0.1357582,0.1348501,0.13385,0.1327615,0.13161,0.1304361,0.1292676,0.1281213,0.126996,0.1258803,0.12477,0.1236368,0.1224232,0.1210791,0.1195767,0.1178911,0.1160953,0.1142946,0.1125866,0.1110413,0.1096856,0.1085114,0.1074671,0.1065076,0.1055784,0.1046417,0.103643,0.1025249,0.1012314,0.0997242,0.0980469,0.0962723,0.0944589,0.0926528,0.0909019,0.0892383,0.0876431,0.0860741,0.0844755,0.0828034,0.0809871,0.0789795,0.076779,0.0744444,0.0720829,0.0697956,0.0676458,0.0656445,0.0637659,0.0619827,0.0603253,0.0587507,0.0571969,0.0556067,0.0539545,0.0522181,0.050382,0.0484386,0.0464059,0.044316,0.0421999,0.0400875,0.0380132,0.0360037,0.0340624,0.0321726,0.030266,0.028252,0.0261083,0.0238508,0.0214968,0.0190539,0.0166016,0.0142352,0.0120147,0.0099646,0.0080741,0.0063202,0.0046654,0.0030466,0.0014163,-0.0002777,-0.0020786,-0.0040085,-0.0060689,-0.008206,-0.0103849,-0.0125685,-0.0147032,-0.0167827,-0.0188233,-0.0208473,-0.0228194,-0.0247003,-0.0265416,-0.0284573,-0.0304782,-0.0325867,-0.0347445,-0.0369057,-0.0390046,-0.0409841,-0.0428295,-0.0445618,-0.0462106,-0.0478131,-0.0493884,-0.0509622,-0.052562,-0.0542071,-0.0558969,-0.057616,-0.0593581,-0.0611403,-0.062949,-0.0647421,-0.0664897,-0.0681809,-0.0698272,-0.0714594,-0.073121,-0.0748508,-0.076691,-0.0786593,-0.0807338,-0.082875,-0.0850428,-0.0872006,-0.0892861,-0.0912532,-0.0931075,-0.094885,-0.0966076,-0.0982904,-0.0999651,-0.1016658,-0.1034186,-0.105237,-0.1071226,-0.1090661,-0.1110512,-0.1130557,-0.1150581,-0.1170319,-0.1189581,-0.1208347,-0.1226749,-0.1245146,-0.1264,-0.1283659,-0.1304368,-0.1325975,-0.1348138,-0.1370494,-0.1392514,-0.141366,-0.1433471,-0.1451668,-0.1468247,-0.1483532,-0.1497967,-0.1512093,-0.152653,-0.1541314,-0.155622,-0.1571475,-0.1587287,-0.1603672,-0.1620262,-0.1636298,-0.165168,-0.1666504,-0.1680369,-0.1693336,-0.1705952,-0.1719,-0.1733424,-0.174968,-0.176787,-0.1787522,-0.180791,-0.182864,-0.1849271,-0.1868723,-0.1886698,-0.1903522,-0.1919447,-0.1934743,-0.194997,-0.1965527,-0.1981618,-0.1998497,-0.2016268,-0.2035013,-0.2054582,-0.207478,-0.2095095,-0.2115223,-0.2135294,-0.2155407,-0.217558,-0.2195834,-0.221634,-0.2237503,-0.2259882,-0.2284112,-0.2310396,-0.2338331,-0.2366991,-0.2395423,-0.2422852,-0.2448825,-0.2473458,-0.2497197,-0.252055,-0.25439,-0.2567458,-0.2591432,-0.2615951,-0.2640649,-0.2665626,-0.2691026,-0.2716693,-0.2742424,-0.2767962,-0.2793057,-0.281762,-0.2841784,-0.2865709,-0.2889647,-0.2913975,-0.2939051,-0.2965198,-0.2992692,-0.3021528,-0.3051171,-0.3080744,-0.3109362,-0.3136422,-0.3161913,-0.318598,-0.3208944,-0.3231169,-0.3253044,-0.327488,-0.3296958,-0.3319695,-0.334289,-0.3366278,-0.3389875,-0.3413501,-0.3436717,-0.3459188,-0.3480843,-0.3501723,-0.3521929,-0.3541595,-0.3561048,-0.3580807,-0.3601381,-0.3623117,-0.3645931,-0.3669814,-0.3694589,-0.3719686,-0.3744424,-0.3768386,-0.3790949,-0.3812183,-0.3832626,-0.3852517,-0.3872099,-0.38916,-0.3911138,-0.3930742,-0.395051,-0.3970623,-0.3991128,-0.4011895,-0.4032802,-0.4053694,-0.4074241,-0.4094298,-0.411403,-0.4133726,-0.4153782,-0.4174706,-0.4196937,-0.4220656,-0.4245565,-0.4270949,-0.4296056,-0.4320266,-0.4342935,-0.4363645,-0.4382208,-0.4398905,-0.4414427,-0.4429275,-0.4443875,-0.445862,-0.4473806,-0.4489519,-0.4505566,-0.452166,-0.4537514,-0.4552812,-0.4567293,-0.4580743,-0.4592732,-0.460338,-0.4613266,-0.4623049,-0.4633426,-0.4644833,-0.4657345,-0.467072,-0.4684463,-0.4697853,-0.4710269,-0.4721316,0.5269236,0.526139,0.5254983,0.5249531,0.5244356,0.523883,0.5232492,0.5225173,0.5216922,0.5207873,0.519809,0.5187707,0.5176817,0.5165658,0.5154562,0.5143918,0.5133608,0.5122969,0.511135,0.5098275,0.5083312,0.506638,0.5047805,0.5028144,0.50079,0.4988165,0.4969652,0.495272,0.4937358,0.4923389,0.491054,0.4898233,0.4885913,0.4873355,0.486047,0.4847095,0.483323,0.4818957,0.4804334,0.4789555,0.4775006,0.4761043,0.474784,0.473537,0.4723506,0.4711897,0.4699859,0.4686625,0.467175,0.4655219,0.4637224,0.4618247,0.4599392,0.4581614,0.4565386,0.4550772,0.4537317,0.4524321,0.4511302,0.4498197,0.4484871,0.4471125,0.4456704,0.4441507,0.4425693,0.4409545,0.4393457,0.4377658,0.4362196,0.4347107,0.4332734,0.4319137,0.4305371,0.4290774,0.4274996,0.425767,0.423826,0.4216595,0.4193088,0.4168678,0.4144588,0.4121876,0.4101005,0.4081801,0.4063799,0.4046428,0.4029168,0.4011461,0.3992888,0.3973592,0.3953796,0.3933788,0.3913669,0.389308,0.3872364,0.3852082,0.3832509,0.3813641,0.3795235,0.3776895,0.3758098,0.3738432,0.371759,0.3695265,0.3671336,0.3646118,0.3620219,0.3594329,0.3569255,0.3545724,0.3524023,0.3503942,0.3485089,0.346704,0.3449469,0.3431911,0.3413945,0.3395383,0.337618,0.3356408,0.3336107,0.331537,0.3294296,0.3272989,0.3251814,0.3231043,0.3210656,0.3190247,0.3168957,0.3146539,0.3123025,0.3098295,0.3072235,0.3045438,0.3018822,0.2993346,0.2969978,0.2949207,0.2930706,0.2913796,0.2897838,0.288218,0.2866297,0.2850244,0.2834179,0.2817976,0.2801583,0.2785094,0.2768716,0.2752739,0.273732,0.2722521,0.2708276,0.2694368,0.2680522,0.2666434,0.2651847,0.2636203,0.2618922,0.2599512,0.2578011,0.2555344,0.2532628,0.2510811,0.2490331,0.2471501,0.2454395,0.2438626,0.2423561,0.2408771,0.2393881,0.2378675,0.236289,0.2346487,0.2329656,0.2312515,0.2295468,0.227896,0.2263255,0.2248537,0.2234812,0.2221813,0.2208931,0.2195585,0.2181286,0.2165492,0.2147898,0.2128542,0.210791,0.2087174,0.2067362,0.2048903,0.203209,0.2016917,0.2002764,0.1988838,0.1974594,0.1959526,0.1943562,0.1927019,0.1910145,0.189297,0.1875492,0.1857919,0.184051,0.1823309,0.1806291,0.1789334,0.177234,0.1755289,0.173765,0.1718548,0.1697239,0.167378,0.1648822,0.1623343,0.1597839,0.1572743,0.1548357,0.1524697,0.1502083,0.148068,0.1459985,0.1439612,0.1419798,0.1400538,0.1381177,0.1361504,0.1341592,0.1321628,0.1301765,0.1282147,0.1263097,0.1244983,0.1227265,0.1209366,0.1191252,0.1172623,0.1152959,0.1131789,0.1108996,0.1084788,0.1059328,0.1032923,0.1006604,0.0981404,0.0957964,0.0936228,0.0915859,0.08965,0.0877804,0.0859395,0.0840806,0.082147,0.0800928,0.0779849,0.0758604,0.073743,0.0716629,0.0696407,0.0676963,0.0658385,0.0640516,0.0623036,0.0605504,0.0587437,0.0568331,0.0547615,0.0524533,0.0499432,0.0473517,0.0447802,0.0422937,0.0399668,0.0378257,0.0358371,0.0339598,0.0321419,0.0303319,0.0284965,0.0266199,0.0246953,0.0227316,0.0207822,0.018844,0.016892,0.0149455,0.0130576,0.0112559,0.0095198,0.0078515,0.0061944,0.0044973,0.0027133,0.000794,-0.0013013,-0.0035811,-0.0060374,-0.0086012,-0.0111362,-0.0135196,-0.015694,-0.0176681,-0.0195087,-0.0212971,-0.0230783,-0.0248609,-0.0266417,-0.02842,-0.0302112,-0.0320548,-0.0339029,-0.0357168,-0.0374934,-0.0392089,-0.0408384,-0.0423711,-0.0438181,-0.0452248,-0.0466648,-0.048215,-0.0499298,-0.0518402,-0.0539464,-0.056209,-0.0585552,-0.0609473,-0.0632737,-0.0654265,-0.0673591,-0.0690735,-0.0705942,-0.0719782,-0.0732997,-0.0746155,-0.0759466,-0.0772735,-0.0785842,-0.0798801,-0.0811478,-0.0823583,-0.0834603,-0.084435,-0.0852864,-0.0860349,-0.0867289,-0.0874082,-0.0881043,-0.0888631,-0.0897219,-0.0906552,-0.0916377,-0.092644,-0.0936189,-0.0945438,-0.0953752,-0.0960653,-0.0965988,-0.0970168,-0.0974019,-0.0977944,-0.098221,-0.0986882,-0.0992088,-0.0997891,-0.1004112,-0.1010354,-0.1016005,-0.1020692,-0.1024428,-0.102721,-0.1028991,-0.1029848,-0.1030059,-0.1030439,-0.1031971,-0.1035251,-0.1040323,-0.1046837,-0.1054215,-0.1061761,-0.1068684,-0.1074418,-0.1078749,-0.1081668,-0.1083336,-0.1084251,-0.1085249,-0.1086869,-0.1089471,-0.1093168,-0.1097648,-0.1102494,-0.1107329,-0.111196,-0.1116729,-0.1121394,-0.1125547,-0.1129201,-0.1132494,-0.113563,-0.1138863,-0.1142768,-0.1147979,-0.1154865,-0.1163416,-0.1173116,-0.1183195,-0.1192897,-0.1201354,-0.1208024,-0.121278,-0.1215951,-0.1218291,-0.122038,-0.1222392,-0.122498,-0.1228612,-0.1233174,-0.1238435,-0.1244264,-0.1250648,-0.1257449,-0.126366,-0.1269236,-0.12747,-0.1280299,-0.1286116,-0.1292367,-0.1299267,-0.1307244,-0.1316854,-0.1328394,-0.1341525,-0.1355753,-0.137034,-0.1384456,-0.1397049,-0.1407588,-0.1416275,-0.1423559,-0.1430386,-0.1437508,-0.1445275,-0.1453857,-0.1463465,-0.1474119,-0.1485366,-0.149675,-0.1507827,-0.1518317,-0.1528283,-0.1537768,-0.1546723,-0.155508,-0.1563206,-0.1571745,-0.1581647,-0.1593483,-0.1607528,-0.1623844,-0.164202,-0.166103,-0.1679793,-0.1697742,-0.1714323,-0.1729546,-0.1743468,-0.1756297,-0.1768615,-0.1781109,-0.1794421,-0.1808296,-0.1822462,-0.1836913,-0.1851561,-0.1866186,-0.1880672,-0.1894818,-0.1908162,-0.192076,-0.1933059,-0.1945256,-0.1957186,-0.1969038,-0.1981625,-0.1995924,-0.2012478,-0.2031327,-0.205195,-0.2073275,-0.2094117,-0.2113674,-0.2131431,-0.2147575,-0.2162511,-0.2176843,-0.2191226,-0.2205933,-0.222092,-0.2236105,-0.2251343,-0.2266438,-0.2281167,-0.2295476,-0.2309362,-0.2322829,-0.2335806,-0.2348361,-0.2360646,-0.2372905,-0.2385353,-0.2398212,-0.2412064,-0.2427429,-0.2444428,-0.2462717,-0.2481347,-0.2499326,-0.2515963,-0.2531182,-0.2544822,-0.2557094,-0.2568519,-0.2579528,-0.2590345,-0.2601078,-0.2612209,-0.2623934,-0.2635852,-0.2647382,-0.26583,-0.266849,-0.2677816,-0.2686183,-0.2693745,-0.270062,-0.2707034,-0.2713384,-0.2720031,-0.2727467,-0.2736524,-0.2747527,-0.2760031,-0.2773337,-0.2786778,-0.2799799,-0.2812123,-0.2823365,0.7166607,0.7157514,0.7148905,0.7140399,0.7131795,0.7122771,0.7112628,0.7101813,0.7091023,0.708033,0.7069913,0.706046,0.7052322,0.7044978,0.7038159,0.7032053,0.70265,0.7021046,0.7014885,0.700735,0.6997949,0.6986696,0.6974004,0.6960321,0.6946229,0.6932717,0.6920226,0.69084,0.6896962,0.6885426,0.6873592,0.6861334,0.6848614,0.6835524,0.6822235,0.6808901,0.6795688,0.6782858,0.6770737,0.6759528,0.6749095,0.6739404,0.673034,0.6721369,0.671178,0.6701116,0.6689159,0.6675711,0.6660497,0.6643917,0.6626943,0.6610388,0.65947,0.6580483,0.6568086,0.6557287,0.6547654,0.6538727,0.6529852,0.6520648,0.6511228,0.650173,0.6491953,0.6481814,0.6471711,0.6462559,0.6454268,0.6446652,0.643955,0.6432621,0.6425466,0.6417628,0.6408617,0.6397981,0.6385584,0.637158,0.6356259,0.6340043,0.6323424,0.6306803,0.6290799,0.6276186,0.6263152,0.625113,0.6239637,0.6227875,0.6215451,0.6202247,0.6188525,0.6174633,0.6160535,0.6146334,0.6132464,0.6119412,0.6107171,0.6095478,0.6084039,0.6072995,0.6062136,0.605077,0.6038356,0.6024343,0.6008289,0.5990301,0.5971243,0.595187,0.5932984,0.5915401,0.5899344,0.5884772,0.5871333,0.5858676,0.58465,0.5834072,0.5821014,0.5807248,0.5792859,0.5778129,0.5763401,0.5749086,0.5735543,0.5722984,0.5711583,0.5701506,0.5692824,0.5685228,0.5677999,0.5670218,0.5661236,0.5650638,0.5638359,0.5624393,0.5608997,0.5593053,0.5577687,0.5563814,0.5551752,0.5541023,0.5530747,0.5520288,0.5509302,0.5497399,0.5484728,0.5471818,0.5458805,0.5446145,0.5434766,0.5424853,0.5416183,0.5408549,0.5401768,0.5395685,0.5389967,0.5384186,0.5377947,0.5370752,0.5362216,0.5352321,0.5340852,0.532792,0.5314188,0.5300558,0.5288012,0.5277427,0.5268818,0.5261623,0.525524,0.5249099,0.524254,0.5235407,0.5227961,0.5220519,0.521332,0.5206878,0.5201845,0.5198221,0.5195896,0.5194868,0.519491,0.5195781,0.5197016,0.5198161,0.5198842,0.5198567,0.5196973,0.5193509,0.5188314,0.518194,0.5175295,0.5169266,0.5164367,0.5160612,0.5157635,0.5154968,0.515209,0.5148478,0.5144074,0.5138939,0.5133469,0.5128193,0.5123389,0.5119235,0.5115901,0.5113577,0.5112244,0.5111771,0.511201,0.5112423,0.5112441,0.5111617,0.510965,0.5105995,0.5100573,0.5093811,0.508581,0.5077224,0.5069493,0.5063339,0.5058831,0.5055702,0.5053542,0.505153,0.5048794,0.5044919,0.5040282,0.5034731,0.5028311,0.5021482,0.5014732,0.5008641,0.5003514,0.4999473,0.4996422,0.4993733,0.4991055,0.4988104,0.4984361,0.4978861,0.4971117,0.4961343,0.4950108,0.4937926,0.4925573,0.4913946,0.4903712,0.4894935,0.4887306,0.4880392,0.4873743,0.4866994,0.4859945,0.485257,0.4844868,0.4837018,0.4829524,0.4822701,0.4816734,0.4811781,0.4807989,0.480505,0.4802377,0.4799351,0.4795528,0.4790343,0.4783318,0.477445,0.4764016,0.475266,0.4740992,0.4729361,0.4718496,0.4708898,0.4700365,0.469291,0.4686428,0.4679863,0.4671984,0.4662467,0.4651361,0.4638945,0.4625782,0.4612293,0.4598954,0.4586331,0.4574928,0.4564722,0.4555268,0.4546702,0.453905,0.45318,0.4524274,0.4515894,0.4505974,0.4493667,0.447877,0.446163,0.4442954,0.4423779,0.4405191,0.4388033,0.4372983,0.4359656,0.4347196,0.4334798,0.4321921,0.430838,0.4294043,0.4278998,0.426384,0.4248914,0.4234469,0.4220795,0.4207736,0.4195148,0.4183221,0.4171946,0.4160834,0.4149118,0.4136537,0.4123132,0.4108614,0.4092463,0.4075091,0.4057031,0.4038792,0.4021351,0.4005607,0.3991971,0.3980272,0.3969979,0.396025,0.3950182,0.3939044,0.3926478,0.3912807,0.3898994,0.3885677,0.3873164,0.3861594,0.3851055,0.384149,0.3832845,0.3824845,0.38169,0.3808559,0.3799588,0.378999,0.3779263,0.3767166,0.3753886,0.3739466,0.3724256,0.370889,0.3694159,0.3680757,0.3668962,0.365832,0.364811,0.3637652,0.3626392,0.3614152,0.3601175,0.3588126,0.3575796,0.3564656,0.3554755,0.3545989,0.3538487,0.3532383,0.352756,0.3523454,0.3519507,0.3515427,0.3510989,0.3505557,0.3498813,0.3490555,0.3480765,0.3469506,0.3457503,0.3445685,0.3434762,0.3424918,0.3415991,0.3407658,0.3399216,0.3390064,0.3379765,0.3368207,0.3355627,0.3342607,0.3329682,0.3317572,0.330692,0.3297787,0.3289951,0.3283106,0.3277006,0.3271628,0.3266664,0.3261335,0.3254852,0.3246882,0.3237204,0.3225925,0.321368,0.32015,0.3190472,0.3181141,0.3173202,0.3166322,0.315991,0.3153402,0.3146299,0.3137975,0.3127859,0.3116069,0.310351,0.3091173,0.3079738,0.3069587,0.3060888,0.305349,0.3047088,0.3041451,0.3036122,0.303046,0.3024103,0.301667,0.3007715,0.2996964,0.2984542,0.2970942,0.2956943,0.2943287,0.2930568,0.2919152,0.2909198,0.2900566,0.2892785,0.2884872,0.2876305,0.2867067,0.2857324,0.2847278,0.2836899,0.2826326,0.281617,0.280717,0.2799604,0.2793512,0.2788876,0.2784902,0.2780914,0.2776702,0.2771641,0.2764952,0.2756158,0.2745301,0.2732798,0.2719424,0.2706275,0.2694171,0.268344,0.2674092,0.2665784,0.2657858,0.2649566,0.2640276,0.2629537,0.2617169,0.2603408,0.2588819,0.2574222,0.2560333,0.2547616,0.2536071,0.2525725,0.2516738,0.2509045,0.2502336,0.2496104,0.2489572,0.2481792,0.2472128,0.2460493,0.2447189,0.2432574,0.2417428,0.2402522,0.2388821,0.2376974,0.2366865,0.2357934,0.2349406,0.2340467,0.2330346,0.2319132,0.2307036,0.2294385,0.2281711,0.2269722,0.225885,0.2248952,0.2240218,0.2232822,0.2226655,0.2221338,0.2216325,0.2211149,0.2205672,0.2199692,0.2192965,0.2185256,0.2176576,0.2167269,0.2157912,0.2149233,0.2141785,0.213574,0.213087,0.2126552,0.212177,0.2115831,0.2108341,0.2099601,0.2090378,0.2081501,0.2073585,0.2067127,0.2062554,0.2060088,0.2059599,0.2060528,0.2062194,0.2064141,0.2065938,0.2067063,0.2067081,0.2066028,0.2064029,0.206108,0.2057218,0.2052863,0.2048495,0.2044796,0.2042384,0.2041373,0.2041246,0.2040997,0.2039648,0.2036613,0.2031835,0.2025699,0.2019044,0.2012654,0.2007045,0.2002525,0.1999131,0.1997032,0.1996117,0.1996376,0.1997681,0.1999517,0.2001462,0.2003208,0.2004493,0.2005292,0.2005635,0.2005377,0.2004601,0.2003647,0.2002881,0.2002739,0.2003471,0.2004946,0.2006563,0.2007448,0.20069,0.200471,0.2001221,0.1997162,0.1993273,0.199019,0.1988357,0.1987971,0.1988955,0.1990863,0.1993266,0.1995763,0.1997945,0.1999438,0.1999893,0.1999004,0.1996439,0.1992218,0.1986679,0.198026,0.1973456,0.1966767,0.196061,0.1955176,0.1950718,0.194676,0.1942392,0.1936865,0.1929725,0.1921049,0.191151,0.1901966,0.1893233,0.1885896,0.188025,0.1876326,0.1874005,0.1873075,0.18732,0.1873838,0.1874243,0.187399,0.1872846,0.1870473,0.1866342,0.1860527,0.1853532,0.1846213,0.1839361,0.1833561,0.1828936,0.1824982,0.1821403,0.1817607,0.1812927,0.1806722,0.179861,0.1788732,0.1777638,0.176632,0.1755747,0.1746592,0.1739298,0.1734031,0.1730581,0.1728169,0.1725895,0.1722985,0.1718836,0.1713054,0.1705422,0.1695891,0.1684703,0.167227,0.1659142,0.1645979,0.1633437,0.1621985,0.161172,0.1602201,0.1592996,0.158335,0.1572466,0.1559946,0.1545819,0.1530491,0.1514664,0.1499122,0.1484556,0.1471395,0.1459729,0.1449459,0.1440356,0.1432222,0.1424183,0.1415756,0.1406767,0.1396997,0.1386284,0.1374535,0.1361771,0.1348384,0.1335092,0.1322792,0.1312265,0.1303772,0.1296857,0.1290729,0.128465,0.127778,0.1269527,0.1259773,0.1248787,0.1237071,0.1225238,0.121425,0.1204714,0.1196869,0.1190559,0.1185343,0.1180488,0.1175339,0.1169548,0.1162814,0.1154743,0.1145235,0.1134373,0.1122347,0.1109401,0.1096079,0.1083216,0.107149,0.1061379,0.1052998,0.1045939,0.1039402,0.1032495,0.1024768,0.1016185,0.1006897,0.0997319,0.0987931,0.0979274,0.0971828,0.0965673,0.0960748,0.0956939,0.0953978,0.0951485,0.0949073,0.0946336,0.0942805,0.0938097,0.0932096,0.0924891,0.0916669,0.0907727,0.0898655,0.0890169,0.088289,0.0877077,0.0872389,0.0868191,0.0863955,0.0858895,0.0852255,0.0843946,0.0834628,0.0825177,0.0816601,0.0809772,0.0804898,0.0801764,0.0800178,0.0799783,0.0800217,0.0801051,0.0801151,0.0799982,0.0797462,0.0793574,0.0788548,0.0782838,0.0777043,0.07719,0.0767744,0.0764882,0.076344,0.0763047,0.0762881,0.0761763,0.0758347,0.0752185,0.0743528,0.0733111,0.0721825,0.0710357,0.0699271,0.0689471,0.0681174,0.0674143,0.066803,0.0662199,0.0656157,0.064967,0.0642692,0.0634719,0.0625166,0.0613842,0.0600887,0.0586763,0.0572172,0.0557852,0.0544579,0.0532796,0.0522353,0.0512809,0.0503472,0.0493419,0.0481318,0.0466987,0.0451206,0.043475,0.0418779,0.0404351,0.0392272,0.0382929,0.0375703,0.0369864,0.0365027,0.0360762,0.0356516,0.0351654,0.0345721,0.0338784,0.0330925,0.0321709,0.0311321,0.0300341,0.028951,0.0279408,0.0270561,0.0262767,0.0255766,0.0249063,0.0241951,0.0233502,0.0222918,0.0210287,0.0196105,0.0181152,0.0167108,0.0155123,0.014557,0.0138369,0.0133147,0.012946,0.012643,0.012307,0.0118462,0.0112247,0.0104328,0.0095267,0.0085541,0.0075498,0.0065752,0.0056687,0.0048418,0.0040768,0.0034,0.0028169,0.0022406,0.0015711,0.0007256,-0.0003282,-0.0015957,-0.0030375,-0.0045956,-0.0061354,-0.0075392,-0.0087427,-0.0097392,-0.0105342,-0.0111787,-0.0117519,-0.012327,-0.0129628,-0.0137066,-0.0145718,-0.0155398,-0.016603,-0.0177293,-0.0188649,-0.0199439,-0.0209048,-0.0216805,-0.0222392,-0.0226055,-0.022826,-0.0230053,-0.0232487,-0.02362,-0.0241341,-0.0247506,-0.0253998,-0.0260198,-0.0265207,-0.0268308,-0.0269145,-0.0267613,-0.0264041,-0.025931,-0.0254356,-0.025003,-0.0246916,-0.0245266,-0.0245019,-0.0245878,-0.0247172,-0.0248867,-0.025088,-0.0252792,-0.0254117,-0.0254343,-0.0253342,-0.0251805,-0.0250124,-0.0248993,-0.0249225,-0.0251593,-0.0256241,-0.0262367,-0.0268396,-0.0273327,-0.027665,-0.027809,-0.0277746,-0.0275939,-0.0273236,-0.027019,-0.0267194,-0.0264898,-0.0263581,-0.0262979,-0.0262959,-0.0263442,-0.0264445,-0.0265768,-0.0266799,-0.0267019,-0.0266077,-0.026379,-0.0259965,-0.0255105,-0.0250083,-0.0246155,-0.0244194,-0.0244401,-0.0246277,-0.0248577,-0.0250385,-0.0250733,-0.0248996,-0.0245226,-0.0239773,-0.0233196,-0.0226054,-0.021933,-0.0213764,-0.020967,-0.0207157,-0.0206116,-0.0206476,-0.0208303,-0.0211203,-0.0214906,-0.0218605,-0.0221706,-0.0223782,-0.0224742,-0.0224974,-0.0225447,-0.0227372,-0.0231491,-0.0238133,-0.0246738,-0.0256358,-0.0265744,-0.0273327,-0.0278881,-0.0281934,-0.0282724,-0.0281832,-0.0279897,-0.0277721,-0.0276268,-0.0275587,-0.0276259,-0.0278479,-0.0282123,-0.0286817,-0.0292242,-0.029725,-0.0301273,-0.0304013,-0.0305429,-0.0305607,-0.0304915,-0.0303924,-0.030379,-0.0305614,-0.0310249,-0.0317738,-0.0327103,-0.0336855,-0.0345804,-0.035321,-0.0358672,-0.0362311,-0.0364337,-0.036517,-0.0365742,-0.0366672,-0.0368649,-0.0372093,-0.0376842,-0.0382881,-0.039029,-0.0398865,-0.0407687,-0.041662,-0.0425093,-0.0432235,-0.0438116,-0.0443142,-0.0447969,-0.0453494,-0.0460411,-0.0469375,-0.0481072,-0.049527,-0.0510946,-0.0526779,-0.0541408,-0.0553664,-0.0563123,-0.0570196,-0.0575888,-0.0580961,-0.0586056,-0.0591504,-0.059808,-0.0606293,-0.0616027,-0.0626753,-0.0637963,-0.0649026,-0.0659647,-0.0669136,-0.067681,-0.0683109,-0.0688507,-0.0693405,-0.0698207,-0.0703947,-0.0712129,-0.0723469,-0.0737171,-0.0752424,-0.0768264,-0.078362,-0.0796823,-0.0807174,-0.0815321,-0.082189,-0.0827593,-0.083306,-0.0838664,-0.0844782,-0.0851909,-0.0859935,-0.0868781,-0.0878345,-0.0888248,-0.0897954,-0.0906866,-0.0914656,-0.0920995,-0.0925412,-0.09285,-0.0931135,-0.0934088,-0.0938431,-0.0944829,-0.0953362,-0.0963879,-0.0975666,-0.0987502,-0.0998157,-0.1007105,-0.1014082,-0.1018881,-0.1022226,-0.1025304,-0.1029003,-0.1033711,-0.103954,-0.1047435,-0.1057363,-0.1068348,-0.1079956,-0.1091824,-0.1103573,-0.1114854,-0.1125273,-0.1134459,-0.1142584,-0.1150231,-0.1158059,-0.1166715,-0.1177007,-0.1189008,-0.1202135,-0.1215495,-0.1228387,-0.1239632,-0.1248089,-0.1254034,-0.125791,-0.1260011,-0.1260612,-0.1260513,-0.1260552,-0.1261449,-0.1263089,-0.1265809,-0.1270138,-0.1275373,-0.1281068,-0.1287036,-0.1293036,-0.1298574,-0.1303011,-0.1306355,-0.1309419,-0.1313291,-0.1319044,-0.13274,-0.1338698,-0.135188,-0.1366463,-0.1381461,-0.1395235,-0.1407191,-0.1417113,-0.1424498,-0.1430178,-0.143442,-0.1438171,-0.1442513,-0.1447951,-0.1454185,-0.1461499,-0.1469825,-0.1479131,-0.1489442,-0.150011,-0.1510435,-0.1520022,-0.1528781,-0.1536489,-0.1543436,-0.1550022,-0.1557567,-0.1567176,-0.157945,-0.1594162,-0.1610153,-0.1626785,-0.1642833,-0.1656736,-0.1667945,-0.1676946,-0.1684226,-0.1690293,-0.1695805,-0.1701169,-0.1707287,-0.1714764,-0.1723725,-0.1733609,-0.1743556,-0.175292,-0.1761811,-0.1770213,-0.1777714,-0.1783699,-0.1788357,-0.1792241,-0.1796054,-0.1800509,-0.18066,-0.1815161,-0.1826647,-0.1840957,-0.1856567,-0.1871312,-0.1884119,-0.1894606,-0.1902654,-0.1908598,-0.191296,-0.1916755,-0.1920754,-0.1925663,-0.1931513,-0.1938398,-0.1946408,-0.1955456,-0.1965096,-0.1974465,-0.1982923,-0.1990098,-0.1995651,-0.1999177,-0.2001964,-0.2004566,-0.2006765,-0.2009681,-0.2014646,-0.2022561,-0.203315,-0.2045888,-0.205996,-0.2073676,-0.2085353,-0.2094096,-0.2099979,-0.2103313,-0.2105553,-0.2107561,-0.2109942,-0.2113652,-0.211913,-0.2126183,-0.2134483,-0.2143627,-0.2153294,-0.2162959,-0.2171983,-0.2180139,-0.2187311,-0.2193188,-0.2198581,-0.2203536,-0.2208656,-0.2215418,-0.2224512,-0.2236215,-0.2249902,-0.226419,-0.2278,-0.229006,-0.2299238,-0.230526,-0.230852,-0.2309844,-0.231025,-0.2310636,-0.2311178,-0.2312232,-0.2313872,-0.2316033,-0.231819,-0.231938,-0.2319549,-0.2318678,-0.2316395,-0.231258,-0.2307278,-0.2300715,-0.2293918,-0.2287029,-0.2281871,-0.2279101,-0.2278952,-0.2280823,-0.2283611,-0.2286852,-0.2289894,-0.2292204,-0.2293042,-0.2292468,-0.229112,-0.2289647,-0.22883,-0.2287789,-0.2288374,-0.2289711,-0.2292086,-0.2295658,-0.2300133,-0.2304316,-0.2307882,-0.2310288,-0.2311249,-0.2310816,-0.2309161,-0.23067,-0.2303926,-0.2301708,-0.2301863,-0.2304362,-0.2308965,-0.231475,-0.2320488,-0.2325175,-0.2328086,-0.2328278,-0.2325516,-0.2320454,-0.2314018,-0.2306944,-0.2299901,-0.2294082,-0.2289664,-0.2286576,-0.2284592,-0.2283017,-0.2281081,-0.2278486,-0.2275141,-0.2270995,-0.2265586,-0.225894,-0.2251625,-0.2244468,-0.2238582,-0.2235133,-0.2234796,-0.2237395,-0.2242203,-0.2247995,-0.2253234,-0.2257041,-0.2258615,-0.2257823,-0.2255261,-0.2251661,-0.2247766,-0.224442,-0.2242698,-0.2242689,-0.2243559,-0.2245589,-0.2248446,-0.2251643,-0.2254708,-0.2257058,-0.2258163,-0.2257931,-0.2256558,-0.2254303,-0.2251698,-0.2249761,-0.224955,-0.2251609,-0.2256919,-0.2265412,-0.2275671,-0.2285822,-0.2294107,-0.2299605,-0.2302906,-0.2304285,-0.2304348,-0.2303954,-0.2303722,-0.2303992,-0.2305198,-0.2307498,-0.2310816,-0.2314919,-0.2319429,-0.2323868,-0.2327573,-0.233006,-0.2331053,-0.2331468,-0.2330682,-0.2329148,-0.2327854,-0.2328043,-0.2330035,-0.2334564,-0.2342577,-0.2353089,-0.2364593,-0.2375352,-0.2384055,-0.2390105,-0.2393653,-0.2395424,-0.2396589,-0.2398239,-0.2400934,-0.2404851,-0.2410185,-0.2416984,-0.242432,-0.2431913,-0.2439478,-0.2446789,-0.2453497,-0.2459112,-0.2463382,-0.246631,-0.2468484,-0.2470315,-0.2472056,-0.2475186,-0.2480836,-0.2489222,-0.2500239,-0.2512652,-0.2524932,-0.2535888,-0.2544023,-0.2549795,-0.2553284,-0.2555285,-0.2556275,-0.2557355,-0.2559252,-0.2562553,-0.2567468,-0.2573401,-0.2579805,-0.2586303,-0.2592424,-0.259769,-0.2601416,-0.2603827,-0.2605744,-0.2607351,-0.260895,-0.2611461,-0.2615677,-0.2622136,-0.2631319,-0.2642858,-0.2656314,-0.267055,-0.2684099,-0.2695681,-0.2704499,-0.2710587,-0.2714257,-0.2717417,-0.272123,-0.2726434,-0.2733379,-0.2741929,-0.2751878,-0.2761995,-0.2772594,-0.2782617,-0.2791451,-0.2798684,-0.2804346,-0.280809,-0.2810317,-0.2812122,-0.2813892,-0.2816406,-0.2820833,-0.2828023,-0.283767,-0.2848982,-0.2860845,-0.2872097,-0.2881671,-0.2889034,-0.2894298,-0.2897869,-0.2900927,-0.290432,-0.2908134,-0.2913262,-0.292021,-0.2928423,-0.2937164,-0.2946272,-0.2955576,-0.2964615,-0.2972558,-0.297905,-0.2984117,-0.2987633,-0.2989965,-0.2992047,-0.2994866,-0.2998973,-0.3004537,-0.3011597,-0.3019818,-0.3028634,-0.3037557,-0.3045176,-0.3050444,-0.3053238,-0.3054021,-0.3053909,-0.3053551,-0.3053398,-0.3054234,-0.3056853,-0.3061748,-0.3068708,-0.3076479,-0.3084267,-0.3091341,-0.3097361,-0.3102273,-0.3105906,-0.3108444,-0.3110813,-0.3113749,-0.3117326,-0.3121844,-0.3128547,-0.3137882,-0.3149375,-0.3161883,-0.3174282,-0.31852,-0.319365,-0.3199597,-0.3203499,-0.3206079,-0.3208296,-0.3210638,-0.3213364,-0.3217307,-0.3222791,-0.3229361,-0.3236003,-0.3242858,-0.3249902,-0.325636,-0.3262069,-0.3267014,-0.3271152,-0.3274432,-0.3277689,-0.3281239,-0.328625,-0.3293557,-0.3303847,-0.3317086,-0.3332168,-0.3347572,-0.336157,-0.3372934,-0.3381222,-0.3386652,-0.3390042,-0.3392453,-0.3395322,-0.3399377,-0.3404803,-0.3411762,-0.3420044,-0.342921,-0.3438773,-0.3448609,-0.345791,-0.3466049,-0.3473249,-0.347918,-0.3483656,-0.3486984,-0.3490182,-0.3494125,-0.3499586,-0.350759,-0.3518604,-0.3532232,-0.3547074,-0.3561287,-0.357298,-0.3581551,-0.3586388,-0.3588244,-0.3588824,-0.3589143,-0.3590311,-0.3592911,-0.3596843,-0.3602305,-0.3609008,-0.3616469,-0.3624047,-0.3630963,-0.3636301,-0.3639753,-0.3641298,-0.3641166,-0.3640207,-0.3639187,-0.3638344,-0.3639078,-0.3642024,-0.364733,-0.3655212,-0.3665561,-0.3677597,-0.3689442,-0.3699118,-0.3705426,-0.3708895,-0.3710596,-0.3712112,-0.3714275,-0.3717446,-0.3722,-0.3727704,-0.3734155,-0.3740623,-0.3746549,-0.37516,-0.3755426,-0.3757739,-0.3758254,-0.375675,-0.3753688,-0.374972,-0.3745166,-0.3740625,-0.3737471,-0.3736632,-0.3738342,-0.3742398,-0.3747728,-0.3752727,-0.3755976,-0.3756306,-0.3753346,-0.3747851,-0.3741066,-0.3734358,-0.3728739,-0.3724738,-0.3722424,-0.3721242,-0.3720521,-0.3719666,-0.3718132,-0.3715434,-0.3711283,-0.370568,-0.369864,-0.369039,-0.3681373,-0.3672314,-0.3664,-0.3656904,-0.3651369,-0.3647755,-0.3645633,-0.3644225,-0.3642648,-0.3640071,-0.3635355,-0.3628177,-0.3619193,-0.360955,-0.3600271,-0.3592249,-0.3586214,-0.35824,-0.3580241,-0.3578958,-0.3577879,-0.3576363,-0.3574018,-0.3570625,-0.3566089,-0.3560465,-0.3553924,-0.3547322,-0.3541255,-0.3536094,-0.3532165,-0.3530353,-0.3530927,-0.35332,-0.3536583,-0.354039,-0.3543228,-0.354362,-0.3541639,-0.3537461,-0.3531803,-0.3525903,-0.3520895,-0.3517705,-0.3516787,-0.3517677,-0.3519905,-0.3522957,-0.3526054,-0.3528405,-0.3529066,-0.352731,-0.3523625,-0.3518441,-0.3512232,-0.3505828,-0.3499891,-0.3495335,-0.3492948,-0.349417,-0.3498637,-0.3505272,-0.3512782,-0.3519493,-0.3524184,-0.3526365,-0.3525877,-0.3523605,-0.3520714,-0.3517769,-0.3515779,-0.3515585,-0.3517391,-0.3520624,-0.3524625,-0.3528351,-0.353134,-0.3533449,-0.3534556,-0.3534597,-0.3533486,-0.3530908,-0.3527989,-0.3525356,-0.3523906,-0.3524707,-0.3528164,-0.3534213,-0.3542436,-0.3551739,-0.3560625,-0.3567786,-0.357265,-0.3574969,-0.3575456,-0.3575274,-0.3575584,-0.3577137,-0.3580525,-0.3586026,-0.3593098,-0.3600563,-0.360759,-0.3614073,-0.3619472,-0.3623465,-0.3625961,-0.362703,-0.3626876,-0.3626017,-0.3625289,-0.3625756,-0.3628373,-0.3633837,-0.3642228,-0.3653203,-0.3666056,-0.3679173,-0.369077,-0.3699361,-0.3704278,-0.3705863,-0.3705441,-0.3704357,-0.3703655,-0.3704276,-0.3706721,-0.371097,-0.3716476,-0.3722186,-0.37274,-0.3731691,-0.3735012,-0.3737122,-0.3738079,-0.3737444,-0.373687,-0.3736895,-0.3737466,-0.3739066,-0.3742588,-0.3748597,-0.3756753,-0.3766164,-0.377659,-0.3787612,-0.3796944,-0.3803416,-0.3806936,-0.3807681,-0.38071,-0.3806757,-0.3807792,-0.3810399,-0.3814319,-0.3819281,-0.3824632,-0.3829621,-0.3833464,-0.3836285,-0.3837914,-0.3837856,-0.383569,-0.3831986,-0.3828101,-0.3824333,-0.3821458,-0.381975,-0.3819985,-0.3822527,-0.3827555,-0.3834556,-0.3842296,-0.3850016,-0.3856806,-0.386131,-0.3863072,-0.3863139,-0.3863821,-0.3865611,-0.386883,-0.387346,-0.3879068,-0.3885143,-0.3890959,-0.3896132,-0.3900788,-0.3904278,-0.3905953,-0.3906061,-0.3905234,-0.3904444,-0.3904639,-0.3906125,-0.3909752,-0.3915896,-0.3924644,-0.393572,-0.3948439,-0.3961118,-0.3972648,-0.3982262,-0.3989216,-0.3993798,-0.3996444,-0.3998425,-0.4000713,-0.400435,-0.4009515,-0.4016209,-0.4024264,-0.4033023,-0.4040732,-0.4046662,-0.4050453,-0.4051666,-0.4051163,-0.404946,-0.4047042,-0.4044267,-0.4041817,-0.4041159,-0.4042234,-0.4046351,-0.4052943,-0.4061226,-0.4070415,-0.4079584,-0.4087575,-0.4093475,-0.4096975,-0.4098663,-0.4099561,-0.4100604,-0.4103197,-0.4108129,-0.4115562,-0.4124706,-0.4135203,-0.4145988,-0.4155718,-0.4163662,-0.4169679,-0.4173794,-0.4175297,-0.417478,-0.4173365,-0.4172144,-0.4171866,-0.4173432,-0.4177178,-0.418337,-0.419176,-0.4201173,-0.4210117,-0.4217356,-0.4222041,-0.4224457,-0.4225039,-0.4224547,-0.4224571,-0.422568,-0.4229068,-0.4234993,-0.4243633,-0.4254512,-0.4265929,-0.4277225,-0.4288113,-0.4297795,-0.4305988,-0.4312454,-0.4317269,-0.4321096,-0.4324992,-0.4329742,-0.4336168,-0.434475,-0.435547,-0.4368783,-0.4384033,-0.4399519,-0.4414092,-0.4426208,-0.4435132,-0.4441812,-0.4446345,-0.4449562,-0.4453458,-0.4459313,-0.446733,-0.4476852,-0.4487321,-0.4497723,-0.450735,-0.4515518,-0.4521415,-0.4525044,-0.452632,-0.4525428,-0.45235,-0.4521196,-0.4519698,-0.4519775,-0.4522119,-0.4526781,-0.4534417,-0.4544476,-0.4555714,-0.4567064,-0.4577586,-0.4586098,-0.4592444,-0.4596846,-0.4600115,-0.4603803,-0.4608832,-0.4615421,-0.4623643,-0.4633277,-0.4643678,-0.4654084,-0.4663474,-0.4671515,-0.4677531,-0.4681676,-0.4683568,-0.4684258,-0.468389,-0.4682814,-0.4682645,-0.4683064,-0.4684818,-0.4688519,-0.4693303,-0.4698766,-0.4704131,-0.4708695,-0.4711532,-0.4711745,-0.4710167,-0.4707194,-0.4704419,-0.4703036,-0.4703743,-0.4705973,-0.470984,-0.4714269,-0.4718995,-0.4723112,-0.4725733,-0.4726253,-0.4724176,-0.4720052,-0.4714669,-0.4708603,-0.4702949,-0.469773,-0.469369,-0.4691271,-0.4690311,-0.4691201,-0.4693447,-0.4695492,-0.4696848,-0.4696713,-0.4694712,-0.4690041,-0.4683765,-0.4676074,-0.466883,-0.4663605,-0.4660755,-0.4659502,-0.4658676,-0.4657494,-0.4655274,-0.4651495,-0.4646056,-0.4638747,-0.4629501,-0.4619249,-0.4608734,-0.4598622,-0.4589704,-0.4582332,-0.4576713,-0.4573204,-0.4571928,-0.4572124,-0.4573004,-0.4573589,-0.4572846,-0.4569965,-0.456478,-0.4557761,-0.4550287,-0.4543775,-0.4539292,-0.4537819,-0.4539026,-0.454154,-0.4544056,-0.4545594,-0.4546161,-0.4545214,-0.4542542,-0.4538207,-0.4532336,-0.4526199,-0.4519663,-0.4513976,-0.4509482,-0.450692,-0.4506789,-0.4509092,-0.4513253,-0.451859,-0.4524044,-0.4528204,-0.4530144,-0.4529846,-0.4528133,-0.4524676,-0.4521117,-0.4518419,-0.4518219,-0.4520847,-0.4525772,-0.453163,-0.4537126,-0.454088,-0.4542768,-0.4541966,-0.4538134,-0.4531941,-0.4524262,-0.451623,-0.4508892,-0.4503531,-0.4500824,-0.450104,-0.4504238,-0.4509743,-0.4516423,-0.4523002,-0.4528594,-0.453159,-0.4531993,-0.453034,-0.452745,-0.4524482,-0.4522696,-0.4523306,-0.4526484,-0.4531861,-0.4539326,-0.4547437,-0.4554398,-0.4559635,-0.4563499,-0.4565618,-0.456636,-0.4566493,-0.4566569,-0.4567428,-0.4569311,-0.4571394,-0.457581,-0.4582334,-0.4590967,-0.4601547,-0.461289,-0.4623538,-0.4633,-0.4639045,-0.4641774,-0.4642354,-0.4642146,-0.4642676,-0.4645056,-0.4649676,-0.4656218,-0.4664304,-0.4673189,-0.4682223,-0.4690428,-0.4696952,-0.4701097,-0.4702877,-0.4703172,-0.4702895,-0.4702677,-0.4703,-0.4704622,-0.4708506,-0.471505,-0.4724209,-0.4735583,-0.4748554,-0.4761651,-0.4773431,-0.4783544,-0.4790608,-0.4795047,-0.4798347,-0.4801759,-0.4806667,-0.4813838,-0.4823068,-0.4833934,-0.484524,-0.485624,-0.4866064,-0.487379,-0.4879469,-0.4882663,-0.4883832,-0.4883924,-0.4883626,-0.4883184,-0.4884483,-0.4887344,-0.4891821,-0.4898445,-0.4907108,-0.491725,-0.4928183,-0.4938597,-0.4946831,-0.495315,-0.4957013,-0.495911,-0.496106,-0.4964856,-0.4970926,-0.4979082,-0.498906,-0.4999654,-0.5010249,-0.5019431,-0.5025908,-0.503077,-0.5033539,-0.5033972,-0.5032901,-0.5031326,-0.5030056,-0.5029508,-0.5029755,-0.5031902,-0.5036331,-0.5042647,-0.5050108,-0.5058501,-0.5066927,-0.5073967,-0.5078796,-0.5081597,-0.5083303,-0.5085088,-0.5087861,-0.5093369,-0.5101828,-0.5112709,-0.5124581,-0.5136566,-0.5147632,-0.5157039,-0.5164171,-0.5168935,-0.51722,-0.5174053,-0.5174871,-0.5175273,-0.5175838,-0.5177076,-0.517975,-0.518438,-0.5190554,-0.5197417,-0.5204651,-0.5211925,-0.5218758,-0.5224067,-0.5227558,-0.5229445,-0.5231776,-0.5235466,-0.5240715,-0.5248783,-0.5260336,-0.5274567,-0.5290254,-0.5305566,-0.5319012,-0.5329806,-0.5337615,-0.5343059,-0.5346974,-0.5351226,-0.5356425,-0.5362904,-0.5371072,-0.5381008,-0.5392968,-0.5407086,-0.5423072,-0.5440295,-0.5457277,-0.5473454,-0.5488276,-0.5501087,-0.5512141,-0.552218,-0.5531601,-0.5541259,-0.5552317,-0.5565024,-0.5578926,-0.559379,-0.5609074,-0.5622896,-0.5633979,-0.5641619,-0.5645848,-0.5647624,-0.5648095,-0.564851,-0.5649388,-0.5651159,-0.5654438,-0.5660262,-0.5668755,-0.5679405,-0.5691296,-0.5703209,-0.5714122,-0.5723208,-0.5729802,-0.5733557,-0.5735332,-0.5736248,-0.5738493,-0.5743153,-0.5750783,-0.576064,-0.5772329,-0.5785189,-0.5797978,-0.5808564,-0.5815866,-0.5820671,-0.5823474,-0.5825878,-0.5828455,-0.5831766,-0.5836551,-0.5843024,-0.5851471,-0.5861835,-0.587397,-0.5887601,-0.5901765,-0.5916038,-0.5929251,-0.5940479,-0.5949044,-0.5955036,-0.5959591,-0.5964701,-0.5971163,-0.5979921,-0.5991153,-0.6004421,-0.6018504,-0.6031988,-0.6044081,-0.6054416,-0.6062342,-0.6067939,-0.6071726,-0.6074306,-0.6076781,-0.6079291,-0.6083097,-0.6088666,-0.609588,-0.6104146,-0.6113689,-0.6123964,-0.613356,-0.6142208,-0.6148402,-0.6151336,-0.6151146,-0.6148613,-0.6145616,-0.6144092,-0.6144924,-0.614826,-0.6153852,-0.6160949,-0.6168223,-0.617377,-0.6176732,-0.6177715,-0.6176338,-0.6173053,-0.6168357,-0.6162621,-0.6157417,-0.6153456,-0.6150603,-0.6149017,-0.6149078,-0.6150723,-0.6153796,-0.6157751,-0.616126,-0.6163016,-0.6162352,-0.615943,-0.6154661,-0.6149581,-0.6145765,-0.6144171,-0.6145384,-0.614803,-0.6151287,-0.615394,-0.6155463,-0.6154581,-0.6151047,-0.6144493,-0.6135384,-0.6125112,-0.6114603,-0.6104674,-0.6096153,-0.6088974,-0.6083348,-0.6079961,-0.6078345,-0.6077672,-0.6077534,-0.6076803,-0.607475,-0.6071092,-0.6064945,-0.6056979,-0.6048388,-0.6040422,-0.6034029,-0.6031523,-0.6032539,-0.6036493,-0.6041418,-0.6045783,-0.6048386,-0.604851,-0.6046577,-0.604211,-0.6036444,-0.6030236,-0.6023727,-0.6017639,-0.6012537,-0.6009566,-0.6008906,-0.6010624,-0.6013918,-0.6018389,-0.6022555,-0.6025543,-0.6026679,-0.602579,-0.6022243,-0.6017581,-0.6013493,-0.6009926,-0.600892,-0.6011322,-0.6017048,-0.602447,-0.6030849,-0.6035014,-0.6036539,-0.6035315,-0.6030689,-0.6024068,-0.6015635,-0.6006508,-0.5997957,-0.599097,-0.5986464,-0.5984958,-0.5986111,-0.5988513,-0.5992194,-0.5996635,-0.6001331,-0.6005157,-0.6007263,-0.6007413,-0.6005705,-0.6003941,-0.6003754,-0.600594,-0.6011433,-0.6020689,-0.6032769,-0.6045714,-0.6057848,-0.6067466,-0.6073929,-0.6077222,-0.6077732,-0.6076573,-0.607464,-0.6073144,-0.6072227,-0.6073055,-0.6076058,-0.6080624,-0.6087249,-0.6094761,-0.6102194,-0.6108669,-0.6113553,-0.6116984,-0.6119393,-0.6120238,-0.6120234,-0.6120574,-0.6122265,-0.6126428,-0.6133568,-0.6143862,-0.6155544,-0.616708,-0.6177426,-0.6185768,-0.6191603,-0.6195141,-0.6197244,-0.6198695,-0.6200057,-0.6202383,-0.6205417,-0.6209797,-0.621645,-0.6224709,-0.6234876,-0.6245819,-0.6256441,-0.62657,-0.6273036,-0.6278348,-0.6280842,-0.6282543,-0.6284096,-0.6287321,-0.6293167,-0.6302951,-0.6315509,-0.632996,-0.6344545,-0.6357972,-0.6369041,-0.6377093,-0.6382638,-0.6386029,-0.6387672,-0.6390024,-0.6393338,-0.6398065,-0.6404074,-0.6411481,-0.6420243,-0.6430137,-0.6440635,-0.6450758,-0.6459555,-0.6466298,-0.6470907,-0.6473554,-0.6474953,-0.6476248,-0.6477409,-0.6480052,-0.6485671,-0.6493253,-0.6502671,-0.6512439,-0.6521296,-0.6528846,-0.6534575,-0.6538075,-0.6539379,-0.6540022,-0.6540401,-0.6541251,-0.6543167,-0.6546604,-0.6552303,-0.6559648,-0.6568264,-0.657761,-0.658685,-0.6595486,-0.6602788,-0.6607848,-0.6610964,-0.6611419,-0.6611256,0.3388154,0.3385829,0.3381061,0.3374082,0.3365409,0.3355845,0.3346766,0.3339552,0.3334918,0.3332886,0.3333062,0.3334979,0.3337714,0.3339975,0.3340874,0.3340738,0.3339423,0.3336441,0.3331309,0.3325429,0.3318801,0.3311887,0.3305389,0.3299882,0.3295147,0.3291185,0.3287226,0.3282724,0.3276937,0.3268631,0.3257269,0.3242968,0.3227242,0.3211803,0.319755,0.3186258,0.3177861,0.317215,0.3168172,0.3164663,0.3160758,0.3156006,0.3149931,0.3142204,0.3133379,0.3123745,0.3113496,0.3102605,0.3091439,0.3080867,0.3071316,0.3063712,0.3058255,0.3054215,0.3050482,0.3045124,0.3037027,0.3024909,0.3008924,0.2990051,0.2970077,0.2951838,0.2936003,0.2923294,0.2914068,0.2907622,0.2903007,0.2899218,0.2895667,0.2891726,0.2886712,0.2879776,0.2871165,0.2861116,0.2850594,0.2840351,0.2830997,0.2822174,0.2814682,0.2808826,0.2803917,0.2798949,0.279323,0.2785181,0.2773348,0.2757922,0.2739632,0.2719153,0.2698598,0.2680163,0.266499,0.2653703,0.2645518,0.2639572,0.263407,0.2628404,0.2621917,0.2614194,0.2604346,0.2592565,0.2580281,0.2567748,0.255534,0.2543516,0.2533304,0.2525085,0.2518561,0.2513218,0.2508291,0.2503042,0.2496606,0.248778,0.247562,0.2460162,0.2442568,0.2424241,0.2406463,0.2390411,0.2377079,0.2367126,0.2359683,0.2352703,0.2344843,0.2336176,0.2326196,0.2315002,0.2302177,0.2288544,0.227395,0.2258846,0.224388,0.2229503,0.2216296,0.2204908,0.2195555,0.2187223,0.2179648,0.2172065,0.21629,0.2151436,0.2137926,0.2122886,0.2107069,0.2091697,0.2078068,0.2066871,0.2059257,0.2054944,0.2052858,0.205136,0.2049151,0.20461,0.2041301,0.2034953,0.2027459,0.2019558,0.2011974,0.2004855,0.199916,0.1995636,0.1994758,0.1996333,0.1999821,0.2003728,0.2006644,0.2007719,0.2006219,0.2001437,0.199399,0.1985417,0.1976981,0.1970122,0.1964962,0.1962146,0.196112,0.1961937,0.1963079,0.1963163,0.1961743,0.1958382,0.19527,0.1945209,0.1936045,0.1926378,0.191672,0.1907246,0.189907,0.1893001,0.1888949,0.188762,0.1887413,0.188756,0.1886745,0.1884051,0.1878073,0.1868983,0.1857917,0.1847112,0.1837892,0.1830911,0.1826662,0.1825122,0.1825868,0.1828167,0.1830796,0.1832364,0.1832668,0.1831328,0.1828921,0.1825442,0.182112,0.1816446,0.1811826,0.1807924,0.1805713,0.1804969,0.1805432,0.1807045,0.1809083,0.1809917,0.1808334,0.1803304,0.1794929,0.1784345,0.1773193,0.1763564,0.1756505,0.1752249,0.1750512,0.1750914,0.1752532,0.1754297,0.1754757,0.1753374,0.1750289,0.174521,0.1738778,0.1731664,0.1724425,0.1717415,0.1711204,0.1706181,0.1703007,0.1701788,0.1701458,0.1701469,0.1700397,0.1696598,0.168949,0.1678708,0.166469,0.1649025,0.1633746,0.1620604,0.1610706,0.1603667,0.1598278,0.1594791,0.1591776,0.1588416,0.1583817,0.1577267,0.1568802,0.1558944,0.1547692,0.1535797,0.1524378,0.1513644,0.1503969,0.1495516,0.1488311,0.1482214,0.1475877,0.1468548,0.1459994,0.1448817,0.1434069,0.141585,0.1394469,0.13718,0.1350048,0.1331218,0.1315844,0.1303579,0.1293179,0.1283931,0.127567,0.126678,0.1256704,0.1245059,0.1232022,0.1217888,0.120304,0.1188194,0.1173729,0.1160198,0.1147917,0.1137404,0.1128542,0.1120479,0.1113109,0.11051,0.1095268,0.1082737,0.1067384,0.1048986,0.1028933,0.1009141,0.0991303,0.0977218,0.0966421,0.0958327,0.0951433,0.0944675,0.0937492,0.0928034,0.0917422,0.090558,0.0893101,0.0880866,0.0868432,0.0856541,0.0845763,0.0836128,0.0827758,0.0820703,0.0814609,0.0809232,0.0803169,0.079507,0.0784116,0.0770194,0.0753817,0.073603,0.0718011,0.0701259,0.0687427,0.0676391,0.0667506,0.0659983,0.06531,0.0645052,0.0635581,0.0624269,0.0611358,0.059752,0.0583055,0.0569078,0.0556466,0.0544301,0.0533893,0.0525659,0.0518653,0.0512524,0.0507255,0.0501887,0.0494775,0.048532,0.0473109,0.0458451,0.0442174,0.0425702,0.0410235,0.0396058,0.0384618,0.0375947,0.0369395,0.0364008,0.0358563,0.0352604,0.0344619,0.033472,0.0323305,0.031064,0.0297136,0.0283457,0.027077,0.0258575,0.024769,0.0238394,0.0230249,0.022198,0.0213974,0.0204607,0.0192214,0.0176771,0.0158583,0.0138173,0.0116745,0.0096172,0.0077894,0.0062056,0.0048975,0.0038165,0.002828,0.0018306,0.0007343,-0.000522,-0.0019608,-0.003541,-0.0052099,-0.0069239,-0.0086085,-0.0102181,-0.0116632,-0.0129349,-0.0140517,-0.0150058,-0.0158079,-0.0165486,-0.0172904,-0.0181261,-0.0191355,-0.0203683,-0.0218774,-0.0234737,-0.0250034,-0.0262933,-0.0272765,-0.0280344,-0.0285775,-0.0290189,-0.0294396,-0.0299271,-0.0305377,-0.031304,-0.0322565,-0.0333445,-0.034542,-0.0357794,-0.0369825,-0.0381623,-0.0392306,-0.0401246,-0.040862,-0.0414729,-0.0420246,-0.0426008,-0.043282,-0.0442138,-0.0455355,-0.0472719,-0.0492672,-0.0513683,-0.0534017,-0.0551223,-0.0564171,-0.0573568,-0.0581155,-0.0588183,-0.0595452,-0.0603999,-0.0614522,-0.062655,-0.0639711,-0.0653732,-0.0668914,-0.0684486,-0.0699754,-0.0714246,-0.0727737,-0.0740273,-0.0752547,-0.0764561,-0.0776443,-0.0788954,-0.080272,-0.0818505,-0.0837516,-0.0858864,-0.0881686,-0.0904223,-0.0924279,-0.0940665,-0.0953137,-0.0962541,-0.0970607,-0.0978892,-0.0988072,-0.0998265,-0.1010065,-0.1023264,-0.103772,-0.1052546,-0.1067047,-0.1080663,-0.109295,-0.1103933,-0.1113402,-0.1121636,-0.1128785,-0.1135213,-0.11422,-0.1151347,-0.1163197,-0.1178224,-0.1196698,-0.1218166,-0.1240283,-0.1261017,-0.127852,-0.1292227,-0.1303217,-0.1312313,-0.1321037,-0.1330324,-0.1339489,-0.1349274,-0.1360502,-0.1373325,-0.1386363,-0.1398784,-0.1410142,-0.1420019,-0.1428237,-0.1434747,-0.1439422,-0.1442181,-0.1443791,-0.1445654,-0.1449309,-0.1455175,-0.1462892,-0.1472473,-0.1483229,-0.1494527,-0.1505508,-0.1514605,-0.1520549,-0.1523304,-0.1523691,-0.1522995,-0.1523056,-0.1524945,-0.1528683,-0.1534277,-0.1541325,-0.1548848,-0.1555932,-0.1562123,-0.1567295,-0.1571002,-0.1573316,-0.1574263,-0.1574177,-0.1573791,-0.1573384,-0.1574224,-0.1577359,-0.1583021,-0.1590702,-0.1599823,-0.1609402,-0.1618205,-0.162455,-0.1627775,-0.1628587,-0.1627207,-0.1624729,-0.1621757,-0.1619977,-0.1619913,-0.1621581,-0.1624823,-0.162884,-0.1632638,-0.1635569,-0.163725,-0.163715,-0.1635141,-0.1631283,-0.1625735,-0.1619526,-0.1613571,-0.1609274,-0.1607406,-0.1608255,-0.16119,-0.1618157,-0.1626092,-0.1633647,-0.1639614,-0.1643057,-0.1643531,-0.1641402,-0.1637527,-0.1632897,-0.1629074,-0.1627287,-0.1627481,-0.1628941,-0.1631343,-0.16341,-0.1636412,-0.1638584,-0.1639945,-0.1640032,-0.1638544,-0.163547,-0.1631167,-0.1626133,-0.1621747,-0.1619039,-0.1619012,-0.1622073,-0.1628444,-0.1637131,-0.1646908,-0.1656418,-0.1663995,-0.1668888,-0.1671221,-0.1671855,-0.167228,-0.1673543,-0.1676475,-0.1681518,-0.1688705,-0.1696996,-0.1705945,-0.1715565,-0.1724534,-0.1732319,-0.1738663,-0.1743497,-0.1747126,-0.1749626,-0.1751793,-0.1754798,-0.1759364,-0.1766008,-0.1775483,-0.178793,-0.1803969,-0.1821212,-0.1837531,-0.1851727,-0.1863018,-0.1871326,-0.1877173,-0.1882245,-0.1887581,-0.1893727,-0.1900881,-0.1909505,-0.1919345,-0.1929803,-0.1940604,-0.1951598,-0.1961633,-0.1970259,-0.1977044,-0.1982245,-0.1986506,-0.199034,-0.1994826,-0.2000382,-0.200754,-0.2016826,-0.2028303,-0.2042201,-0.2058397,-0.2075322,-0.2090639,-0.2102535,-0.2110818,-0.2116642,-0.2121571,-0.2126445,-0.2132016,-0.2138878,-0.2147377,-0.2157239,-0.2167456,-0.2177907,-0.2188437,-0.2198927,-0.2208403,-0.2216009,-0.2221741,-0.222588,-0.2229106,-0.223257,-0.2237199,-0.2244401,-0.2254306,-0.2267003,-0.228279,-0.2301163,-0.2320969,-0.2340972,-0.2359395,-0.2375066,-0.2387656,-0.2397788,-0.2406861,-0.2416457,-0.2427534,-0.2440613,-0.2455565,-0.2471363,-0.2487409,-0.2502541,-0.2515895,-0.2526736,-0.2535077,-0.2540898,-0.254448,-0.2546565,-0.2548111,-0.2550355,-0.2553928,-0.2559096,-0.2566401,-0.2576265,-0.2588348,-0.2601572,-0.2614673,-0.2627327,-0.2638347,-0.2646157,-0.2651691,-0.2656432,-0.2661601,-0.2668075,-0.2676266,-0.2686216,-0.2697601,-0.2710253,-0.2722472,-0.2733505,-0.2743264,-0.2751941,-0.2759559,-0.276613,-0.2772064,-0.2777461,-0.278262,-0.2788484,-0.2795735,-0.2804611,-0.281552,-0.2828288,-0.2842081,-0.2855937,-0.2869114,-0.2880024,-0.2887964,-0.2893575,-0.2897856,-0.2902156,-0.2908076,-0.2916466,-0.2927596,-0.2940929,-0.2955918,-0.2971263,-0.2986059,-0.2999634,-0.3011104,-0.3020219,-0.3027538,-0.3033934,-0.3039714,-0.3045322,-0.3052069,-0.3060705,-0.3071492,-0.3084677,-0.3099751,-0.3115704,-0.3132312,-0.3148228,-0.3161765,-0.3173249,-0.3182345,-0.3189204,-0.3194793,-0.3200803,-0.3208788,-0.321927,-0.3231586,-0.3244978,-0.3258399,-0.3271139,-0.3282884,-0.3292838,-0.3300594,-0.3306105,-0.3309702,-0.331203,-0.3314376,-0.3317839,-0.3322419,-0.3329699,-0.333992,-0.3352701,-0.3367567,-0.3383369,-0.3398119,-0.3410848,-0.3420864,-0.342814,-0.3433349,-0.3437722,-0.344279,-0.3449387,-0.3458125,-0.3469654,-0.3483018,-0.3497199,-0.3512168,-0.3526682,-0.354038,-0.3552779,-0.356344,-0.3572281,-0.3579641,-0.3586006,-0.3592562,-0.3600254,-0.3609934,-0.3621803,-0.3636382,-0.365284,-0.3671218,-0.3690469,-0.3708056,-0.3722139,-0.3732801,-0.3740468,-0.37463,-0.3751698,-0.3757768,-0.3765822,-0.3776511,-0.378913,-0.3802552,-0.3816113,-0.3829355,-0.3841684,-0.3852365,-0.3861575,-0.3869292,-0.3875968,-0.3882007,-0.388771,-0.389396,-0.3902005,-0.3912172,-0.3925133,-0.3940786,-0.3957819,-0.3976157,-0.3994649,-0.4011488,-0.4025727,-0.4036637,-0.4045578,-0.4054161,-0.4063548,-0.4074805,-0.4088793,-0.4104687,-0.4121408,-0.4138126,-0.4154092,-0.4168301,-0.4180144,-0.4190177,-0.4198115,-0.420365,-0.4207398,-0.4210313,-0.4213272,-0.4217223,-0.4222954,-0.4230725,-0.4240241,-0.4251313,-0.4263523,-0.427596,-0.4287298,-0.4296748,-0.4303338,-0.4307688,-0.431092,-0.4314417,-0.4319038,-0.4325306,-0.4333168,-0.4342597,-0.4352681,-0.4361853,-0.4369326,-0.4374937,-0.4378231,-0.4379904,-0.4380619,-0.4380281,-0.4379526,-0.4379037,-0.4379105,-0.4380976,-0.4385214,-0.4391961,-0.4400646,-0.441035,-0.4420641,-0.4429832,-0.4437721,-0.4443814,-0.4447523,-0.4449383,-0.4450816,-0.4453575,-0.4458278,-0.4464683,-0.4472475,-0.4480642,-0.4487483,-0.4493252,-0.4497292,-0.4498696,-0.4497823,-0.4495394,-0.4491865,-0.4487735,-0.4484048,-0.4481626,-0.4480685,-0.4481963,-0.4486138,-0.4492286,-0.4499483,-0.4507187,-0.4514709,-0.4521029,-0.4525179,-0.4527156,-0.4527711,-0.4527361,-0.452794,-0.4530109,-0.4534408,-0.4540529,-0.4548412,-0.4556283,-0.4562937,-0.4568056,-0.4571376,-0.4572811,-0.4572746,-0.4571446,-0.4569326,-0.4567201,-0.4565993,-0.4566137,-0.4568022,-0.4571491,-0.4577139,-0.4584636,-0.4593235,-0.4601367,-0.4607817,-0.4612468,-0.4614924,-0.4615812,-0.461637,-0.4617679,-0.4620571,-0.4625417,-0.463317,-0.4642819,-0.4653393,-0.4663946,-0.4672815,-0.4679607,-0.4684816,-0.4687831,-0.4689628,-0.4690837,-0.4692033,-0.469448,-0.46985,-0.4704801,-0.4714103,-0.4726334,-0.4740963,-0.475711,-0.4773303,-0.4788009,-0.4800227,-0.4809882,-0.4816868,-0.4822636,-0.4828578,-0.4835052,-0.4843035,-0.4853665,-0.4866152,-0.4879853,-0.4894209,-0.4907852,-0.4919945,-0.4929939,-0.4937467,-0.4942866,-0.4946794,-0.4950269,-0.4953602,-0.4958376,-0.496512,-0.4974152,-0.4985506,-0.4999134,-0.5014366,-0.5030344,-0.5045366,-0.5059251,-0.5071375,-0.5081566,-0.5090559,-0.5100282,-0.511114,-0.5123294,-0.5137313,-0.5153236,-0.5169794,-0.518622,-0.5202139,-0.5216981,-0.5230005,-0.5240729,-0.5249524,-0.5256984,-0.5263107,-0.5269285,-0.5275926,-0.5283034,-0.5291449,-0.5301834,-0.5314319,-0.5328838,-0.5345065,-0.5361813,-0.5377989,-0.5391959,-0.5403114,-0.5411708,-0.5419256,-0.5427715,-0.5438578,-0.5452703,-0.546934,-0.5487638,-0.5506448,-0.5524718,-0.5541686,-0.5557059,-0.5570719,-0.558316,-0.5593897,-0.5603349,-0.5612031,-0.5620937,-0.563066,-0.5641194,-0.5652919,-0.566649,-0.568189,-0.5698318,-0.5715207,-0.5731227,-0.5744959,-0.5756155,-0.5764885,-0.5771569,-0.5778642,-0.5787629,-0.5799203,-0.5812525,-0.5826697,-0.5841259,-0.585516,-0.5867379,-0.5877547,-0.5885847,-0.5892139,-0.589622,-0.5898721,-0.5900643,-0.5903186,-0.5906682,-0.5911516,-0.591871,0.407162,0.4059821,0.4046762,0.4033504,0.4020723,0.4009087,0.3999438,0.3992249,0.3986869,0.3981294,0.3974555,0.3965086,0.395281,0.3938503,0.3923412,0.3908879,0.3896155,0.3885519,0.3877619,0.3872501,0.3869723,0.3868407,0.3867853,0.3867388,0.3866163,0.3863277,0.3858681,0.3851968,0.3843663,0.3834323,0.3824491,0.3815369,0.3807093,0.3800411,0.3795087,0.379073,0.3786283,0.3780893,0.3773285,0.3763047,0.3750207,0.3735887,0.3721539,0.3708819,0.3699216,0.3692095,0.3686765,0.3683027,0.3680637,0.3679165,0.3677735,0.3675973,0.3673329,0.36686,0.3661429,0.3652115,0.3640896,0.3628343,0.3615576,0.3603287,0.3591945,0.358192,0.3573045,0.3565386,0.3557784,0.3548758,0.353768,0.3523876,0.3507571,0.349014,0.3472848,0.3456994,0.3443314,0.3431949,0.3422748,0.3415403,0.3409251,0.3403459,0.3397076,0.3389312,0.3379205,0.336675,0.3352213,0.3336178,0.3319575,0.3302969,0.3287207,0.3273434,0.3262115,0.3252907,0.3244947,0.3237071,0.322832,0.3218105,0.3206123,0.3191668,0.3174939,0.3157151,0.3139796,0.3124056,0.3110212,0.3098591,0.308931,0.3081644,0.3074362,0.3066518,0.3057504,0.3047263,0.3035457,0.3021777,0.300589,0.2988293,0.2970112,0.295255,0.2936468,0.2922281,0.2910218,0.2899699,0.2889681,0.2879015,0.2866975,0.2852947,0.2836833,0.2819242,0.2801328,0.27843,0.2768993,0.2756441,0.2746741,0.2739204,0.2733111,0.2727715,0.2722378,0.2716499,0.2709406,0.2700883,0.269105,0.2679878,0.2666981,0.26526,0.2637757,0.2623745,0.2611697,0.260142,0.2592747,0.2585233,0.2577832,0.2569335,0.2558846,0.2546057,0.2531644,0.2517073,0.2503537,0.2491601,0.2481804,0.2474214,0.2468931,0.2465087,0.2462295,0.2459726,0.2456633,0.2452479,0.244665,0.243926,0.2430779,0.2421528,0.2411597,0.2401232,0.2391601,0.2383518,0.2377399,0.2373475,0.2371293,0.2369998,0.2368231,0.2365345,0.2360397,0.2353686,0.2346265,0.2339287,0.233391,0.2330873,0.2330242,0.2331599,0.2334241,0.2337907,0.2342148,0.2346222,0.2349595,0.2351473,0.2351954,0.2351179,0.2348896,0.2345891,0.2342864,0.2339984,0.2338012,0.2337441,0.2338041,0.2339462,0.2340987,0.2341778,0.2340985,0.2338171,0.2332871,0.2325786,0.2318121,0.2311092,0.2305546,0.2302496,0.230176,0.2303093,0.2305878,0.2309331,0.2312171,0.2313942,0.2314777,0.2313825,0.2310581,0.2306019,0.2300216,0.2293543,0.2287044,0.2281613,0.2277836,0.2275996,0.2276012,0.2276742,0.2277309,0.2276289,0.2272421,0.2265794,0.2256807,0.2246729,0.2237255,0.2229103,0.2223074,0.2219417,0.2217453,0.2216414,0.2215693,0.2215028,0.2213852,0.2211653,0.2207887,0.2202304,0.2194995,0.2186272,0.2176704,0.2167275,0.2158665,0.2151613,0.2146522,0.2142952,0.2140333,0.2137378,0.2133134,0.2126868,0.2118177,0.2106727,0.2093294,0.2079841,0.2067072,0.2056199,0.2048254,0.2043001,0.2039182,0.2036157,0.2033342,0.2030543,0.2026915,0.2021023,0.2012403,0.2001336,0.1988924,0.1975996,0.1962677,0.1949966,0.1939034,0.192974,0.1922201,0.1915918,0.1910042,0.1903831,0.1896703,0.1887299,0.1875452,0.1861716,0.1846832,0.1832009,0.1818767,0.1807739,0.1798958,0.179196,0.1785976,0.1780257,0.1775044,0.1769433,0.1762223,0.1753341,0.1742773,0.1730993,0.171851,0.170581,0.169325,0.168202,0.1672193,0.1663982,0.1656965,0.1650286,0.1643628,0.1636066,0.1627164,0.1616829,0.1604596,0.1591321,0.1578115,0.1566593,0.1557138,0.1549621,0.1544016,0.1539445,0.1535563,0.1532185,0.152786,0.1521619,0.1513126,0.1502933,0.149159,0.1479114,0.1465703,0.1452167,0.1439547,0.1428441,0.1419493,0.1412421,0.1406089,0.13996,0.139178,0.1382469,0.1371174,0.1358355,0.1344069,0.1330114,0.1317651,0.1307355,0.1299063,0.1292044,0.1286034,0.1280306,0.1274282,0.1267676,0.1260142,0.1251217,0.124069,0.1228478,0.1215383,0.1201977,0.1189541,0.1178054,0.1167792,0.1159283,0.1152926,0.1148687,0.114512,0.1140766,0.1134437,0.1125242,0.1113696,0.1100166,0.1086228,0.1073451,0.1062581,0.1053967,0.1048136,0.1044171,0.104136,0.1038786,0.1036438,0.1033252,0.1028553,0.1022133,0.1013664,0.1004104,0.0994201,0.0984205,0.0973963,0.0964105,0.0955112,0.0947243,0.0940878,0.0935359,0.092928,0.0921017,0.0910041,0.0895952,0.087864,0.085979,0.084122,0.082422,0.0810019,0.0798494,0.0789124,0.0781603,0.0775379,0.076986,0.0763854,0.0756515,0.0747554,0.0736737,0.0724277,0.0710421,0.06958,0.068057,0.0665773,0.0651958,0.0639478,0.0628253,0.0618165,0.0608625,0.0597829,0.0584645,0.0568963,0.0550361,0.0529867,0.0509225,0.0490444,0.0473929,0.046018,0.0449306,0.0440233,0.0432633,0.0424616,0.0415423,0.0406041,0.0395939,0.0384778,0.0373805,0.0362544,0.0350516,0.0338199,0.0325908,0.0314887,0.0305692,0.0298096,0.0292008,0.0286575,0.0280634,0.0272775,0.02614,0.0246654,0.0229461,0.0210328,0.0190528,0.0172211,0.015727,0.0145629,0.0136468,0.0128564,0.0120682,0.0112018,0.0102345,0.0091356,0.0078733,0.0065087,0.005057,0.0035143,0.0019577,0.0003961,-0.0010964,-0.0024666,-0.0036753,-0.0047748,-0.0058052,-0.0068489,-0.0080023,-0.0093762,-0.0109737,-0.0127386,-0.0146162,-0.0164844,-0.0182953,-0.0199309,-0.0212789,-0.022344,-0.0231643,-0.0238161,-0.024386,-0.0249139,-0.0254723,-0.0261018,-0.0268325,-0.0277102,-0.028755,-0.0299236,-0.0311457,-0.0323353,-0.0333976,-0.0342898,-0.0350014,-0.035652,-0.0363484,-0.0371592,-0.0382182,-0.0395168,-0.0410184,-0.0426741,-0.0443638,-0.0459146,-0.0472281,-0.0482684,-0.0490929,-0.0498,-0.0503451,-0.0507459,-0.0511239,-0.0515863,-0.0521632,-0.0528319,-0.0535745,-0.0543157,-0.0550246,-0.0556846,-0.0562206,-0.0566637,-0.0569728,-0.0571654,-0.0572466,-0.0572968,-0.0573964,-0.0576007,-0.0579517,-0.0584559,-0.0590903,-0.0597416,-0.0601997,-0.0604112,-0.0604071,-0.0601521,-0.0597036,-0.0591313,-0.0585172,-0.0579359,-0.0574452,-0.0571057,-0.0569171,-0.0568565,-0.0568326,-0.056872,-0.0569079,-0.0568525,-0.0566704,-0.0563329,-0.0558222,-0.0552238,-0.0546071,-0.0540673,-0.0536725,-0.0534837,-0.0535455,-0.0537667,-0.0540701,-0.0543906,-0.0545781,-0.0546296,-0.0544308,-0.0540139,-0.0533783,-0.0526049,-0.0518786,-0.0511698,-0.0505898,-0.050196,-0.0499783,-0.049865,-0.0497812,-0.0496963,-0.049544,-0.0492949,-0.0489532,-0.0485605,-0.0481237,-0.0476816,-0.0472799,-0.047036,-0.0470445,-0.0473514,-0.0479508,-0.0487021,-0.049433,-0.050054,-0.0504598,-0.0506086,-0.0505344,-0.050247,-0.0498517,-0.0494691,-0.0491418,-0.0489237,-0.0489021,-0.0490405,-0.0492646,-0.0496033,-0.0500057,-0.050342,-0.0506184,-0.0508092,-0.0509038,-0.0509123,-0.0508265,-0.0507401,-0.0507115,-0.0508425,-0.0512322,-0.0519192,-0.0528512,-0.0539295,-0.0549675,-0.0557652,-0.0562972,-0.056552,-0.0565563,-0.0564303,-0.0562964,-0.0561867,-0.056177,-0.0563074,-0.0565634,-0.0569133,-0.0573044,-0.0577616,-0.0582715,-0.0587261,-0.0591585,-0.0594893,-0.0596822,-0.0597941,-0.0598922,-0.0601111,-0.0604536,-0.0610944,-0.0621296,-0.0634884,-0.0651012,-0.06681,-0.0684354,-0.069849,-0.0710427,-0.0720137,-0.0728349,-0.073613,-0.0743748,-0.0752193,-0.0761093,-0.0770858,-0.078179,-0.0793474,-0.0805924,-0.0818148,-0.0829448,-0.0839569,-0.0848089,-0.0855201,-0.0861216,-0.0866628,-0.0871951,-0.0878312,-0.0886554,-0.0897378,-0.0911139,-0.0927171,-0.0944554,-0.0961559,-0.0977149,-0.0990695,-0.1001558,-0.1009802,-0.1016728,-0.102258,-0.1028462,-0.1035296,-0.1043464,-0.1053267,-0.1064238,-0.1075889,-0.108773,-0.1098785,-0.1108975,-0.1117373,-0.1124124,-0.1129731,-0.1134602,-0.1139529,-0.1145088,-0.1152079,-0.1161334,-0.1173226,-0.1186824,-0.1200655,-0.121435,-0.1226696,-0.1236661,-0.1244069,-0.1249324,-0.1253634,-0.1257788,-0.1262487,-0.1267999,-0.1274692,-0.1281861,-0.1289061,-0.1296197,-0.1303459,-0.1309864,-0.1315385,-0.1320384,-0.132418,-0.1326918,-0.1328254,-0.1328997,-0.1330995,-0.1334427,-0.1339947,-0.1347532,-0.1357081,-0.1368234,-0.1379412,-0.1389313,-0.1396551,-0.1402251,-0.1405584,-0.1407866,-0.1409717,-0.1411341,-0.1413431,-0.1416403,-0.142068,-0.1425765,-0.1431287,-0.1437332,-0.1443285,-0.1449086,-0.1454639,-0.1459512,-0.1463243,-0.1466342,-0.146898,-0.1471783,-0.1475617,-0.1480774,-0.1488019,-0.1497084,-0.1508186,-0.1519993,-0.1530898,-0.154015,-0.1547263,-0.1552258,-0.1555832,-0.1558929,-0.1562058,-0.1565729,-0.1570404,-0.1576861,-0.1584192,-0.1592419,-0.1599991,-0.1607584,-0.161462,-0.162082,-0.1626259,-0.1630886,-0.1634715,-0.1638169,-0.1641776,-0.1646608,-0.165367,-0.1663508,-0.1676545,-0.1691437,-0.1707643,-0.172393,-0.173829,-0.1749995,-0.1758482,-0.176477,-0.1769527,-0.1773944,-0.1778379,-0.1784449,-0.1791941,-0.1800813,-0.1811576,-0.1823239,-0.1835345,-0.1847049,-0.1857511,-0.1867397,-0.1876246,-0.1884002,-0.1891227,-0.1896859,-0.1902936,-0.1910248,-0.1919967,-0.1932238,-0.1946539,-0.1962134,-0.1978061,-0.1993427,-0.2007236,-0.201835,-0.202759,-0.2035549,-0.204434,-0.2053128,-0.2063351,-0.2075217,-0.2088501,-0.2102358,-0.2117117,-0.2131949,-0.2146877,-0.21606,-0.2172734,-0.2183196,-0.2192328,-0.2199886,-0.2207286,-0.2214911,-0.2223387,-0.2233099,-0.2244802,-0.2257963,-0.2273029,-0.2289236,-0.2305818,-0.2321124,-0.2334559,-0.2345625,-0.2354511,-0.2361779,-0.2368905,-0.2376858,-0.2385587,-0.2395253,-0.2405632,-0.2416262,-0.242771,-0.243869,-0.2449046,-0.2458755,-0.2468446,-0.2476913,-0.2485734,-0.2493957,-0.2502152,-0.251107,-0.2521187,-0.2533277,-0.2548156,-0.2564285,-0.2581686,-0.259986,-0.2618099,-0.2634317,-0.2648411,-0.2659974,-0.2669922,-0.267792,-0.2685655,-0.2693919,-0.2702053,-0.2710925,-0.2719747,-0.2728897,-0.2739032,-0.2748785,-0.2757781,-0.2765935,-0.2772666,-0.2778691,-0.2784124,-0.2789037,-0.2794069,-0.2800741,-0.2808927,-0.2818626,-0.2830019,-0.284185,-0.2853088,-0.286368,-0.2872801,-0.2879326,-0.2884357,-0.2887864,-0.2889789,-0.2891863,-0.289423,-0.2897158,-0.2900703,-0.2904713,-0.2908787,-0.2912423,-0.2915207,-0.2916837,-0.291741,-0.2917155,-0.2916116,-0.291435,-0.2911699,-0.2908853,-0.2906594,-0.2905359,-0.2906884,-0.2910731,-0.2915673,-0.292078,-0.2924875,-0.2927856,-0.2928548,-0.2927358,-0.292488,-0.2921571,-0.2918349,-0.2915733,-0.2913858,-0.2913334,-0.2914233,-0.2915932,-0.291864,-0.2920252,-0.2921545,-0.2922087,-0.2921942,-0.2920788,-0.2918672,-0.2915663,-0.2912163,-0.2909287,-0.2907365,-0.2907953,-0.2911301,-0.2916532,-0.2923189,-0.293002,-0.2935975,-0.2939999,-0.2941472,-0.2940988,-0.2939737,-0.293787,-0.2936193,-0.2934874,-0.2934778,-0.2935821,-0.2937063,-0.2939292,-0.2941708,-0.2944275,-0.2946166,-0.2946875,-0.29467,-0.294552,-0.2944052,-0.2942105,-0.2941306,-0.2942091,-0.294533,-0.2951083,-0.2959014,-0.2968973,-0.2978942,-0.2988667,-0.2997055,-0.3002965,-0.3006635,-0.3008944,-0.3010635,-0.3012209,-0.3015087,-0.3018715,-0.3023213,-0.3028367,-0.3034338,-0.304091,-0.3047948,-0.3055259,-0.3061315,-0.3066647,-0.307082,-0.3074909,-0.3079028,-0.3084021,-0.3090395,-0.3099115,-0.3110042,-0.3124107,-0.3139996,-0.3157601,-0.3175211,-0.319138,-0.3204766,-0.3216182,-0.3226178,-0.3235329,-0.3244539,-0.3254623,-0.326607,-0.3278931,-0.3292313,-0.3306287,-0.3320231,-0.3333657,-0.3346414,-0.3358121,-0.3367626,-0.3375436,-0.3381455,-0.338648,-0.3391609,-0.3397276,-0.3404065,-0.3412755,-0.3423629,-0.3436795,-0.3451538,-0.346742,-0.3482719,-0.3496439,-0.3508055,-0.3517686,-0.3526055,-0.3534082,-0.35429,-0.3552953,-0.3564179,-0.3576615,-0.359078,-0.3604839,-0.361876,-0.3632018,-0.3643662,-0.3653453,-0.3662336,-0.3669562,-0.367641,-0.3682948,-0.3690017,-0.3698043,-0.3707386,-0.3718725,-0.3731991,-0.3747028,-0.3762543,-0.3777368,-0.3791615,-0.3804014,-0.3814265,-0.382277,-0.3830439,-0.3838029,-0.3846196,-0.3855326,-0.3865605,-0.3877204,-0.3889306,-0.3900123,-0.3910202,-0.3919318,-0.3927132,-0.3933476,-0.3939089,-0.394459,-0.3950209,-0.395587,-0.3962759,-0.3971238,-0.3981622,-0.3993857,-0.4007688,-0.4022264,-0.4037374,-0.4051214,-0.406358,-0.4073902,-0.4082108,-0.4089386,-0.4097369,-0.4106963,-0.4118613,-0.4132032,-0.4146879,-0.4162057,-0.4176606,-0.4190251,-0.4202639,-0.4214015,-0.4223973,-0.4232717,-0.4240576,-0.4247775,-0.4255356,-0.4263749,-0.4272904,-0.4283691,-0.4295802,-0.4310033,-0.4325257,-0.4340079,-0.435407,-0.4366613,-0.4377221,-0.4385792,-0.4393161,-0.4399923,-0.4407868,-0.441704,-0.4427023,-0.4438035,-0.4449178,-0.4460195,-0.447072,-0.4479839,-0.4487805,-0.4494702,-0.4499563,-0.4503629,-0.4508084,-0.4512572,-0.4517473,-0.4523796,-0.4532969,-0.4543867,-0.4557233,-0.4571559,-0.4586347,-0.4600426,-0.4613194,-0.4623753,-0.4631819,-0.4637774,-0.4643405,-0.4649001,-0.4655683,-0.4663577,-0.4672419,-0.4681449,-0.4690434,-0.4698782,-0.4706055,-0.4712764,-0.4718003,-0.4722693,-0.4726292,-0.4729098,-0.4731735,-0.4735387,-0.4740147,-0.4746345,-0.4754523,-0.4764894,-0.4776957,-0.4790789,-0.4805151,-0.4820148,-0.4833854,-0.4846095,-0.4857596,-0.4868784,-0.488049,-0.4893612,-0.4908266,-0.4923342,-0.4939065,-0.495518,-0.4970046,-0.4984063,-0.4997391,-0.5010083,-0.5021403,-0.5032003,-0.5042096,-0.505184,-0.5061939,-0.5072802,-0.5085032,-0.5098862,-0.5114355,-0.5131676,-0.5149815,-0.5168716,-0.5186569,-0.5201913,-0.521533,-0.5226707,-0.5236948,-0.5247246,-0.5258416,-0.5270493,-0.5282894,-0.5295698,-0.5308721,-0.5322109,-0.5334813,-0.5347214,-0.5358561,-0.5368878,-0.5378023,-0.5386306,-0.5393896,-0.5401482,-0.5409438,-0.541795,-0.5426891,-0.5437017,-0.5448867,-0.5462367,-0.547697,-0.5491872,-0.5505781,-0.5518723,-0.5529537,-0.5538737,-0.5546917,-0.5555697,-0.5565,-0.5574594,-0.5584825,-0.5595604,-0.5606067,-0.5617098,-0.5626904,-0.5635963,-0.5643394,-0.5649335,-0.5653893,-0.5657876,-0.5661715,-0.5666026,-0.5670882,-0.5677088,-0.5684488,-0.5693165,-0.5703361,-0.5714601,-0.5726332,-0.5738683,-0.5750167,-0.5759976,-0.5768294,-0.5774462,-0.5780164,-0.5786755,-0.5794382,-0.5803437,-0.581244,-0.5820534,-0.5828393,-0.5835172,-0.5840993,-0.5844996,-0.5847559,-0.5849417,-0.585003,-0.5849781,-0.5849092,-0.5848216,-0.5847708,-0.5848061,-0.5850219,-0.5853398,-0.5857408,-0.5861884,-0.5865988,-0.586841,-0.5868807,0.4132345,0.4134563,0.4137188,0.413932,0.4140274,0.4139998,0.4138929,0.413774,0.4136897,0.4136801,0.4137513,0.4139348,0.4142355,0.4146363,0.4150832,0.4155227,0.4159138,0.4162084,0.4163672,0.416354,0.4161583,0.4158011,0.4153146,0.4147671,0.4142495,0.4138333,0.4135566,0.4134222,0.4133964,0.4134157,0.4133994,0.4132824,0.4130384,0.4126804,0.412252,0.4118176,0.4114371,0.4111589,0.4110113,0.4110009,0.4111126,0.4113135,0.4115631,0.4118108,0.4120024,0.4120871,0.4120219,0.4117782,0.4113546,0.4107876,0.410142,0.4094981,0.4089331,0.4084968,0.4081985,0.4080079,0.4078645,0.4076959,0.4074364,0.4070425,0.406502,0.4058413,0.4051177,0.4043987,0.4037448,0.4032009,0.4027876,0.4025005,0.4023167,0.4022018,0.4021086,0.4019848,0.4017763,0.401432,0.4009117,0.4001982,0.3993052,0.3982806,0.3972031,0.3961656,0.3952443,0.3944747,0.3938421,0.393289,0.3927404,0.3921248,0.3913948,0.3905342,0.3895572,0.3885034,0.3874274,0.3863831,0.3854154,0.3845506,0.3837953,0.3831344,0.3825374,0.3819632,0.3813637,0.3806888,0.3798905,0.3789289,0.3777808,0.3764461,0.3749531,0.3733627,0.3717712,0.3702619,0.3688975,0.3676913,0.3666039,0.3655621,0.3644894,0.3633321,0.3620716,0.3607216,0.3593178,0.3579062,0.3565342,0.3552436,0.3540639,0.3530076,0.3520678,0.351221,0.3504312,0.3496546,0.3488453,0.3479587,0.3469566,0.3458112,0.3445093,0.3430602,0.3415009,0.3398977,0.3383329,0.3368807,0.3355817,0.3344246,0.3333517,0.3322845,0.3311565,0.3299373,0.3286373,0.3272956,0.3259622,0.3246842,0.3234986,0.3224305,0.3214923,0.3206805,0.3199754,0.3193436,0.3187425,0.3181266,0.3174536,0.3166877,0.315803,0.3147868,0.3136429,0.3123951,0.3110891,0.3097876,0.3085577,0.3074488,0.3064723,0.3055925,0.3047395,0.3038377,0.3028379,0.3017355,0.3005682,0.2993961,0.2982795,0.297264,0.2963768,0.2956296,0.2950196,0.2945306,0.2941323,0.2937842,0.2934411,0.2930598,0.2926036,0.2920464,0.2913749,0.2905898,0.2897057,0.2887493,0.2877551,0.2867592,0.2857893,0.2848542,0.2839343,0.282981,0.2819307,0.2807297,0.2793598,0.2778498,0.2762677,0.2746968,0.273212,0.2718664,0.2706886,0.2696865,0.2688482,0.268141,0.2675133,0.2669036,0.2662553,0.2655269,0.2646916,0.2637353,0.2626594,0.2614845,0.2602502,0.2590166,0.2578557,0.2568066,0.2558585,0.2549908,0.2541706,0.2533233,0.2523089,0.2511937,0.2500181,0.248766,0.2474694,0.2461844,0.244967,0.2438651,0.242882,0.2420138,0.2412533,0.2406227,0.239965,0.2392461,0.2384726,0.2375839,0.2365621,0.2353622,0.2340117,0.2325639,0.2310498,0.2295791,0.2281184,0.226795,0.2255119,0.2242383,0.2229773,0.2216755,0.2202415,0.2187956,0.2172661,0.2156779,0.214112,0.2126358,0.2112672,0.210035,0.2089435,0.2079836,0.207128,0.2063308,0.2055921,0.2048013,0.203925,0.2029091,0.2017371,0.2003868,0.1988878,0.1973082,0.19566,0.1939748,0.1923377,0.1907186,0.1891934,0.1877138,0.1861873,0.1845624,0.1828295,0.1809506,0.1790276,0.1771101,0.1752409,0.1734574,0.1717958,0.1703027,0.1689711,0.1676869,0.1664695,0.165294,0.1641528,0.1629145,0.1616329,0.1602045,0.1586867,0.1570626,0.1553848,0.1536855,0.1520698,0.1505246,0.1491414,0.1478537,0.1467432,0.1457234,0.1446997,0.143612,0.1424051,0.1411064,0.1397498,0.1384684,0.1372217,0.1360737,0.1350567,0.1341545,0.1333521,0.1326948,0.1321533,0.1315781,0.1310061,0.1303382,0.1295639,0.1286992,0.1277261,0.1266968,0.1255574,0.124438,0.1233662,0.1224204,0.1215843,0.1208613,0.1202393,0.1196088,0.1189543,0.1181438,0.1172698,0.116385,0.1154802,0.1146356,0.1138746,0.1132795,0.1128027,0.1124099,0.1121255,0.1119524,0.111846,0.1117701,0.1116373,0.1114607,0.1112088,0.1107777,0.1102225,0.1095362,0.1087844,0.108056,0.1074176,0.1069315,0.1065671,0.1062908,0.105916,0.1055454,0.1050846,0.1045761,0.1040488,0.1035212,0.1030844,0.1027973,0.1026668,0.102717,0.1029132,0.1031841,0.1035604]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment