[ Launch: just another inlet to tributary ] 4552671 by ejfox
See Previous Inlet [ Gist ]
-
-
Save ejfox/4552671 to your computer and use it in GitHub Desktop.
just another inlet to tributary
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"editor_editor":{"coffee":false,"vim":false,"emacs":false,"width":600,"height":300,"hide":false}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Try changing all these parameters | |
//Layout properties | |
var n = 35; | |
var m = 30; | |
trib.spacing = 20.769230769230802; | |
trib.opacity = 0.8; trib_options.opacity = {"min":0, "max":1}; | |
trib.stroke_width = 10; | |
//Sin wave function | |
//y = amplitude * sin( omega * theta + phase) | |
trib.amplitude = 21; | |
trib.theta = 11; | |
trib.omega = 0.1; | |
trib.phase = 0.5; | |
var colors = [ | |
'#D40067' | |
, '#4DA9DF' | |
, '#00ff00' | |
, '#ff0000' | |
] | |
//interpolate over multiple colors | |
var color_scale = function(i) { | |
var num_interps = colors.length -1 | |
var ord = d3.scale.linear() | |
.domain([0, n]) | |
.range([0, num_interps]) | |
var section = parseInt(ord(i)) | |
//console.log("section", section) | |
var section_size = n / num_interps | |
//get the two colors we want to interpolate between | |
var col_range = [colors[section], colors[section+1]] | |
var col_scale = d3.scale.linear() | |
.domain([section * section_size, (section+1) * section_size]) | |
//.interpolate(d3.interpolateRgb) | |
.interpolate(d3.interpolateHsl) | |
.range(col_range) | |
return col_scale(i) | |
} | |
/* | |
var color = d3.scale.linear() | |
.domain([0, n]) | |
//.interpolate(d3.interpolateRgb) | |
.interpolate(d3.interpolateHsl) | |
.range(['#D40067', '#4DA9DF']) | |
*/ | |
var color = color_scale | |
var sw = tributary.sw * 1.1;//parseInt(d3.select("svg").style("width")) | |
//make the sin waves extend past the width a little | |
//sw += .1 * sw | |
var sh = tributary.sh;//parseInt(d3.select("svg").style("height")) | |
var lines = [ ]; | |
for (i in d3.range(n)) { | |
var data = d3.range(m) | |
lines.push({ | |
index: i, | |
data: data | |
}) | |
} | |
var xscale = d3.scale.linear() | |
.domain([0, m]) | |
.range([-.1*sw, sw]) | |
function line_maker( data ) { | |
var freq = trib.omega * data.index | |
var svgline = d3.svg.line() | |
.x(function(d,i) { | |
return xscale(d); | |
}) | |
.y(function(d,i) { | |
var th = d/m * trib.theta | |
var ph = (n-data.index) * trib.phase | |
var y = trib.amplitude * Math.sin(freq * th + ph ); | |
return y | |
}) | |
.interpolate("basis") | |
//.interpolate("linear") | |
return svgline(data.data); | |
} | |
function lineenter(d, i) { | |
d3.select(this).selectAll("path.path") | |
.data([d]) | |
.enter() | |
.append("svg:path") | |
.attr("class", "path") | |
.attr("stroke-width", trib.stroke_width) | |
//.attr("stroke-width", function(e,i) { return e.width;}) | |
.attr("stroke", "#fff") | |
.attr("fill", "none") | |
update_spacing() | |
} | |
function update_spacing() | |
{ | |
var th = trib.spacing * n; | |
var hscale = d3.scale.linear() | |
.domain([0, n]) | |
.range([0, sh]) | |
d3.selectAll("g.line path") | |
.attr("transform", function(d, i) { | |
//return "translate(" + [0, th - spacing * d.index] + ")"; | |
return "translate(" + [0, 10+sh/2 + th / 2 - trib.spacing * d.index] + ")"; | |
}) | |
} | |
var svg = d3.select("svg") | |
.append("svg:g") | |
var line = svg.selectAll("g.line") | |
.data(lines) | |
.enter().append("svg:g") | |
.attr("class", "line") | |
.each(lineenter); | |
/* | |
var opacity = d3.scale.linear() | |
.domain([0, n]) | |
.range([1, .4]) | |
*/ | |
d3.selectAll("g.line path") | |
.attr("d", function(d,i) { | |
return line_maker(d) | |
}) | |
.attr("stroke", function(d,i) { return color(d.index);}) | |
.attr("opacity", trib.opacity); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<svg class="tributary_svg" width="1641" height="781"><g><g class="line"><path class="path" stroke-width="10" stroke="#d40067" fill="none" transform="translate(0,763.961538461539)" d="M-180.51000000000002,-20.48814611483131C-180.51,-20.48814611483131,-180.51,-20.48814611483131,-169.47883333333334,-20.48814611483131C-158.4476666666667,-20.48814611483131,-136.38533333333334,-20.48814611483131,-114.32300000000002,-20.48814611483131C-92.26066666666668,-20.48814611483131,-70.19833333333335,-20.48814611483131,-48.13600000000001,-20.48814611483131C-26.073666666666675,-20.48814611483131,-4.011333333333329,-20.48814611483131,18.051000000000002,-20.48814611483131C40.11333333333333,-20.48814611483131,62.17566666666665,-20.48814611483131,84.23799999999999,-20.48814611483131C106.3003333333333,-20.48814611483131,128.36266666666666,-20.48814611483131,150.42499999999998,-20.48814611483131C172.4873333333333,-20.48814611483131,194.54966666666667,-20.48814611483131,216.612,-20.48814611483131C238.67433333333332,-20.48814611483131,260.7366666666667,-20.48814611483131,282.799,-20.48814611483131C304.8613333333333,-20.48814611483131,326.92366666666663,-20.48814611483131,348.986,-20.48814611483131C371.0483333333333,-20.48814611483131,393.11066666666665,-20.48814611483131,415.173,-20.48814611483131C437.2353333333333,-20.48814611483131,459.2976666666666,-20.48814611483131,481.35999999999996,-20.48814611483131C503.4223333333333,-20.48814611483131,525.4846666666667,-20.48814611483131,547.547,-20.48814611483131C569.6093333333333,-20.48814611483131,591.6716666666667,-20.48814611483131,613.734,-20.48814611483131C635.7963333333335,-20.48814611483131,657.8586666666667,-20.48814611483131,679.921,-20.48814611483131C701.9833333333333,-20.48814611483131,724.0456666666666,-20.48814611483131,746.108,-20.48814611483131C768.1703333333334,-20.48814611483131,790.2326666666667,-20.48814611483131,812.2949999999998,-20.48814611483131C834.3573333333333,-20.48814611483131,856.4196666666666,-20.48814611483131,878.4819999999999,-20.48814611483131C900.5443333333333,-20.48814611483131,922.6066666666667,-20.48814611483131,944.669,-20.48814611483131C966.7313333333334,-20.48814611483131,988.7936666666667,-20.48814611483131,1010.856,-20.48814611483131C1032.9183333333333,-20.48814611483131,1054.9806666666668,-20.48814611483131,1077.0430000000001,-20.48814611483131C1099.1053333333334,-20.48814611483131,1121.1676666666667,-20.48814611483131,1143.23,-20.48814611483131C1165.2923333333333,-20.48814611483131,1187.3546666666666,-20.48814611483131,1209.417,-20.48814611483131C1231.4793333333332,-20.48814611483131,1253.5416666666665,-20.48814611483131,1275.604,-20.48814611483131C1297.6663333333331,-20.48814611483131,1319.7286666666664,-20.48814611483131,1341.791,-20.48814611483131C1363.8533333333332,-20.48814611483131,1385.9156666666668,-20.48814611483131,1407.978,-20.48814611483131C1430.0403333333336,-20.48814611483131,1452.102666666667,-20.48814611483131,1474.1650000000002,-20.48814611483131C1496.2273333333333,-20.48814611483131,1518.2896666666666,-20.48814611483131,1540.3519999999999,-20.48814611483131C1562.4143333333332,-20.48814611483131,1584.4766666666667,-20.48814611483131,1606.539,-20.48814611483131C1628.6013333333335,-20.48814611483131,1650.6636666666668,-20.48814611483131,1672.726,-20.48814611483131C1694.7883333333334,-20.48814611483131,1716.8506666666667,-20.48814611483131,1727.8818333333334,-20.48814611483131C1738.9130000000002,-20.48814611483131,1738.9130000000002,-20.48814611483131,1738.913,-20.48814611483131" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#d90392" fill="none" transform="translate(0,743.1923076923082)" d="M-180.51000000000002,-20.189347329470692C-180.51,-20.189347329470692,-180.51,-20.189347329470692,-169.47883333333334,-20.222390344498194C-158.4476666666667,-20.255433359525696,-136.38533333333334,-20.321519389580704,-114.32300000000002,-20.38303759762837C-92.26066666666668,-20.444555805676032,-70.19833333333335,-20.501506191716352,-48.13600000000001,-20.55385047672322C-26.073666666666675,-20.606194761730087,-4.011333333333329,-20.653932945703506,18.051000000000002,-20.697032941570544C40.11333333333333,-20.74013293743758,62.17566666666665,-20.77859474519824,84.23799999999999,-20.812392512867206C106.3003333333333,-20.84619028053617,128.36266666666666,-20.875324008113445,150.42499999999998,-20.899774113454008C172.4873333333333,-20.92422421879457,194.54966666666667,-20.94399070189842,216.612,-20.959060276784985C238.67433333333332,-20.97412985167155,260.7366666666667,-20.984502518340825,282.799,-20.99017130483695C304.8613333333333,-20.99584009133307,326.92366666666663,-20.996804997656035,348.986,-20.99306537524704C371.0483333333333,-20.98932575283804,393.11066666666665,-20.98088160169708,415.173,-20.967738597534275C437.2353333333333,-20.954595593371465,459.2976666666666,-20.93675373618681,481.35999999999996,-20.914225018329514C503.4223333333333,-20.891696300472216,525.4846666666667,-20.86448072194228,547.547,-20.83259657560676C569.6093333333333,-20.800712429271243,591.6716666666667,-20.764159715130145,613.734,-20.722963001977398C635.7963333333335,-20.681766288824647,657.8586666666667,-20.63592557666025,679.921,-20.585471677177317C701.9833333333333,-20.535017777694385,724.0456666666666,-20.47995069089292,746.108,-20.420307429945254C768.1703333333334,-20.360664168997584,790.2326666666667,-20.296444733903716,812.2949999999998,-20.22769228955863C834.3573333333333,-20.15893984521354,856.4196666666666,-20.085654391617233,878.4819999999999,-20.00788518736102C900.5443333333333,-19.9301159831048,922.6066666666667,-19.84786302818867,944.669,-19.761181608682275C966.7313333333334,-19.67450018917588,988.7936666666667,-19.58339030507922,1010.856,-19.487913195619512C1032.9183333333333,-19.39243608615981,1054.9806666666668,-19.292591751337063,1077.0430000000001,-19.188447301212584C1099.1053333333334,-19.084302851088108,1121.1676666666667,-18.975858285661896,1143.23,-18.863186495613718C1165.2923333333333,-18.750514705565536,1187.3546666666666,-18.633615690895386,1209.417,-18.51256802491497C1231.4793333333332,-18.39152035893455,1253.5416666666665,-18.266324041643863,1275.604,-18.137063223360936C1297.6663333333331,-18.00780240507801,1319.7286666666664,-17.87447708580284,1341.791,-17.737176879737063C1363.8533333333332,-17.59987667367129,1385.9156666666668,-17.4586015808149,1407.978,-17.313446558785273C1430.0403333333336,-17.168291536755643,1452.102666666667,-17.01925658555277,1474.1650000000002,-16.866441878558874C1496.2273333333333,-16.713627171564973,1518.2896666666666,-16.55703270878005,1540.3519999999999,-16.39676374468866C1562.4143333333332,-16.23649478059727,1584.4766666666667,-16.072551315199412,1606.539,-15.905043542589063C1628.6013333333335,-15.737535769978713,1650.6636666666668,-15.566463690155867,1672.726,-15.391942288690691C1694.7883333333334,-15.217420887225517,1716.8506666666667,-15.039450164118012,1727.8818333333334,-14.95046480256426C1738.9130000000002,-14.861479441010509,1738.9130000000002,-14.861479441010509,1738.913,-14.861479441010509" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#dd06be" fill="none" transform="translate(0,722.4230769230774)" d="M-180.51000000000002,-14.947492189751584C-180.51,-14.947492189751584,-180.51,-14.947492189751584,-169.47883333333334,-15.120916869134462C-158.4476666666667,-15.29434154851734,-136.38533333333334,-15.641190907283095,-114.32300000000002,-15.973716665594765C-92.26066666666668,-16.306242423906433,-70.19833333333335,-16.624444581764017,-48.13600000000001,-16.927467912292247C-26.073666666666675,-17.23049124282047,-4.011333333333329,-17.51833574601934,18.051000000000002,-17.790227786798866C40.11333333333333,-18.06211982757839,62.17566666666665,-18.31805940593857,84.23799999999999,-18.557358637148095C106.3003333333333,-18.79665786835762,128.36266666666666,-19.01931675241649,150.42499999999998,-19.224736852585792C172.4873333333333,-19.430156952755095,194.54966666666667,-19.61833826903483,216.612,-19.788775029496264C238.67433333333332,-19.9592117899577,260.7366666666667,-20.111903994600834,282.799,-20.246441255017462C304.8613333333333,-20.380978515434087,326.92366666666663,-20.497360831624206,348.986,-20.59527540468889C371.0483333333333,-20.69318997775358,393.11066666666665,-20.772636807692834,415.173,-20.833402366526283C437.2353333333333,-20.89416792535973,459.2976666666666,-20.93625221308737,481.35999999999996,-20.959542120438876C503.4223333333333,-20.982832027790387,525.4846666666667,-20.987327554765763,547.547,-20.973016618808707C569.6093333333333,-20.95870568285165,591.6716666666667,-20.925588283962156,613.734,-20.87375343124614C635.7963333333335,-20.821918578530124,657.8586666666667,-20.751366271987578,679.921,-20.662286133929918C701.9833333333333,-20.573205995872254,724.0456666666666,-20.46559802629947,746.108,-20.339751441438732C768.1703333333334,-20.213904856577994,790.2326666666667,-20.0698196564293,812.2949999999998,-19.90788309649188C834.3573333333333,-19.745946536554456,856.4196666666666,-19.566158616828304,878.4819999999999,-19.369002550443817C900.5443333333333,-19.17184648405933,922.6066666666667,-18.9573222710165,944.669,-18.726006484628435C966.7313333333334,-18.494690698240365,988.7936666666667,-18.246583338507058,1010.856,-17.98235123963046C1032.9183333333333,-17.718119140753867,1054.9806666666668,-17.437762302733983,1077.0430000000001,-17.142034236182283C1099.1053333333334,-16.84630616963058,1121.1676666666667,-16.535206874547065,1143.23,-16.209572487555775C1165.2923333333333,-15.883938100564485,1187.3546666666666,-15.543768621665421,1209.417,-15.18997831895297C1231.4793333333332,-14.83618801624052,1253.5416666666665,-14.46877688971468,1275.604,-14.088732424412623C1297.6663333333331,-13.708687959110563,1319.7286666666664,-13.316010155032284,1341.791,-12.911754406062068C1363.8533333333332,-12.507498657091848,1385.9156666666668,-12.09166496322969,1407.978,-11.665370954076314C1430.0403333333336,-11.239076944922937,1452.102666666667,-10.802322620478343,1474.1650000000002,-10.356281838389068C1496.2273333333333,-9.910241056299792,1518.2896666666666,-9.454913816565837,1540.3519999999999,-8.991523894962596C1562.4143333333332,-8.528133973359354,1584.4766666666667,-8.056681369886828,1606.539,-7.57843320020387C1628.6013333333335,-7.1001850305209135,1650.6636666666668,-6.615141294627525,1672.726,-6.124605636852872C1694.7883333333334,-5.634069979078218,1716.8506666666667,-5.138042399422298,1727.8818333333334,-4.890028609594339C1738.9130000000002,-4.642014819766379,1738.9130000000002,-4.642014819766379,1738.913,-4.642014819766378" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#d909e1" fill="none" transform="translate(0,701.6538461538466)" d="M-180.51000000000002,-6.045969649966372C-180.51,-6.045969649966372,-180.51,-6.045969649966372,-169.47883333333334,-6.407835248769635C-158.4476666666667,-6.769700847572898,-136.38533333333334,-7.493432045179425,-114.32300000000002,-8.200608666214876C-92.26066666666668,-8.907785287250327,-70.19833333333335,-9.598407331714702,-48.13600000000001,-10.268300747622312C-26.073666666666675,-10.938194163529921,-4.011333333333329,-11.587358950880766,18.051000000000002,-12.211871621290145C40.11333333333333,-12.836384291699524,62.17566666666665,-13.436244845167439,84.23799999999999,-14.007827783269065C106.3003333333333,-14.579410721370692,128.36266666666666,-15.122716044106031,150.42499999999998,-15.634460067324877C172.4873333333333,-16.146204090543726,194.54966666666667,-16.626386814246075,216.612,-17.07210606108699C238.67433333333332,-17.517825307927907,260.7366666666667,-17.929081077907384,282.799,-18.30338778143692C304.8613333333333,-18.677694484966462,326.92366666666663,-19.015052122046065,348.986,-19.31342173616366C371.0483333333333,-19.611791350281262,393.11066666666665,-19.871172941436853,415.173,-20.08999883270166C437.2353333333333,-20.308824723966467,459.2976666666666,-20.48709491534049,481.35999999999996,-20.623731959249817C503.4223333333333,-20.76036900315914,525.4846666666667,-20.855372899603772,547.547,-20.90816945433987C569.6093333333333,-20.960966009075964,591.6716666666667,-20.971555222103525,613.734,-20.939873093256296C635.7963333333335,-20.908190964409066,657.8586666666667,-20.83423749368705,679.921,-20.718459648623043C701.9833333333333,-20.60268180355904,724.0456666666666,-20.445079584153053,746.108,-20.246605522780982C768.1703333333334,-20.048131461408907,790.2326666666667,-19.80878555807075,812.2949999999998,-19.53001439596074C834.3573333333333,-19.25124323385073,856.4196666666666,-18.93304681296887,878.4819999999999,-18.577348281313505C900.5443333333333,-18.22164974965814,922.6066666666667,-17.82844910722928,944.669,-17.400122820193115C966.7313333333334,-16.97179653315695,988.7936666666667,-16.508344601513485,1010.856,-16.012568083339353C1032.9183333333333,-15.516791565165217,1054.9806666666668,-14.988690460460415,1077.0430000000001,-14.431456560570739C1099.1053333333334,-13.874222660681063,1121.1676666666667,-13.287855965606514,1143.23,-12.67590041821358C1165.2923333333333,-12.063944870820643,1187.3546666666666,-11.426400471109321,1209.417,-10.767120474979713C1231.4793333333332,-10.107840478850104,1253.5416666666665,-9.42682488630221,1275.604,-8.728189688867372C1297.6663333333331,-8.029554491432535,1319.7286666666664,-7.313299689110754,1341.791,-6.583754255765298C1363.8533333333332,-5.854208822419842,1385.9156666666668,-5.1113727580507105,1407.978,-4.359735691065183C1430.0403333333336,-3.6080986240796564,1452.102666666667,-2.8476605544777343,1474.1650000000002,-2.0830174954620886C1496.2273333333333,-1.318374436446443,1518.2896666666666,-0.5495263880170745,1540.3519999999999,0.2188798075351251C1562.4143333333332,0.9872860030873247,1584.4766666666667,1.7552503457623554,1606.539,2.518131334300352C1628.6013333333335,3.2810123228383485,1650.6636666666668,4.038809957239311,1672.726,4.786944182832248C1694.7883333333334,5.535078408425186,1716.8506666666667,6.273549225210099,1727.8818333333334,6.642784633602554C1738.9130000000002,7.012020041995011,1738.9130000000002,7.012020041995011,1738.913,7.01202004199501" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#b60de6" fill="none" transform="translate(0,680.8846153846158)" d="M-180.51000000000002,4.335817120693728C-180.51,4.335817120693728,-180.51,4.335817120693728,-169.47883333333334,3.827584717253036C-158.4476666666667,3.319352313812344,-136.38533333333334,2.30288750693096,-114.32300000000002,1.2818188980686651C-92.26066666666668,0.26075028920637056,-70.19833333333335,-0.7649221216368347,-48.13600000000001,-1.7841864189918983C-26.073666666666675,-2.803450716346962,-4.011333333333329,-3.816306900213884,18.051000000000002,-4.811880653840905C40.11333333333333,-5.807454407467928,62.17566666666665,-6.78574573085505,84.23799999999999,-7.736251405583454C106.3003333333333,-8.686757080311857,128.36266666666666,-9.609477106381544,150.42499999999998,-10.494504894884324C172.4873333333333,-11.379532683387103,194.54966666666667,-12.226868234322975,216.612,-13.027414308298379C238.67433333333332,-13.827960382273783,260.7366666666667,-14.581716979288723,282.799,-15.280591550647493C304.8613333333333,-15.979466122006265,326.92366666666663,-16.623458667708867,348.986,-17.205655097641355C371.0483333333333,-17.78785152757384,393.11066666666665,-18.308251841736208,415.173,-18.76126887193611C437.2353333333333,-19.214285902136016,459.2976666666666,-19.599919648373454,481.35999999999996,-19.914029835283028C503.4223333333333,-20.2281400221926,525.4846666666667,-20.47072664977431,547.547,-20.639185237875814C569.6093333333333,-20.807643825977316,591.6716666666667,-20.901974374598616,613.734,-20.92116412370386C635.7963333333335,-20.94035387280911,657.8586666666667,-20.884402822398307,679.921,-20.753911679121074C701.9833333333333,-20.62342053584385,724.0456666666666,-20.418389299700188,746.108,-20.14101924530475C768.1703333333334,-19.86364919090931,790.2326666666667,-19.513940318262094,812.2949999999998,-19.095647202901684C834.3573333333333,-18.67735408754128,856.4196666666666,-18.190476729467683,878.4819999999999,-17.640242384727014C900.5443333333333,-17.090008039986344,922.6066666666667,-16.476416708578604,944.669,-15.806056084393727C966.7313333333334,-15.135695460208852,988.7936666666667,-14.40856554324684,1010.856,-13.632473010470008C1032.9183333333333,-12.856380477693177,1054.9806666666668,-12.031325329101525,1077.0430000000001,-11.16616559524902C1099.1053333333334,-10.301005861396515,1121.1676666666667,-9.395741542283156,1143.23,-8.460091817301729C1165.2923333333333,-7.5244420923203,1187.3546666666666,-6.558406961470803,1209.417,-5.572358057146362C1231.4793333333332,-4.586309152821921,1253.5416666666665,-3.5802464750225367,1275.604,-2.564971403455204C1297.6663333333331,-1.549696331887871,1319.7286666666664,-0.5252088665525898,1341.791,0.4974917989990516C1363.8533333333332,1.520192464550693,1385.9156666666668,2.5411063303186947,1407.978,3.5492725699493937C1430.0403333333336,4.557438809580093,1452.102666666667,5.552857423073489,1474.1650000000002,6.524841308473585C1496.2273333333333,7.496825193873682,1518.2896666666666,8.44537435118048,1540.3519999999999,9.36030488246706C1562.4143333333332,10.275235413753643,1584.4766666666667,11.15654731902001,1606.539,11.994778578911761C1628.6013333333335,12.833009838803513,1650.6636666666668,13.628160453320648,1672.726,14.371693455630805C1694.7883333333334,15.115226457940963,1716.8506666666667,15.807141848044143,1727.8818333333334,16.153099543095735C1738.9130000000002,16.499057238147323,1738.9130000000002,16.499057238147323,1738.913,16.499057238147326" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#9210e9" fill="none" transform="translate(0,660.115384615385)" d="M-180.51000000000002,13.656044643299452C-180.51,13.65604464329945,-180.51,13.65604464329945,-169.47883333333334,13.133161806483162C-158.4476666666667,12.610278969666876,-136.38533333333334,11.5645132960343,-114.32300000000002,10.459988014819658C-92.26066666666668,9.355462733605012,-70.19833333333335,8.192177844808302,-48.13600000000001,6.9896283014483425C-26.073666666666675,5.7870787580883825,-4.011333333333329,4.545264560165173,18.051000000000002,3.284996697041488C40.11333333333333,2.024728833917803,62.17566666666665,0.7460073055936416,84.23799999999999,-0.5297383857008053C106.3003333333333,-1.8054840769952523,128.36266666666666,-3.078253931259985,150.42499999999998,-4.3267181876155965C172.4873333333333,-5.575182443971208,194.54966666666667,-6.799341102417699,216.612,-7.978679054606424C238.67433333333332,-9.158017006795149,260.7366666666667,-10.292534252726105,282.799,-11.363217942992005C304.8613333333333,-12.433901633257907,326.92366666666663,-13.440751767858753,348.986,-14.366895011414663C371.0483333333333,-15.293038254970572,393.11066666666665,-16.138474607481548,415.173,-16.889035792430505C437.2353333333333,-17.639596977379462,459.2976666666666,-18.295282994766403,481.35999999999996,-18.845105506113658C503.4223333333333,-19.394928017460913,525.4846666666667,-19.838887022768485,547.547,-20.16954241855518C569.6093333333333,-20.500197814341874,591.6716666666667,-20.717549600607697,613.734,-20.817955279369027C635.7963333333335,-20.91836095813036,657.8586666666667,-20.90182052938721,679.921,-20.76861118652905C701.9833333333333,-20.635401843670888,724.0456666666666,-20.385523586697722,746.108,-20.0231640096607C768.1703333333334,-19.660804432623678,790.2326666666667,-19.1859635355228,812.2949999999998,-18.60659895716997C834.3573333333333,-18.027234378817145,856.4196666666666,-17.34334611921237,878.4819999999999,-16.566395145157088C900.5443333333333,-15.789444171101804,922.6066666666667,-14.919430482596013,944.669,-13.970934236354974C966.7313333333334,-13.022437990113936,988.7936666666667,-11.995459186137648,1010.856,-10.907208486859412C1032.9183333333333,-9.81895778758118,1054.9806666666668,-8.669435193000998,1077.0430000000001,-7.477905020218863C1099.1053333333334,-6.286374847436729,1121.1676666666667,-5.052837096452642,1143.23,-3.7979640554859104C1165.2923333333333,-2.5430910145191787,1187.3546666666666,-1.2668826835698044,1209.417,0.009273552643554672C1231.4793333333332,1.2854297888569137,1253.5416666666665,2.5615339303342575,1275.604,3.8162003384201126C1297.6663333333331,5.070866746505969,1319.7286666666664,6.304095421200335,1341.791,7.4952192539503395C1363.8533333333332,8.686343086700344,1385.9156666666668,9.835362077505984,1407.978,10.923020348929873C1430.0403333333336,12.010678620353762,1452.102666666667,13.036976172395898,1474.1650000000002,13.984713759408786C1496.2273333333333,14.932451346421676,1518.2896666666666,15.801628968405318,1540.3519999999999,16.577680479896344C1562.4143333333332,17.35373199138737,1584.4766666666667,18.036657392385784,1606.539,18.615011852191856C1628.6013333333335,19.193366311997924,1650.6636666666668,19.66714983061165,1672.726,20.02842248933778C1694.7883333333334,20.389695148063907,1716.8506666666667,20.638456946902437,1727.8818333333334,20.762837846321702C1738.9130000000002,20.887218745740967,1738.9130000000002,20.887218745740967,1738.913,20.887218745740967" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#6e16eb" fill="none" transform="translate(0,639.3461538461543)" d="M-180.51000000000002,19.63279616601834C-180.51,19.63279616601834,-180.51,19.63279616601834,-169.47883333333334,19.28283696058368C-158.4476666666667,18.93287775514902,-136.38533333333334,18.232959344279696,-114.32300000000002,17.392177264248346C-92.26066666666668,16.551395184216993,-70.19833333333335,15.569749435023617,-48.13600000000001,14.470900183077534C-26.073666666666675,13.37205093113145,-4.011333333333329,12.155998176432663,18.051000000000002,10.852051892117956C40.11333333333333,9.548105607803251,62.17566666666665,8.156265793872626,84.23799999999999,6.710079339965034C106.3003333333333,5.263892886057443,128.36266666666666,3.763359792172884,150.42499999999998,2.2446467332378015C172.4873333333333,0.7259336743027189,194.54966666666667,-0.8109593496828875,216.612,-2.3289892967349535C238.67433333333332,-3.8470192437870194,260.7366666666667,-5.346186113905545,282.799,-6.790356161641638C304.8613333333333,-8.234526209377732,326.92366666666663,-9.623699434731392,348.986,-10.924393219649946C371.0483333333333,-12.2250870045685,393.11066666666665,-13.437301349051944,415.173,-14.531818795440216C437.2353333333333,-15.626336241828486,459.2976666666666,-16.603156790121584,481.35999999999996,-17.43873657355937C503.4223333333333,-18.274316356997158,525.4846666666667,-18.968655375579637,547.547,-19.505018287929673C569.6093333333333,-20.04138120027971,591.6716666666667,-20.419768006397298,613.734,-20.631058619115375C635.7963333333335,-20.842349231833452,657.8586666666667,-20.886543651152014,679.921,-20.762576678840123C701.9833333333333,-20.638609706528236,724.0456666666666,-20.3464813425859,746.108,-19.893232625707007C768.1703333333334,-19.43998390882811,790.2326666666667,-18.82561483901266,812.2949999999998,-18.064933277895584C834.3573333333333,-17.304251716778513,856.4196666666666,-16.397257664359817,878.4819999999999,-15.36581199074475C900.5443333333333,-14.33436631712968,922.6066666666667,-13.17846902231824,944.669,-11.925980179427254C966.7313333333334,-10.67349133653627,988.7936666666667,-9.324410945565738,1010.856,-7.911255284996109C1032.9183333333333,-6.49809962442648,1054.9806666666668,-5.02086869425775,1077.0430000000001,-3.51516752783471C1099.1053333333334,-2.0094663614116692,1121.1676666666667,-0.4752949587343167,1143.23,1.0503692362287926C1165.2923333333333,2.576033431191902,1187.3546666666666,4.093190418440768,1209.417,5.565272844816776C1231.4793333333332,7.037355271192784,1253.5416666666665,8.464363136695933,1275.604,9.81190191194233C1297.6663333333331,11.159440687188727,1319.7286666666664,12.427510372178375,1341.791,13.585547253076465C1363.8533333333332,14.743584133974556,1385.9156666666668,15.79158821078109,1407.978,16.704299912133116C1430.0403333333336,17.617011613485143,1452.102666666667,18.394430939382662,1474.1650000000002,19.01782010113186C1496.2273333333333,19.641209262881063,1518.2896666666666,20.110568260481944,1540.3519999999999,20.414584344912694C1562.4143333333332,20.718600429343446,1584.4766666666667,20.85727360060407,1606.539,20.827261481557766C1628.6013333333335,20.79724936251146,1650.6636666666668,20.59855195315823,1672.726,20.23595836787488C1694.7883333333334,19.873364782591533,1716.8506666666667,19.346875021378068,1727.8818333333334,19.083630140771334C1738.9130000000002,18.820385260164603,1738.9130000000002,18.820385260164603,1738.913,18.820385260164603" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#4e20e9" fill="none" transform="translate(0,618.5769230769234)" d="M-180.51000000000002,20.802754469592276C-180.51,20.802754469592276,-180.51,20.802754469592276,-169.47883333333334,20.810668126680202C-158.4476666666667,20.818581783768124,-136.38533333333334,20.834409097943976,-114.32300000000002,20.622562553722755C-92.26066666666668,20.410716009501538,-70.19833333333335,19.97119560688325,-48.13600000000001,19.318399356125013C-26.073666666666675,18.66560310536678,-4.011333333333329,17.799531006468598,18.051000000000002,16.748554245134365C40.11333333333333,15.697577483800135,62.17566666666665,14.461696060029855,84.23799999999999,13.08139554243428C106.3003333333333,11.701095024838704,128.36266666666666,10.176375413417833,150.42499999999998,8.557184170163612C172.4873333333333,6.93799292690939,194.54966666666667,5.2243300518218145,216.612,3.4723324966914606C238.67433333333332,1.7203349415611073,260.7366666666667,-0.06999729361202434,282.799,-1.8400156870935487C304.8613333333333,-3.610034080575073,326.92366666666663,-5.35973863236499,348.986,-7.031811720952378C371.0483333333333,-8.703884809539765,393.11066666666665,-10.298326434924626,415.173,-11.762905149511123C437.2353333333333,-13.227483864097625,459.2976666666666,-14.562199667885764,481.35999999999996,-15.723329330466207C503.4223333333333,-16.88445899304665,525.4846666666667,-17.872002514419396,547.547,-18.653609492497605C569.6093333333333,-19.43521647057581,591.6716666666667,-20.010886905359477,613.734,-20.361762721602588C635.7963333333335,-20.7126385378457,657.8586666666667,-20.838719735548253,679.921,-20.73587608920323C701.9833333333333,-20.63303244285821,724.0456666666666,-20.30126395246561,746.108,-19.751438841887634C768.1703333333334,-19.20161373130966,790.2326666666667,-18.433732000546307,812.2949999999998,-17.472948270338563C834.3573333333333,-16.51216454013082,856.4196666666666,-15.358478810478681,878.4819999999999,-14.049684045872675C900.5443333333333,-12.740889281266671,922.6066666666667,-11.276985481706797,944.669,-9.705927877020699C966.7313333333334,-8.134870272334602,988.7936666666667,-6.45665886252228,1010.856,-4.726269264069686C1032.9183333333333,-2.9958796656170925,1054.9806666666668,-1.2133118785242267,1077.0430000000001,0.5630399268139404C1099.1053333333334,2.3393917321521074,1121.1676666666667,4.109527555735576,1143.23,5.815460479112723C1165.2923333333333,7.5213934024898705,1187.3546666666666,9.163123425660698,1209.417,10.68687000607879C1231.4793333333332,12.21061658649688,1253.5416666666665,13.616379724162234,1275.604,14.8581087876261C1297.6663333333331,16.099837851089966,1319.7286666666664,17.17753284035234,1341.791,18.055890130332322C1363.8533333333332,18.934247420312303,1385.9156666666668,19.613267011009885,1407.978,20.07070526828795C1430.0403333333336,20.52814352556601,1452.102666666667,20.76400044942455,1474.1650000000002,20.770549730939805C1496.2273333333333,20.777099012455054,1518.2896666666666,20.554340651627015,1540.3519999999999,20.10957186866424C1562.4143333333332,19.664803085701468,1584.4766666666667,18.99802388060396,1606.539,18.13107691136219C1628.6013333333335,17.26412994212042,1650.6636666666668,16.197015208734392,1672.726,14.964689743426693C1694.7883333333334,13.732364278118991,1716.8506666666667,12.334828080889618,1727.8818333333334,11.636059982274933C1738.9130000000002,10.937291883660247,1738.9130000000002,10.937291883660247,1738.913,10.937291883660247" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#322ae6" fill="none" transform="translate(0,597.8076923076926)" d="M-180.51000000000002,16.879472957584042C-180.51,16.879472957584042,-180.51,16.879472957584042,-169.47883333333334,17.361369952786454C-158.4476666666667,17.843266947988866,-136.38533333333334,18.80706093839369,-114.32300000000002,19.489353407854427C-92.26066666666668,20.171645877315164,-70.19833333333335,20.572436825831815,-48.13600000000001,20.674606620187546C-26.073666666666675,20.776776414543278,-4.011333333333329,20.58032505473809,18.051000000000002,20.093643886028808C40.11333333333333,19.606962717319526,62.17566666666665,18.830051739706146,84.23799999999999,17.796096410664934C106.3003333333333,16.762141081623717,128.36266666666666,15.471141401154672,150.42499999999998,13.978241930517152C172.4873333333333,12.485342459879632,194.54966666666667,10.790543199073642,216.612,8.966236855141426C238.67433333333332,7.14193051120921,260.7366666666667,5.188117084150772,282.799,3.188252972792372C304.8613333333333,1.188388861433973,326.92366666666663,-0.8575259342243857,348.986,-2.862100940360417C371.0483333333333,-4.866675946496448,393.11066666666665,-6.829911163110152,415.173,-8.66794774321114C437.2353333333333,-10.50598432331213,459.2976666666666,-12.218822266900403,481.35999999999996,-13.733298351446544C503.4223333333333,-15.247774435992685,525.4846666666667,-16.563888661496694,547.547,-17.625423708442074C569.6093333333333,-18.68695875538745,591.6716666666667,-19.4939146237742,613.734,-20.011822500022372C635.7963333333335,-20.529730376270543,657.8586666666667,-20.758590260380142,679.921,-20.688626489281667C701.9833333333333,-20.61866271818319,724.0456666666666,-20.24987529187664,746.108,-19.598016825276893C768.1703333333334,-18.946158358677145,790.2326666666667,-18.011228851784203,812.2949999999998,-16.833163463565167C834.3573333333333,-15.655098075346134,856.4196666666666,-14.23389680580101,878.4819999999999,-12.630265727639179C900.5443333333333,-11.026634649477348,922.6066666666667,-9.24057376269881,944.669,-7.348373980054307C966.7313333333334,-5.456174197409803,988.7936666666667,-3.4578355188993344,1010.856,-1.4387162225621626C1032.9183333333333,0.5804030737750091,1054.9806666666668,2.620302987938884,1077.0430000000001,4.593849969486825C1099.1053333333334,6.567396951034766,1121.1676666666667,8.474590999966772,1143.23,10.233967046495522C1165.2923333333333,11.99334309302427,1187.3546666666666,13.604901137149762,1209.417,14.999804088800055C1231.4793333333332,16.394707040450346,1253.5416666666665,17.572954899625437,1275.604,18.484219256309466C1297.6663333333331,19.395483612993495,1319.7286666666664,20.039764467186462,1341.791,20.389541606784697C1363.8533333333332,20.739318746382928,1385.9156666666668,20.794592171386427,1407.978,20.553000898429175C1430.0403333333336,20.311409625471917,1452.102666666667,19.77295365455391,1474.1650000000002,18.96063292806319C1496.2273333333333,18.14831220157248,1518.2896666666666,17.062126719509056,1540.3519999999999,15.748472482399345C1562.4143333333332,14.434818245289632,1584.4766666666667,12.893695253133629,1606.539,11.190931989497122C1628.6013333333335,9.48816872586061,1650.6636666666668,7.623765190743594,1672.726,5.677358673379999C1694.7883333333334,3.730952156016404,1716.8506666666667,1.7025426564062318,1727.8818333333334,0.6883379066011456C1738.9130000000002,-0.3258668432039407,1738.9130000000002,-0.3258668432039407,1738.913,-0.3258668432039407" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#344de4" fill="none" transform="translate(0,577.0384615384618)" d="M-180.51000000000002,8.82350777335946C-180.51,8.82350777335946,-180.51,8.82350777335946,-169.47883333333334,9.773339784230245C-158.4476666666667,10.723171795101031,-136.38533333333334,12.622835816842603,-114.32300000000002,14.26129981945105C-92.26066666666668,15.899763822059494,-70.19833333333335,17.277027805534814,-48.13600000000001,18.31877783298592C-26.073666666666675,19.360527860437024,-4.011333333333329,20.066763931863917,18.051000000000002,20.399379203936682C40.11333333333333,20.731994476009444,62.17566666666665,20.690988948728084,84.23799999999999,20.278575184247075C106.3003333333333,19.866161419766073,128.36266666666666,19.08233941808542,150.42499999999998,17.969402377506707C172.4873333333333,16.856465336927997,194.54966666666667,15.414413257451216,216.612,13.721055889794954C238.67433333333332,12.027698522138692,260.7366666666667,10.08303586630295,282.799,7.991997361824483C304.8613333333333,5.900958857346016,326.92366666666663,3.663544504224826,348.986,1.4004799375112889C371.0483333333333,-0.8625846292022479,393.11066666666665,-3.1512994095081317,415.173,-5.342170717529132C437.2353333333333,-7.533042025550133,459.2976666666666,-9.626069861286249,481.35999999999996,-11.508319347791288C503.4223333333333,-13.390568834296326,525.4846666666667,-15.062039971570286,547.547,-16.432544094185943C569.6093333333333,-17.803048216801596,591.6716666666667,-18.872585324758944,613.734,-19.583445702203175C635.7963333333335,-20.294306079647402,657.8586666666667,-20.64648972657851,679.921,-20.620993638760467C701.9833333333333,-20.595497550942426,724.0456666666666,-20.192321728375237,746.108,-19.433220593590647C768.1703333333334,-18.674119458806054,790.2326666666667,-17.559093011804062,812.2949999999998,-16.148305466568754C834.3573333333333,-14.737517921333446,856.4196666666666,-13.03096927786482,878.4819999999999,-11.120740901619271C900.5443333333333,-9.210512525373726,922.6066666666667,-7.096604416351255,944.669,-4.893078102111046C966.7313333333334,-2.689551787870836,988.7936666666667,-0.396407268412887,1010.856,1.8626227520421403C1032.9183333333333,4.121652772497168,1054.9806666666668,6.346568293949273,1077.0430000000001,8.41731808901357C1099.1053333333334,10.488067884077868,1121.1676666666667,12.404651952754357,1143.23,14.06365591026642C1165.2923333333333,15.722659867778482,1187.3546666666666,17.124083714126115,1209.417,18.192309902836985C1231.4793333333332,19.260536091547852,1253.5416666666665,19.995564622621952,1275.604,20.35773507908275C1297.6663333333331,20.719905535543553,1319.7286666666664,20.70921791739105,1341.791,20.32624890345402C1363.8533333333332,19.943279889516987,1385.9156666666668,19.18802947979542,1407.978,18.101249216447133C1430.0403333333336,17.014468953098845,1452.102666666667,15.596158836123832,1474.1650000000002,13.922847555584047C1496.2273333333333,12.24953627504426,1518.2896666666666,10.3212238309397,1540.3519999999999,8.241957443699285C1562.4143333333332,6.1626910564588675,1584.4766666666667,3.932470726082593,1606.539,1.6716339150129218C1628.6013333333335,-0.5892028960567495,1650.6636666666668,-2.8806561878198176,1672.726,-5.079084510738571C1694.7883333333334,-7.277512833657325,1716.8506666666667,-9.382916187731766,1727.8818333333334,-10.435617864768984C1738.9130000000002,-11.488319541806206,1738.9130000000002,-11.488319541806206,1738.913,-11.488319541806204" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#3d73e2" fill="none" transform="translate(0,556.269230769231)" d="M-180.51000000000002,-1.3927598443752143C-180.51,-1.392759844375214,-180.51,-1.392759844375214,-169.47883333333334,-0.12532262217118495C-158.4476666666667,1.1421146000328444,-136.38533333333334,3.676989044440903,-114.32300000000002,6.07422422413481C-92.26066666666668,8.471459403828717,-70.19833333333335,10.731055318808473,-48.13600000000001,12.70281108933138C-26.073666666666675,14.67456685985429,-4.011333333333329,16.358482485920348,18.051000000000002,17.64262396783923C40.11333333333333,18.926765449758108,62.17566666666665,19.811132787529807,84.23799999999999,20.236939916235183C106.3003333333333,20.66274704494056,128.36266666666666,20.62999396457961,150.42499999999998,20.140857852696296C172.4873333333333,19.65172174081298,194.54966666666667,18.706202597407298,216.612,17.367151397829133C238.67433333333332,16.028100198250968,260.7366666666667,14.295516942500322,282.799,12.284570686918652C304.8613333333333,10.27362443133698,326.92366666666663,7.984315175924284,348.986,5.568818919002453C371.0483333333333,3.1533226620806207,393.11066666666665,0.6116394036496533,415.173,-1.887278939307072C437.2353333333333,-4.386197282263797,459.2976666666666,-6.842350709746279,481.35999999999996,-9.092472682305914C503.4223333333333,-11.342594654865549,525.4846666666667,-13.386685172502336,547.547,-15.088868527534498C569.6093333333333,-16.79105188256666,591.6716666666667,-18.151328074994197,613.734,-19.079276211664837C635.7963333333335,-20.007224348335477,657.8586666666667,-20.502844429249215,679.921,-20.53319137264259C701.9833333333333,-20.563538316035974,724.0456666666666,-20.128612121908994,746.108,-19.2573234005827C768.1703333333334,-18.386034679256404,790.2326666666667,-17.078383430730803,812.2949999999998,-15.421292439129859C834.3573333333333,-13.764201447528917,856.4196666666666,-11.757670712852637,878.4819999999999,-9.535079251933706C900.5443333333333,-7.312487791014776,922.6066666666667,-4.873835603853194,944.669,-2.381225879550108C966.7313333333334,0.11138384475297736,988.7936666666667,2.6579511061975665,1010.856,5.089199336147103C1032.9183333333333,7.52044756609664,1054.9806666666668,9.836376764551124,1077.0430000000001,11.88304144031736C1099.1053333333334,13.929706116083596,1121.1676666666667,15.707106269161583,1143.23,17.097093754178395C1165.2923333333333,18.48708123919521,1187.3546666666666,19.48965605615085,1209.417,20.038174599205732C1231.4793333333332,20.58669314226061,1253.5416666666665,20.681155411414736,1275.604,20.31528226806842C1297.6663333333331,19.9494091247221,1319.7286666666664,19.12320056887534,1341.791,17.891576708639697C1363.8533333333332,16.659952848404057,1385.9156666666668,15.022913683779535,1407.978,13.0892772211494C1430.0403333333336,11.155640758519265,1452.102666666667,8.925406997883517,1474.1650000000002,6.546825044605934C1496.2273333333333,4.1682430913283515,1518.2896666666666,1.6413129454089344,1540.3519999999999,-0.8659941517240418C1562.4143333333332,-3.373301248857018,1584.4766666666667,-5.860985297203554,1606.539,-8.16368383965064C1628.6013333333335,-10.466382382097725,1650.6636666666668,-12.584095418645362,1672.726,-14.376053372298225C1694.7883333333334,-16.16801132595109,1716.8506666666667,-17.63421419670918,1727.8818333333334,-18.36731563208823C1738.9130000000002,-19.100417067467276,1738.9130000000002,-19.100417067467276,1738.913,-19.100417067467276" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#4795e0" fill="none" transform="translate(0,535.5000000000002)" d="M-180.51000000000002,-11.268031278009135C-180.51,-11.268031278009135,-180.51,-11.268031278009135,-169.47883333333334,-9.958131903445183C-158.4476666666667,-8.648232528881232,-136.38533333333334,-6.02843377975333,-114.32300000000002,-3.317462926760051C-92.26066666666668,-0.606492073766771,-70.19833333333335,2.1956508830918864,-48.13600000000001,4.864115879423897C-26.073666666666675,7.532580875755908,-4.011333333333329,10.067367911561274,18.051000000000002,12.265080144853087C40.11333333333333,14.4627923781449,62.17566666666665,16.323429808923166,84.23799999999999,17.69769083032422C106.3003333333333,19.071951851725274,128.36266666666666,19.959836463749124,150.42499999999998,20.29009886799794C172.4873333333333,20.62036127224675,194.54966666666667,20.393001468720527,216.612,19.62626330409308C238.67433333333332,18.85952513946563,260.7366666666667,17.553408613736952,282.799,15.812719366531807C304.8613333333333,14.072030119326662,326.92366666666663,11.896768150645048,348.986,9.461481226699394C371.0483333333333,7.026194302753739,393.11066666666665,4.330882423544042,415.173,1.5918232947146544C437.2353333333333,-1.1472358341147333,459.2976666666666,-3.930042212563812,481.35999999999996,-6.53329738547945C503.4223333333333,-9.136552558395088,525.4846666666667,-11.560256525777287,547.547,-13.60992599340323C569.6093333333333,-15.659595461029173,591.6716666666667,-17.33523042889886,613.734,-18.502374291398798C635.7963333333335,-19.669518153898736,657.8586666666667,-20.32817091102892,679.921,-20.425480828551375C701.9833333333333,-20.52279074607383,724.0456666666666,-20.058757823988557,746.108,-19.070617076360598C768.1703333333334,-18.08247632873264,790.2326666666667,-16.570227755561998,812.2949999999998,-14.655217481685696C834.3573333333333,-12.740207207809394,856.4196666666666,-10.422435233227432,878.4819999999999,-7.887884637944752C900.5443333333333,-5.353334042662072,922.6066666666667,-2.6020048266786744,944.669,0.14533035104334235C966.7313333333334,2.892665528765359,988.7936666666667,5.636006668225995,1010.856,8.155222091151284C1032.9183333333333,10.674437514076573,1054.9806666666668,12.969527220466514,1077.0430000000001,14.85632820500255C1099.1053333333334,16.743129189538585,1121.1676666666667,18.221641452220716,1143.23,19.173225943369218C1165.2923333333333,20.124810434517723,1187.3546666666666,20.5494671541326,1209.417,20.413120720543475C1231.4793333333332,20.27677428695435,1253.5416666666665,19.57942470016122,1275.604,18.377028812440447C1297.6663333333331,17.174632924719678,1319.7286666666664,15.467190736071267,1341.791,13.39171113289894C1363.8533333333332,11.316231529726615,1385.9156666666668,8.87271451203037,1407.978,6.2572332164170215C1430.0403333333336,3.641751920803671,1452.102666666667,0.8543063472732131,1474.1650000000002,-1.8814327898863636C1496.2273333333333,-4.61717192704594,1518.2896666666666,-7.301204627834636,1540.3519999999999,-9.718158252492792C1562.4143333333332,-12.13511187715095,1584.4766666666667,-14.284986425678568,1606.539,-15.995271273845002C1628.6013333333335,-17.705556122011437,1650.6636666666668,-18.976251269816693,1672.726,-19.705393366280646C1694.7883333333334,-20.43453546274459,1716.8506666666667,-20.622124507867234,1727.8818333333334,-20.71591903042856C1738.9130000000002,-20.80971355298988,1738.9130000000002,-20.80971355298988,1738.913,-20.809713552989884" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#4bafe0" fill="none" transform="translate(0,514.7307692307694)" d="M-180.51000000000002,-18.384495668457C-180.51,-18.384495668457,-180.51,-18.384495668457,-169.47883333333334,-17.37214189953874C-158.4476666666667,-16.35978813062048,-136.38533333333334,-14.335080592783958,-114.32300000000002,-11.919525535405592C-92.26066666666668,-9.503970478027226,-70.19833333333335,-6.697567901107014,-48.13600000000001,-3.767622982431826C-26.073666666666675,-0.8376780637566381,-4.011333333333329,2.215809196673526,18.051000000000002,5.101999215923669C40.11333333333333,7.988189235173811,62.17566666666665,10.707082013243932,84.23799999999999,12.9997075351396C106.3003333333333,15.292333057035268,128.36266666666666,17.158691322756482,150.42499999999998,18.421014811657624C172.4873333333333,19.683338300558766,194.54966666666667,20.34162701263984,216.612,20.33318004295404C238.67433333333332,20.32473307326824,260.7366666666667,19.649550421815576,282.799,18.371942113169645C304.8613333333333,17.09433380452371,326.92366666666663,15.214299838684514,348.986,12.910910323988206C371.0483333333333,10.607520809291898,393.11066666666665,7.880775745738479,415.173,4.9903930654545965C437.2353333333333,2.100010385170714,459.2976666666666,-0.9540099118436314,481.35999999999996,-3.8807774718053554C503.4223333333333,-6.807545031767079,525.4846666666667,-9.607059854676182,547.547,-12.012672809859517C569.6093333333333,-14.41828576504285,591.6716666666667,-16.429996852500416,613.734,-17.856193937069914C635.7963333333335,-19.282391021639413,657.8586666666667,-20.123074103320842,679.921,-20.298169516824938C701.9833333333333,-20.473264930329034,724.0456666666666,-19.982772675655795,746.108,-18.873411324266332C768.1703333333334,-17.76404997287687,790.2326666666667,-16.035819524771185,812.2949999999998,-13.853331055703972C834.3573333333333,-11.670842586636759,856.4196666666666,-9.034096096608021,878.4819999999999,-6.194237303303572C900.5443333333333,-3.3543785099991243,922.6066666666667,-0.31140741341896616,944.669,2.6448380506179063C966.7313333333334,5.601083514654779,988.7936666666667,8.470603346148366,1010.856,10.980080553791566C1032.9183333333333,13.489557761434765,1054.9806666666668,15.638992345227578,1077.0430000000001,17.22365423604626C1099.1053333333334,18.80831612686494,1121.1676666666667,19.828205324709494,1143.23,20.18617907978529C1165.2923333333333,20.544152834861087,1187.3546666666666,20.240211147168125,1209.417,19.303303956937285C1231.4793333333332,18.366396766706444,1253.5416666666665,16.796524073937725,1275.604,14.743213641573735C1297.6663333333331,12.689903209209746,1319.7286666666664,10.153155037250485,1341.791,7.3745901699048755C1363.8533333333332,4.596025302559266,1385.9156666666668,1.5756437398273082,1407.978,-1.3988681979996898C1430.0403333333336,-4.373380135826688,1452.102666666667,-7.302022448748726,1474.1650000000002,-9.905846827436331C1496.2273333333333,-12.509671206123937,1518.2896666666666,-14.78867765057711,1540.3519999999999,-16.52579458745072C1562.4143333333332,-18.262911524324327,1584.4766666666667,-19.458138953618374,1606.539,-19.997633450618707C1628.6013333333335,-20.53712794761904,1650.6636666666668,-20.420889512325665,1672.726,-19.659989662370187C1694.7883333333334,-18.899089812414708,1716.8506666666667,-17.493528547797123,1727.8818333333334,-16.790747915488332C1738.9130000000002,-16.087967283179538,1738.9130000000002,-16.087967283179538,1738.913,-16.08796728317954" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#45c0e2" fill="none" transform="translate(0,493.96153846153857)" d="M-180.51000000000002,-20.999794337564772C-180.51,-20.999794337564772,-180.51,-20.999794337564772,-169.47883333333334,-20.602543459714575C-158.4476666666667,-20.205292581864377,-136.38533333333334,-19.410790826163982,-114.32300000000002,-17.92456520669694C-92.26066666666668,-16.438339587229905,-70.19833333333335,-14.260390103996219,-48.13600000000001,-11.633494406063647C-26.073666666666675,-9.006598708131074,-4.011333333333329,-5.9307567954996125,18.051000000000002,-2.748835054282137C40.11333333333333,0.433086686935338,62.17566666666665,3.721088256738827,84.23799999999999,6.7486536742054C106.3003333333333,9.776219091671972,128.36266666666666,12.543348356801626,150.42499999999998,14.741587511949158C172.4873333333333,16.93982666709669,194.54966666666667,18.569175712262094,216.612,19.448009897311714C238.67433333333332,20.326844082361333,260.7366666666667,20.45516340729517,282.799,19.818664021506393C304.8613333333333,19.182164635717616,326.92366666666663,17.780846539206223,348.986,15.770915702627704C371.0483333333333,13.760984866049187,393.11066666666665,11.142441289403543,415.173,8.20717597310811C437.2353333333333,5.271910656812679,459.2976666666666,2.0199236008674584,481.35999999999996,-1.1862837784555156C503.4223333333333,-4.3924911577784895,525.4846666666667,-7.552918860479218,547.547,-10.315271659502626C569.6093333333333,-13.077624458526035,591.6716666666667,-15.441902353872122,613.734,-17.14455752976568C635.7963333333335,-18.84721270565924,657.8586666666667,-19.88824516210026,679.921,-20.151610236747587C701.9833333333333,-20.41497531139491,724.0456666666666,-19.90067300424853,746.108,-18.66603297607438C768.1703333333334,-17.43139294790023,790.2326666666667,-15.476415198698305,812.2949999999998,-13.019022552475676C834.3573333333333,-10.561629906253046,856.4196666666666,-7.601822363009712,878.4819999999999,-4.469531871385148C900.5443333333333,-1.337241379760584,922.6066666666667,1.9675320602452104,944.669,5.076402894861298C966.7313333333334,8.185273729477384,988.7936666666667,11.098241958703763,1010.856,13.490596847078088C1032.9183333333333,15.882951735452414,1054.9806666666668,17.754693282974685,1077.0430000000001,18.89717706695829C1099.1053333333334,20.039660850941893,1121.1676666666667,20.45288687138683,1143.23,20.090792516396203C1165.2923333333333,19.72869816140557,1187.3546666666666,18.591283430979374,1209.417,16.805336791238467C1231.4793333333332,15.019390151497557,1253.5416666666665,12.584911602441936,1275.604,9.77327427893791C1297.6663333333331,6.961636955433884,1319.7286666666664,3.7728408574814543,1341.791,0.5623434582576095C1363.8533333333332,-2.6481539409662354,1385.9156666666668,-5.880352641461495,1407.978,-8.773957049658666C1430.0403333333336,-11.667561457855838,1452.102666666667,-14.222571573754921,1474.1650000000002,-16.1541785190704C1496.2273333333333,-18.08578546438587,1518.2896666666666,-19.393989239117737,1540.3519999999999,-19.9329633953268C1562.4143333333332,-20.471937551535866,1584.4766666666667,-20.24168208922213,1606.539,-19.267863756056226C1628.6013333333335,-18.294045422890317,1650.6636666666668,-16.57666421887224,1672.726,-14.307157904369895C1694.7883333333334,-12.03765158986755,1716.8506666666667,-9.216020164880936,1727.8818333333334,-7.805204452387629C1738.9130000000002,-6.394388739894322,1738.9130000000002,-6.394388739894322,1738.913,-6.394388739894323" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#3fd4e4" fill="none" transform="translate(0,473.1923076923078)" d="M-180.51000000000002,-18.47361095940507C-180.51,-18.47361095940507,-180.51,-18.47361095940507,-169.47883333333334,-18.894123892523062C-158.4476666666667,-19.314636825641053,-136.38533333333334,-20.155662691877033,-114.32300000000002,-20.094617658194693C-92.26066666666668,-20.033572624512352,-70.19833333333335,-19.07045669091169,-48.13600000000001,-17.32940355417221C-26.073666666666675,-15.588350417432725,-4.011333333333329,-13.069360077554423,18.051000000000002,-10.097099142296496C40.11333333333333,-7.1248382070385725,62.17566666666665,-3.699306676401025,84.23799999999999,-0.2620130723569627C106.3003333333333,3.1752805316870996,128.36266666666666,6.6243362091376765,150.42499999999998,9.64061346730492C172.4873333333333,12.656890725472163,194.54966666666667,15.240389564356073,216.612,17.058129030877343C238.67433333333332,18.875868497398613,260.7366666666667,19.927848591557243,282.799,20.078482128601596C304.8613333333333,20.22911566564595,326.92366666666663,19.478402645576026,348.986,17.923100664389004C371.0483333333333,16.36779868320198,393.11066666666665,14.007907740897856,415.173,11.147588506451875C437.2353333333333,8.287269272005895,459.2976666666666,4.926521745418055,481.35999999999996,1.4985045941586836C503.4223333333333,-1.929512557100688,525.4846666666667,-5.424799333031591,547.547,-8.536856625828033C569.6093333333333,-11.648913918624473,591.6716666666667,-14.377741728286452,613.734,-16.371628000148185C635.7963333333335,-18.365514272009918,657.8586666666667,-19.624459006071405,679.921,-19.986199842809743C701.9833333333333,-20.34794067954808,724.0456666666666,-19.81247761896328,746.108,-18.44882520736311C768.1703333333334,-17.08517279576295,790.2326666666667,-14.893331033147428,812.2949999999998,-12.1558011338117C834.3573333333333,-9.41827123447597,856.4196666666666,-6.135053198420033,878.4819999999999,-2.729313103506443C900.5443333333333,0.6764269914071463,922.6066666666667,4.2046891451783885,944.669,7.400724132843824C966.7313333333334,10.59675912050926,988.7936666666667,13.460566942068889,1010.856,15.623038293695476C1032.9183333333333,17.785509645322062,1054.9806666666668,19.246644527015608,1077.0430000000001,19.81812077731004C1099.1053333333334,20.38959702760447,1121.1676666666667,20.071414646499786,1143.23,18.904583395997285C1165.2923333333333,17.737752145494788,1187.3546666666666,15.722272025594473,1209.417,13.117913422539953C1231.4793333333332,10.513554819485435,1253.5416666666665,7.320317733276712,1275.604,3.949770813518196C1297.6663333333331,0.5792238937596799,1319.7286666666664,-2.9686328595486304,1341.791,-6.236524720626024C1363.8533333333332,-9.504416581703417,1385.9156666666668,-12.492343550549895,1407.978,-14.81519890490052C1430.0403333333336,-17.138054259251145,1452.102666666667,-18.79583799910592,1474.1650000000002,-19.574882364530907C1496.2273333333333,-20.353926729955894,1518.2896666666666,-20.254231720951093,1540.3519999999999,-19.288646787501175C1562.4143333333332,-18.323061854051254,1584.4766666666667,-16.49158699615622,1606.539,-14.030276604297658C1628.6013333333335,-11.568966212439097,1650.6636666666668,-8.47782028661701,1672.726,-5.155249192261313C1694.7883333333334,-1.832678097905617,1716.8506666666667,1.7213181649836886,1727.8818333333334,3.4983162964283414C1738.9130000000002,5.275314427872994,1738.9130000000002,5.275314427872994,1738.913,5.275314427872995" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#38e7e3" fill="none" transform="translate(0,452.423076923077)" d="M-180.51000000000002,-11.424443328676766C-180.51,-11.424443328676766,-180.51,-11.424443328676766,-169.47883333333334,-12.678641025419854C-158.4476666666667,-13.932838722162941,-136.38533333333334,-16.441234115649117,-114.32300000000002,-18.018094286250285C-92.26066666666668,-19.594954456851454,-70.19833333333335,-20.240279404567612,-48.13600000000001,-19.8588995243074C-26.073666666666675,-19.477519644047184,-4.011333333333329,-18.0694349358106,18.051000000000002,-15.842303364925542C40.11333333333333,-13.61517179404048,62.17566666666665,-10.56899336050694,84.23799999999999,-7.153004684702303C106.3003333333333,-3.737016008897664,128.36266666666666,0.04878290917807471,150.42499999999998,3.646079564695083C172.4873333333333,7.243376220212092,194.54966666666667,10.65217061317037,216.612,13.369749161267517C238.67433333333332,16.087327709364665,260.7366666666667,18.113690412600683,282.799,19.149998462835047C304.8613333333333,20.18630651306941,326.92366666666663,20.232559910302122,348.986,19.28193741266992C371.0483333333333,18.331314915037716,393.11066666666665,16.38381652254059,415.173,13.726650491400408C437.2353333333333,11.069484460260222,459.2976666666666,7.702650790476975,481.35999999999996,4.1226748866481C503.4223333333333,0.542698982819223,525.4846666666667,-3.2504191550552823,547.547,-6.697287616707614C569.6093333333333,-10.144156078359947,591.6716666666667,-13.244774863790106,613.734,-15.541878735705502C635.7963333333335,-17.8389826076209,657.8586666666667,-19.33257156602153,679.921,-19.802377865420628C701.9833333333333,-20.272184164819723,724.0456666666666,-19.718207805217283,746.108,-18.222146715013416C768.1703333333334,-16.72608562480955,790.2326666666667,-14.287939804004253,812.2949999999998,-11.267275972809411C834.3573333333333,-8.24661214161457,856.4196666666666,-4.643430300030181,878.4819999999999,-0.9891114122503839C900.5443333333333,2.6652074755294124,922.6066666666667,6.370663409504615,944.669,9.58079250482475C966.7313333333334,12.790921600144882,988.7936666666667,15.505723856809947,1010.856,17.32483251450436C1032.9183333333333,19.143941172198772,1054.9806666666668,20.067356230922535,1077.0430000000001,19.958896613552895C1099.1053333333334,19.850436996183255,1121.1676666666667,18.710102702720217,1143.23,16.70606507810419C1165.2923333333333,14.702027453488157,1187.3546666666666,11.834286497719134,1209.417,8.525763678858658C1231.4793333333332,5.217240859998183,1253.5416666666665,1.4679361780462543,1275.604,-2.1692198670816936C1297.6663333333331,-5.806375912209641,1319.7286666666664,-9.331383320513607,1341.791,-12.22438993971022C1363.8533333333332,-15.11739655890683,1385.9156666666668,-17.378402388996086,1407.978,-18.673964514559305C1430.0403333333336,-19.969526640122524,1452.102666666667,-20.299645061159705,1474.1650000000002,-19.61563540575144C1496.2273333333333,-18.93162575034318,1518.2896666666666,-17.233488018489467,1540.3519999999999,-14.771655883804225C1562.4143333333332,-12.309823749118978,1584.4766666666667,-9.084297211602198,1606.539,-5.570762338983916C1628.6013333333335,-2.0572274663656342,1650.6636666666668,1.7443157413541481,1672.726,5.273232882705505C1694.7883333333334,8.802150024056862,1716.8506666666667,12.058441099039795,1727.8818333333334,13.686586636531263C1738.9130000000002,15.314732174022728,1738.9130000000002,15.314732174022728,1738.913,15.314732174022726" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#32e9d0" fill="none" transform="translate(0,431.6538461538462)" d="M-180.51000000000002,-1.5781735296979953C-180.51,-1.578173529697995,-180.51,-1.578173529697995,-169.47883333333334,-3.4662719798836106C-158.4476666666667,-5.354370430069226,-136.38533333333334,-9.130567330440458,-114.32300000000002,-12.187386779604694C-92.26066666666668,-15.24420622876893,-70.19833333333335,-17.58164822672617,-48.13600000000001,-18.80887049029117C-26.073666666666675,-20.036092753856174,-4.011333333333329,-20.153095283028932,18.051000000000002,-19.140314154648884C40.11333333333333,-18.127533026268836,62.17566666666665,-15.984968240335972,84.23799999999999,-13.070876777574584C106.3003333333333,-10.156785314813197,128.36266666666666,-6.471167175223286,150.42499999999998,-2.6302923710169757C172.4873333333333,1.2105824331893333,194.54966666666667,5.20671390201204,216.612,8.689911274547562C238.67433333333332,12.173108647083083,260.7366666666667,15.143371923331419,282.799,17.104045151373874C304.8613333333333,19.06471837941633,326.92366666666663,20.015801559252907,348.986,19.79826463930104C371.0483333333333,19.580727719349166,393.11066666666665,18.194570699608846,415.173,15.871572069095865C437.2353333333333,13.548573438582883,459.2976666666666,10.288733197297237,481.35999999999996,6.637127288871606C503.4223333333333,2.9855213804459755,525.4846666666667,-1.0578501951196402,547.547,-4.816897686831869C569.6093333333333,-8.575945178544098,591.6716666666667,-12.050668586402939,613.734,-14.660061480579717C635.7963333333335,-17.269454374756496,657.8586666666667,-19.01351675525121,679.921,-19.600624991015152C701.9833333333333,-20.18773322677909,724.0456666666666,-19.617887317812258,746.108,-17.986370858881497C768.1703333333334,-16.354854399950735,790.2326666666667,-13.66166739105605,812.2949999999998,-10.357136026610444C834.3573333333333,-7.052604662164843,856.4196666666666,-3.1367289421683235,878.4819999999999,0.7357198883982323C900.5443333333333,4.608168718964788,922.6066666666667,8.43719066010138,944.669,11.582537235418812C966.7313333333334,14.72788381073624,988.7936666666667,17.189555020234504,1010.856,18.555936288316662C1032.9183333333333,19.922317556398824,1054.9806666666668,20.193408883064876,1077.0430000000001,19.323881249174036C1099.1053333333334,18.454353615283196,1121.1676666666667,16.44420702083547,1143.23,13.629556879688213C1165.2923333333333,10.814906738540959,1187.3546666666666,7.195753050694176,1209.417,3.377252347001897C1231.4793333333332,-0.4412483566903833,1253.5416666666665,-4.459096076228161,1275.604,-8.00446888937032C1297.6663333333331,-11.54984170251248,1319.7286666666664,-14.622739609259023,1341.791,-16.7093451823037C1363.8533333333332,-18.79595075534838,1385.9156666666668,-19.896263994691196,1407.978,-19.82630217945199C1430.0403333333336,-19.756340364212782,1452.102666666667,-18.516103494391558,1474.1650000000002,-16.312970837715653C1496.2273333333333,-14.109838181039747,1518.2896666666666,-10.94380973750916,1540.3519999999999,-7.344275235972883C1562.4143333333332,-3.744740734436606,1584.4766666666667,0.28829982510536034,1606.539,4.080484134690856C1628.6013333333335,7.872668444276353,1650.6636666666668,11.423996503905379,1672.726,14.140652865588976C1694.7883333333334,16.857309227272573,1716.8506666666667,18.73929389101074,1727.8818333333334,19.680286222879822C1738.9130000000002,20.621278554748905,1738.9130000000002,20.621278554748905,1738.913,20.621278554748905" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#2cecbb" fill="none" transform="translate(0,410.88461538461536)" d="M-180.51000000000002,8.654488190076888C-180.51,8.654488190076886,-180.51,8.654488190076886,-169.47883333333334,6.521686966532676C-158.4476666666667,4.388885742988464,-136.38533333333334,0.12328329590003984,-114.32300000000002,-3.882647042807759C-92.26066666666668,-7.888577381515558,-70.19833333333335,-11.634835611842732,-48.13600000000001,-14.416889752282081C-26.073666666666675,-17.19894389272143,-4.011333333333329,-19.016793943272955,18.051000000000002,-19.528569851351893C40.11333333333333,-20.040345759430828,62.17566666666665,-19.246047525037177,84.23799999999999,-17.295053134038234C106.3003333333333,-15.34405874303929,128.36266666666666,-12.236368195435052,150.42499999999998,-8.556422617491288C172.4873333333333,-4.876477039547526,194.54966666666667,-0.6242764312642342,216.612,3.400498262764885C238.67433333333332,7.425272956794005,260.7366666666667,11.222621736568952,282.799,14.078404386492487C304.8613333333333,16.93418703641602,326.92366666666663,18.84840355648814,348.986,19.461060941687816C371.0483333333333,20.073718326887494,393.11066666666665,19.384816577214732,415.173,17.52391251575012C437.2353333333333,15.663008454285508,459.2976666666666,12.63010208102905,481.35999999999996,8.995570397645576C503.4223333333333,5.3610387142621025,525.4846666666667,1.124881720751616,547.547,-2.9162368461330472C569.6093333333333,-6.95735541301771,591.6716666666667,-10.80343555327655,613.734,-13.731172493011101C635.7963333333335,-16.658909432745652,657.8586666666667,-18.66830317195592,679.921,-19.38146140699514C701.9833333333333,-20.094619642034356,724.0456666666666,-19.511542372902532,746.108,-17.74188476978192C768.1703333333334,-15.972227166661309,790.2326666666667,-13.015989229551913,812.2949999999998,-9.429129475882618C834.3573333333333,-5.842269722213324,856.4196666666666,-1.6247881519841296,878.4819999999999,2.4301636512889964C900.5443333333333,6.485115454562123,922.6066666666667,10.377537490879181,944.669,13.375409797518808C966.7313333333334,16.373282104158434,988.7936666666667,18.47660468112063,1010.856,19.28982070028824C1032.9183333333333,20.103036719455844,1054.9806666666668,19.62614618082886,1077.0430000000001,17.94883447593235C1099.1053333333334,16.271522771035837,1121.1676666666667,13.393789899869795,1143.23,9.856830493802176C1165.2923333333333,6.319871087734558,1187.3546666666666,2.123685146765364,1209.417,-1.9425806622176236C1231.4793333333332,-6.008846471200611,1253.5416666666665,-9.94519214819739,1275.604,-13.011337325650464C1297.6663333333331,-16.07748250310354,1319.7286666666664,-18.273427181012906,1341.791,-19.186195755432404C1363.8533333333332,-20.098964329851903,1385.9156666666668,-19.728556800781533,1407.978,-18.144633062007713C1430.0403333333336,-16.5607093232339,1452.102666666667,-13.763269374756636,1474.1650000000002,-10.27840773245665C1496.2273333333333,-6.793546090156663,1518.2896666666666,-2.621262754033952,1540.3519999999999,1.4537908008979148C1562.4143333333332,5.528844355829781,1584.4766666666667,9.506668129570803,1606.539,12.639181265677854C1628.6013333333335,15.771694401784904,1650.6636666666668,18.05889690025798,1672.726,19.070650951772414C1694.7883333333334,20.08240500328685,1716.8506666666667,19.818710607842643,1727.8818333333334,19.68686341012054C1738.9130000000002,19.555016212398435,1738.9130000000002,19.555016212398435,1738.913,19.555016212398435" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#25efa3" fill="none" transform="translate(0,390.1153846153846)" d="M-180.51000000000002,16.768229365093294C-180.51,16.768229365093294,-180.51,16.768229365093294,-169.47883333333334,14.889456877456398C-158.4476666666667,13.0106843898195,-136.38533333333334,9.253139414545707,-114.32300000000002,5.110888597676253C-92.26066666666668,0.9686377808067976,-70.19833333333335,-3.5583188776583192,-48.13600000000001,-7.5192853117666925C-26.073666666666675,-11.480251745875066,-4.011333333333329,-14.875227955626695,18.051000000000002,-16.991242563092108C40.11333333333333,-19.107257170557524,62.17566666666665,-19.944310175736724,84.23799999999999,-19.326613944893598C106.3003333333333,-18.70891771405047,128.36266666666666,-16.63647224718502,150.42499999999998,-13.544507192137058C172.4873333333333,-10.452542137089099,194.54966666666667,-6.341057493858628,216.612,-2.0734969776033325C238.67433333333332,2.1940635386519634,260.7366666666667,6.617699927932086,282.799,10.26841418345726C304.8613333333333,13.919128438982433,326.92366666666663,16.79692056075266,348.986,18.297431847060516C371.0483333333333,19.797943133368374,393.11066666666665,19.92117358421386,415.173,18.64124384760334C437.2353333333333,17.36131411099282,459.2976666666666,14.67822418692629,481.35999999999996,11.155443803048868C503.4223333333333,7.632663419171445,525.4846666666667,3.2701925754831302,547.547,-1.0158159609752913C569.6093333333333,-5.301824497433713,591.6716666666667,-9.511370726662241,613.734,-12.760417238651899C635.7963333333335,-16.009463750641558,657.8586666666667,-18.298010545392344,679.921,-19.1454450174248C701.9833333333333,-19.99287948945726,724.0456666666666,-19.399201638771384,746.108,-17.489088425999167C768.1703333333334,-15.57897521322695,790.2326666666667,-12.352426638368392,812.2949999999998,-8.487042967594876C834.3573333333333,-4.6216592968213615,856.4196666666666,-0.11744053013289202,878.4819999999999,4.079692400430591C900.5443333333333,8.276825330994072,922.6066666666667,12.166872425432567,944.669,14.932893574072889C966.7313333333334,17.69891472271321,988.7936666666667,19.34090992555536,1010.856,19.514047434158417C1032.9183333333333,19.68718494276148,1054.9806666666668,18.391464757125455,1077.0430000000001,15.898998182039588C1099.1053333333334,13.40653160695372,1121.1676666666667,9.717318642418007,1143.23,5.606122670645588C1165.2923333333333,1.4949266988731686,1187.3546666666666,-3.0382522801359593,1209.417,-7.041411464777035C1231.4793333333332,-11.044570649418112,1253.5416666666665,-14.517710039691135,1275.604,-16.731443382546267C1297.6663333333331,-18.945176725401403,1319.7286666666664,-19.89950402083864,1341.791,-19.39400912312205C1363.8533333333332,-18.888514225405462,1385.9156666666668,-16.923197134535037,1407.978,-13.910789707164586C1430.0403333333336,-10.89838227979413,1452.102666666667,-6.838884515923645,1474.1650000000002,-2.5848224821850128C1496.2273333333333,1.6692395515536194,1518.2896666666666,6.117865855160398,1540.3519999999999,9.826810345712762C1562.4143333333332,13.535754836265124,1584.4766666666667,16.505017513763068,1606.539,18.11103014920708C1628.6013333333335,19.7170427846511,1650.6636666666668,19.95980537804118,1672.726,18.788335898863572C1694.7883333333334,17.616866419685962,1716.8506666666667,15.031164867940655,1727.8818333333334,13.738314092068002C1738.9130000000002,12.445463316195347,1738.9130000000002,12.445463316195347,1738.913,12.44546331619535" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#1ef28a" fill="none" transform="translate(0,369.3461538461538)" d="M-180.51000000000002,20.77652317909102C-180.51,20.77652317909102,-180.51,20.77652317909102,-169.47883333333334,19.64288292483124C-158.4476666666667,18.509242670571464,-136.38533333333334,16.24196216205191,-114.32300000000002,12.889246359181184C-92.26066666666668,9.536530556310458,-70.19833333333335,5.098379459088563,-48.13600000000001,0.6089473964701742C-26.073666666666675,-3.880484666148215,-4.011333333333329,-8.421197694163098,18.051000000000002,-11.9551389238004C40.11333333333333,-15.489080153437705,62.17566666666665,-18.016249584697427,84.23799999999999,-18.9477796576231C106.3003333333333,-19.87930973054877,128.36266666666666,-19.21520044514039,150.42499999999998,-17.11019900971946C172.4873333333333,-15.005197574298531,194.54966666666667,-11.459303988865052,216.612,-7.29876348956793C238.67433333333332,-3.138222990270808,260.7366666666667,1.6369644228899576,282.799,5.914110013836546C304.8613333333333,10.191255604783134,326.92366666666663,13.970359373515546,348.986,16.370834689161775C371.0483333333333,18.771310004808,393.11066666666665,19.793156867368044,415.173,19.19826996377432C437.2353333333333,18.603383060180597,459.2976666666666,16.39176239043311,481.35999999999996,13.078748022844694C503.4223333333333,9.765733655256275,525.4846666666667,5.351325589826926,547.547,0.8641456807098082C569.6093333333333,-3.6230342284073096,591.6716666666667,-8.182985981212196,613.734,-11.753173908754896C635.7963333333335,-15.323361836297597,657.8586666666667,-17.90378593857811,679.921,-18.893169535858593C701.9833333333333,-19.882553133139076,724.0456666666666,-19.280896225419532,746.108,-17.228393700623702C768.1703333333334,-15.175891175827875,790.2326666666667,-11.672543033955765,812.2949999999998,-7.534680798515049C834.3573333333333,-3.3968185630743335,856.4196666666666,1.375557765934988,878.4819999999999,5.670414476290906C900.5443333333333,9.965271186646824,922.6066666666667,13.78260827834934,944.669,16.232930195256944C966.7313333333334,18.683252112164546,988.7936666666667,19.766558854277235,1010.856,19.23042405475885C1032.9183333333333,18.69428925524046,1054.9806666666668,16.538712914090993,1077.0430000000001,13.265975948692338C1099.1053333333334,9.993238983293685,1121.1676666666667,5.6033413936458425,1143.23,1.1191937333898982C1165.2923333333333,-3.364953926866046,1187.3546666666666,-7.943351657730092,1209.417,-11.54916560669706C1231.4793333333332,-15.154979555664024,1253.5416666666665,-17.78820972273391,1275.604,-18.835274840222063C1297.6663333333331,-19.882339957710215,1319.7286666666664,-19.34324002561663,1341.791,-17.343593238613135C1363.8533333333332,-15.343946451609632,1385.9156666666668,-11.883752809696215,1407.978,-7.769288204661729C1430.0403333333336,-3.6548235996272433,1452.102666666667,1.1139119685283099,1474.1650000000002,5.4257331382846035C1496.2273333333333,9.737554308040897,1518.2896666666666,13.592461079397932,1540.3519999999999,16.092203609575254C1562.4143333333332,18.591946139752572,1584.4766666666667,19.73652442875018,1606.539,19.25923494023839C1628.6013333333335,18.781945451726603,1650.6636666666668,16.68278818570542,1672.726,13.450897587185393C1694.7883333333334,10.219006988665368,1716.8506666666667,5.854383057646504,1727.8818333333334,3.6720710921370707C1738.9130000000002,1.489759126627638,1738.9130000000002,1.489759126627638,1738.913,1.489759126627638" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#17f46e" fill="none" transform="translate(0,348.576923076923)" d="M-180.51000000000002,19.69799951226952C-180.51,19.69799951226952,-180.51,19.69799951226952,-169.47883333333334,19.666166772894407C-158.4476666666667,19.634334033519302,-136.38533333333334,19.570668554769085,-114.32300000000002,17.83556091383383C-92.26066666666668,16.100453272898573,-70.19833333333335,12.693903469778276,-48.13600000000001,8.491574098003499C-26.073666666666675,4.289244726228722,-4.011333333333329,-0.7088642142005348,18.051000000000002,-5.21797566424476C40.11333333333333,-9.727087114288985,62.17566666666665,-13.747201073948176,84.23799999999999,-16.24493666824463C106.3003333333333,-18.742672262541085,128.36266666666666,-19.7180294914748,150.42499999999998,-18.920290212036527C172.4873333333333,-18.122550932598244,194.54966666666667,-15.551715144787972,216.612,-11.868622954754485C238.67433333333332,-8.185530764720998,260.7366666666667,-3.3901821724643,282.799,1.2847658441747702C304.8613333333333,5.9597138608138405,326.92366666666663,10.514261301835283,348.986,13.777649759154261C371.0483333333333,17.04103821647324,393.11066666666665,19.013267690089755,415.173,19.18737140255569C437.2353333333333,19.361475115021623,459.2976666666666,17.737453066336975,481.35999999999996,14.73276439882792C503.4223333333333,11.728075731318862,525.4846666666667,7.342720444985394,547.547,2.7039656592062786C569.6093333333333,-1.9347891265728374,591.6716666666667,-6.826943411797601,613.734,-10.7149560604401C635.7963333333335,-14.602968709082598,657.8586666666667,-17.48683972114283,679.921,-18.625262462114787C701.9833333333333,-19.76368520308674,724.0456666666666,-19.15665967297042,746.108,-16.960223382080223C768.1703333333334,-14.763787091190022,790.2326666666667,-10.977940039525944,812.2949999999998,-6.575844176733819C834.3573333333333,-2.1737483139416955,856.4196666666666,2.844596359978472,878.4819999999999,7.189211137429312C900.5443333333333,11.533825914880152,922.6066666666667,15.204710795861665,944.669,17.25825515930263C966.7313333333334,19.3117995227436,988.7936666666667,19.74800336864402,1010.856,18.454739350249923C1032.9183333333333,17.161475331855826,1054.9806666666668,14.138743449167203,1077.0430000000001,10.163544888991362C1099.1053333333334,6.18834632881552,1121.1676666666667,1.2606810911524575,1143.23,-3.352781504174597C1165.2923333333333,-7.966244099501651,1187.3546666666666,-12.265504052492698,1209.417,-15.1454252758227C1231.4793333333332,-18.0253464991527,1253.5416666666665,-19.485928992821655,1275.604,-19.151726182321838C1297.6663333333331,-18.81752337182202,1319.7286666666664,-16.688535257153426,1341.791,-13.312023837062949C1363.8533333333332,-9.935512416972472,1385.9156666666668,-5.311477691460112,1407.978,-0.6285399579918467C1430.0403333333336,4.054397775476419,1452.102666666667,8.79623851690059,1474.1650000000002,12.378079622338392C1496.2273333333333,15.959920727776193,1518.2896666666666,18.38176219722763,1540.3519999999999,19.021063306257325C1562.4143333333332,19.660364415287027,1584.4766666666667,18.51712516389499,1606.539,15.885218210858401C1628.6013333333335,13.253311257821812,1650.6636666666668,9.132736603140671,1672.726,4.582698807878311C1694.7883333333334,0.03266101261594967,1716.8506666666667,-4.946839923227631,1727.8818333333334,-7.436590391149421C1738.9130000000002,-9.926340859071212,1738.9130000000002,-9.926340859071212,1738.913,-9.926340859071212" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#10f850" fill="none" transform="translate(0,327.80769230769215)" d="M-180.51000000000002,13.79671857309457C-180.51,13.796718573094568,-180.51,13.796718573094568,-169.47883333333334,14.984930129170909C-158.4476666666667,16.17314168524725,-136.38533333333334,18.54956479739993,-114.32300000000002,18.958321937174215C-92.26066666666668,19.3670790769485,-70.19833333333335,17.80817024434439,-48.13600000000001,14.721346988088758C-26.073666666666675,11.634523731833127,-4.011333333333329,7.019786051925973,18.051000000000002,2.1789022104134634C40.11333333333333,-2.6619816310990467,62.17566666666665,-7.729011634216912,84.23799999999999,-11.592832698299361C106.3003333333333,-15.456653762381809,128.36266666666666,-18.117265887428843,150.42499999999998,-18.82413878066093C172.4873333333333,-19.53101167389302,194.54966666666667,-18.284145335310164,216.612,-15.435267455447864C238.67433333333332,-12.586389575585562,260.7366666666667,-8.135500154443815,282.799,-3.3381476084682284C304.8613333333333,1.4592049375073568,326.92366666666663,6.603020608316779,348.986,10.642283885736672C371.0483333333333,14.681547163156566,393.11066666666665,17.616258047186932,415.173,18.618565909666167C437.2353333333333,19.6208737721454,459.2976666666666,18.690778613073512,481.35999999999996,16.090650353071172C503.4223333333333,13.49052209306884,525.4846666666667,9.220360732136061,547.547,4.484733229231596C569.6093333333333,-0.25089427367287165,591.6716666666667,-5.451987918549028,613.734,-9.651374681822972C635.7963333333335,-13.850761445096916,657.8586666666667,-17.048441326768646,679.921,-18.34238295021884C701.9833333333333,-19.63632457366904,724.0456666666666,-19.0265279388977,746.108,-16.685010170280965C768.1703333333334,-14.343492401664232,790.2326666666667,-10.2702534992021,812.2949999999998,-5.6143106974047745C834.3573333333333,-0.9583678956074486,856.4196666666666,4.2802788055250724,878.4819999999999,8.623863065925477C900.5443333333333,12.96744732632588,922.6066666666667,16.41596914599417,944.669,17.99663731398806C966.7313333333334,19.577305481981952,988.7936666666667,19.290119998301456,1010.856,17.216092823735437C1032.9183333333333,15.142065649169425,1054.9806666666668,11.281196783717892,1077.0430000000001,6.7225961403560515C1099.1053333333334,2.163995496994211,1121.1676666666667,-3.0923369242779395,1143.23,-7.563645830441479C1165.2923333333333,-12.03495473660502,1187.3546666666666,-15.72124012765995,1209.417,-17.582640226020608C1231.4793333333332,-19.444040324381263,1253.5416666666665,-19.480555130047648,1275.604,-17.681884205940044C1297.6663333333331,-15.883213281832438,1319.7286666666664,-12.249356627950844,1341.791,-7.805386434518529C1363.8533333333332,-3.361416241086214,1385.9156666666668,1.8926674918968218,1407.978,6.474743802385338C1430.0403333333336,11.056820112873854,1452.102666666667,14.96688900086785,1474.1650000000002,17.10196175197803C1496.2273333333333,19.237034503088214,1518.2896666666666,19.597111117314583,1540.3519999999999,18.080617823661253C1562.4143333333332,16.564124530007923,1584.4766666666667,13.171061328474895,1606.539,8.858575145550379C1628.6013333333335,4.546088962625863,1650.6636666666668,-0.6858202016901425,1672.726,-5.361286594579365C1694.7883333333334,-10.036752987468587,1716.8506666666667,-14.155776608931026,1727.8818333333334,-16.215288419662247C1738.9130000000002,-18.274800230393467,1738.9130000000002,-18.274800230393467,1738.913,-18.274800230393467" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#09fb2f" fill="none" transform="translate(0,307.0384615384614)" d="M-180.51000000000002,4.5175197498441255C-180.51,4.5175197498441255,-180.51,4.5175197498441255,-169.47883333333334,6.7533368700566845C-158.4476666666667,8.989153990269244,-136.38533333333334,13.460788230694362,-114.32300000000002,16.09081581422676C-92.26066666666668,18.720843397759165,-70.19833333333335,19.50926432439885,-48.13600000000001,18.213173114542336C-26.073666666666675,16.917081904685823,-4.011333333333329,13.53647855833311,18.051000000000002,9.11289691793917C40.11333333333333,4.6893152775452265,62.17566666666665,-0.777244656889946,84.23799999999999,-5.602584359187468C106.3003333333333,-10.42792406148499,128.36266666666666,-14.612043531644861,150.42499999999998,-16.865852751535282C172.4873333333333,-19.1196619714257,194.54966666666667,-19.44316094104667,216.612,-17.736682503284623C238.67433333333332,-16.030204065522575,260.7366666666667,-12.293748220377516,282.799,-7.678483802180727C304.8613333333333,-3.0632193839839394,326.92366666666663,2.430853607264576,348.986,7.111060117132082C371.0483333333333,11.791266626999587,393.11066666666665,15.657606655486083,415.173,17.518895205850797C437.2353333333333,19.38018375621551,459.2976666666666,19.23642082845844,481.35999999999996,17.131898502782054C503.4223333333333,15.027376177105673,525.4846666666667,10.96209445350998,547.547,6.188530496701893C569.6093333333333,1.4149665398938076,591.6716666666667,-4.06687965012667,613.734,-8.568099987706995C635.7963333333335,-13.069320325287322,657.8586666666667,-16.589914810427498,679.921,-18.045219575125994C701.9833333333333,-19.500524339824487,724.0456666666666,-18.890539384081304,746.108,-16.403195650898198C768.1703333333334,-13.915851917715093,790.2326666666667,-9.551149407092066,812.2949999999998,-4.65381416681187C834.3573333333333,0.24352107346832597,856.4196666666666,5.673489043405691,878.4819999999999,9.963164875834764C900.5443333333333,14.252840708263836,922.6066666666667,17.402224403184615,944.669,18.441018837548093C966.7313333333334,19.47981327191157,988.7936666666667,18.408018445717747,1010.856,15.555844818248506C1032.9183333333333,12.70367119077926,1054.9806666666668,8.071118762034597,1077.0430000000001,3.0854357587815344C1099.1053333333334,-1.9002472444715286,1121.1676666666667,-7.239060822232993,1143.23,-11.286163965339272C1165.2923333333333,-15.33326710844555,1187.3546666666666,-18.088659816896644,1209.417,-18.703430088578575C1231.4793333333332,-19.318200360260505,1253.5416666666665,-17.792348195173275,1275.604,-14.59597508281464C1297.6663333333331,-11.399601970456008,1319.7286666666664,-6.53270791082597,1341.791,-1.4947397042173378C1363.8533333333332,3.5432285023912935,1385.9156666666668,8.752270855978518,1407.978,12.527527708074851C1430.0403333333336,16.302784560171183,1452.102666666667,18.64425591077662,1474.1650000000002,18.830555248981693C1496.2273333333333,19.016854587186764,1518.2896666666666,17.04798191299146,1540.3519999999999,13.530529396953645C1562.4143333333332,10.013076880915829,1584.4766666666667,4.9470445230354985,1606.539,-0.10676813674814412C1628.6013333333335,-5.160580796531787,1650.6636666666668,-10.202173758218741,1672.726,-13.678277042606924C1694.7883333333334,-17.154380326995106,1716.8506666666667,-19.064993934084516,1727.8818333333334,-20.02030073762922C1738.9130000000002,-20.975607541173925,1738.9130000000002,-20.975607541173925,1738.913,-20.975607541173922" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#02fe0c" fill="none" transform="translate(0,286.2692307692306)" d="M-180.51000000000002,-5.867725462177443C-180.51,-5.867725462177443,-180.51,-5.867725462177443,-169.47883333333334,-3.030180590424699C-158.4476666666667,-0.19263571867195495,-136.38533333333334,5.482454024833533,-114.32300000000002,9.911532426712077C-92.26066666666668,14.34061082859062,-70.19833333333335,17.523677888842222,-48.13600000000001,18.3943328635629C-26.073666666666675,19.264987838283588,-4.011333333333329,17.82323072747335,18.051000000000002,14.552083354547811C40.11333333333333,11.28093598162227,62.17566666666665,6.180398346581421,84.23799999999999,0.959267978776662C106.3003333333333,-4.261862389028097,128.36266666666666,-9.603585489596766,150.42499999999998,-13.276301110194515C172.4873333333333,-16.949016730792266,194.54966666666667,-18.9527248714191,216.612,-18.61613717676088C238.67433333333332,-18.27954948210266,260.7366666666667,-15.602665952159384,282.799,-11.482304195118731C304.8613333333333,-7.36194243807808,326.92366666666663,-1.798102453940051,348.986,3.345201275119019C371.0483333333333,8.488505004178089,393.11066666666665,13.2112724781582,415.173,15.931267868468357C437.2353333333333,18.651263258778513,459.2976666666666,19.368486565418713,481.35999999999996,17.842651469166412C503.4223333333333,16.31681637291412,525.4846666666667,12.547922873769322,547.547,7.7986370592209715C569.6093333333333,3.0493512446726228,591.6716666666667,-2.680326885279281,613.734,-7.470823251781319C635.7963333333335,-12.261319618283355,657.8586666666667,-16.11263422133553,679.921,-17.73448800618919C701.9833333333333,-19.356341791042844,724.0456666666666,-18.74873475769799,746.108,-16.115229250301084C768.1703333333334,-13.481723742904178,790.2326666666667,-8.822319761455221,812.2949999999998,-3.698024905829784C834.3573333333333,1.4262699497956541,856.4196666666666,7.015455679597572,878.4819999999999,11.197026393107219C900.5443333333333,15.378597106616866,922.6066666666667,18.152552803834244,944.669,18.589554465795832C966.7313333333334,19.026556127757416,988.7936666666667,17.12660375446321,1010.856,13.526225130565944C1032.9183333333333,9.925846506668679,1054.9806666666668,4.625041632168348,1077.0430000000001,-0.6002978279287015C1099.1053333333334,-5.825637288025752,1121.1676666666667,-10.975511333719522,1143.23,-14.324593602295739C1165.2923333333333,-17.673675870871953,1187.3546666666666,-19.22196636233062,1209.417,-18.450752118189317C1231.4793333333332,-17.679537874048016,1253.5416666666665,-14.588818894306756,1275.604,-10.214057189914712C1297.6663333333331,-5.839295485522667,1319.7286666666664,-0.18049105647983898,1341.791,4.866526339778071C1363.8533333333332,9.913543736035981,1385.9156666666668,14.348774099508974,1407.978,16.68631315313815C1430.0403333333336,19.023852206767327,1452.102666666667,19.263699950552688,1474.1650000000002,17.325501868690814C1496.2273333333333,15.38730378682894,1518.2896666666666,11.271059879319836,1540.3519999999999,6.355806616953681C1562.4143333333332,1.4405533545875282,1584.4766666666667,-4.273709262635672,1606.539,-8.872571707513611C1628.6013333333335,-13.471434152391549,1650.6636666666668,-16.95489642492423,1672.726,-18.155918469569546C1694.7883333333334,-19.356940514214863,1716.8506666666667,-18.27552233097282,1727.8818333333334,-17.734813239351798C1738.9130000000002,-17.194104147730776,1738.9130000000002,-17.194104147730776,1738.913,-17.194104147730776" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#1dff00" fill="none" transform="translate(0,265.4999999999998)" d="M-180.51000000000002,-14.81634683697823C-180.51,-14.81634683697823,-180.51,-14.81634683697823,-169.47883333333334,-12.008633371771898C-158.4476666666667,-9.200919906565566,-136.38533333333334,-3.585492976152902,-114.32300000000002,1.7844142167078934C-92.26066666666668,7.154321409568689,-70.19833333333335,12.278708864877615,-48.13600000000001,15.29819845779268C-26.073666666666675,18.317688050707744,-4.011333333333329,19.232279781228947,18.051000000000002,17.71011508641123C40.11333333333333,16.187950391593514,62.17566666666665,12.229029271436875,84.23799999999999,7.269841724598226C106.3003333333333,2.3106541777595773,128.36266666666666,-3.6487997957610854,150.42499999999998,-8.44613914047056C172.4873333333333,-13.243478485180033,194.54966666666667,-16.878703201078316,216.612,-18.03277615942068C238.67433333333332,-19.186849117763042,260.7366666666667,-17.859770318549486,282.799,-14.533068785632965C304.8613333333333,-11.206367252716445,326.92366666666663,-5.880042986096966,348.986,-0.4867466515447414C371.0483333333333,4.9065496830074835,393.11066666666665,10.366818085492454,415.173,13.912806413699847C437.2353333333333,17.45879474190724,459.2976666666666,19.09050299583706,481.35999999999996,18.21586770254914C503.4223333333333,17.341232409261217,525.4846666666667,13.960253568755554,547.547,9.29971548479844C569.6093333333333,4.639177400841327,591.6716666666667,-1.3009199265672393,613.734,-6.365218978827983C635.7963333333335,-11.429518031088726,657.8586666666667,-15.618018808201644,679.921,-17.41092859566797C701.9833333333333,-19.203838383134293,724.0456666666666,-18.601157180954022,746.108,-15.821567173751276C768.1703333333334,-13.041977166548534,790.2326666666667,-8.085478354323318,812.2949999999998,-2.75053065987266C834.3573333333333,2.5844170345779984,856.4196666666666,8.297813611254098,878.4819999999999,12.316559659568979C900.5443333333333,16.335305707883858,922.6066666666667,18.65940122783752,944.669,18.44555081924156C966.7313333333334,18.231700410645605,988.7936666666667,15.479904073500027,1010.856,11.18864796013665C1032.9183333333333,6.8973918467732735,1054.9806666666668,1.0666759571920963,1077.0430000000001,-4.187831119569198C1099.1053333333334,-9.442338196330493,1121.1676666666667,-14.120636460271903,1143.23,-16.525210739224526C1165.2923333333333,-18.92978501817715,1187.3546666666666,-19.060635312140985,1209.417,-16.870282741669964C1231.4793333333332,-14.679930171198938,1253.5416666666665,-10.168374736293059,1275.604,-4.972629164392609C1297.6663333333331,0.22311640750784,1319.7286666666664,6.103052116402858,1341.791,10.533650018133986C1363.8533333333332,14.964247919865116,1385.9156666666668,17.94550801443236,1407.978,18.395683487675537C1430.0403333333336,18.845858960918715,1452.102666666667,16.76494981283783,1474.1650000000002,12.908011546840768C1496.2273333333333,9.051073280843708,1518.2896666666666,3.418105896930469,1540.3519999999999,-1.9469748348793425C1562.4143333333332,-7.312055566689154,1584.4766666666667,-12.409249646395539,1606.539,-15.389046034379241C1628.6013333333335,-18.368842422362942,1650.6636666666668,-19.23124111862396,1672.726,-17.663321742979363C1694.7883333333334,-16.09540236733476,1716.8506666666667,-12.097164919784543,1727.8818333333334,-10.098046196009436C1738.9130000000002,-8.098927472234328,1738.9130000000002,-8.098927472234328,1738.913,-8.098927472234328" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#49ff00" fill="none" transform="translate(0,244.73076923076894)" d="M-180.51000000000002,-20.137409767925906C-180.51,-20.137409767925906,-180.51,-20.137409767925906,-169.47883333333334,-18.035460988386248C-158.4476666666667,-15.93351220884659,-136.38533333333334,-11.729614649767273,-114.32300000000002,-6.54353272149241C-92.26066666666668,-1.3574507932175477,-70.19833333333335,4.810815504252861,-48.13600000000001,9.546197412923302C-26.073666666666675,14.281579321593746,-4.011333333333329,17.58407684146422,18.051000000000002,18.16065912740606C40.11333333333333,18.737241413347896,62.17566666666665,16.587908465361096,84.23799999999999,12.55419121010848C106.3003333333333,8.520473954855865,128.36266666666666,2.602372392337432,150.42499999999998,-2.8829920204591293C172.4873333333333,-8.368356433255691,194.54966666666667,-13.42098369633038,216.612,-16.062612551110053C238.67433333333332,-18.704241405889725,260.7366666666667,-18.934871852374382,282.799,-16.66420487312763C304.8613333333333,-14.39353789388088,326.92366666666663,-9.621573488902722,348.986,-4.216684648745715C371.0483333333333,1.1882041914112929,393.11066666666665,7.226017466747152,415.173,11.53276284867932C437.2353333333333,15.83950823061149,459.2976666666666,18.41518571913997,481.35999999999996,18.25133719439266C503.4223333333333,18.087488669645353,525.4846666666667,15.184114131622255,547.547,10.67797532201645C569.6093333333333,6.171836512410648,591.6716666666667,0.06293343122213813,613.734,-5.256907715366747C635.7963333333335,-10.576748861955632,657.8586666666667,-15.107528073944891,679.921,-17.07530389087292C701.9833333333333,-19.04307970780095,724.0456666666666,-18.447852129667748,746.108,-15.52267132949136C768.1703333333334,-12.597490529314967,790.2326666666667,-7.342356507095389,812.2949999999998,-1.8148182375496473C834.3573333333333,3.7127200319960956,856.4196666666666,9.512662548868002,878.4819999999999,13.314150810019353C900.5443333333333,17.115639071170705,922.6066666666667,18.9186730766015,944.669,18.017308743141207C966.7313333333334,17.115944409680907,988.7936666666667,13.510181737329512,1010.856,8.611789342872175C1032.9183333333333,3.713396948414837,1054.9806666666668,-2.4776251681484456,1077.0430000000001,-7.537298635471578C1099.1053333333334,-12.59697210279471,1121.1676666666667,-16.525296920877693,1143.23,-17.784211326190434C1165.2923333333333,-19.043125731503174,1187.3546666666666,-17.632629724045678,1209.417,-14.104976510247269C1231.4793333333332,-10.577323296448865,1253.5416666666665,-4.932512876309553,1275.604,0.619335304439772C1297.6663333333331,6.171183485189096,1319.7286666666664,11.630069426548433,1341.791,14.858668918659234C1363.8533333333332,18.087268410770037,1385.9156666666668,19.0855814536323,1407.978,17.462737335080956C1430.0403333333336,15.83989321652961,1452.102666666667,11.595891936564659,1474.1650000000002,6.3923924453419705C1496.2273333333333,1.188892954119284,1518.2896666666666,-4.974104748361137,1540.3519999999999,-9.683594723467515C1562.4143333333332,-14.39308469857389,1584.4766666666667,-17.649066946306224,1606.539,-18.176722802251255C1628.6013333333335,-18.704378658196283,1650.6636666666668,-16.503708122354013,1672.726,-12.436342389203446C1694.7883333333334,-8.368976656052876,1716.8506666666667,-2.43491572559401,1727.8818333333334,0.5321147396354236C1738.9130000000002,3.499145204864857,1738.9130000000002,3.499145204864857,1738.913,3.499145204864857" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#75ff00" fill="none" transform="translate(0,223.9615384615381)" d="M-180.51000000000002,-20.528132470967037C-180.51,-20.528132470967037,-180.51,-20.528132470967037,-169.47883333333334,-19.68918718230839C-158.4476666666667,-18.850241893649745,-136.38533333333334,-17.17235131633245,-114.32300000000002,-13.31990860932265C-92.26066666666668,-9.467465902312853,-70.19833333333335,-3.440471065610549,-48.13600000000001,2.2235210909942635C-26.073666666666675,7.887513247599076,-4.011333333333329,13.188502724106398,18.051000000000002,15.894605852582412C40.11333333333333,18.600708981058425,62.17566666666665,18.711925761503128,84.23799999999999,16.18143042356275C106.3003333333333,13.650935085622372,128.36266666666666,8.47872762929691,150.42499999999998,2.842470432543803C172.4873333333333,-2.793786764209306,194.54966666666667,-8.894093701390062,216.612,-12.890028863955616C238.67433333333332,-16.88596402652117,260.7366666666667,-18.77752741447152,282.799,-17.768311215427936C304.8613333333333,-16.759095016384347,326.92366666666663,-12.849099230346825,348.986,-7.684555334518163C371.0483333333333,-2.520011438689501,393.11066666666665,3.8990805669303006,415.173,8.870080604710514C437.2353333333333,13.841080642490727,459.2976666666666,17.363988712431354,481.35999999999996,17.955549467624362C503.4223333333333,18.547110222817366,525.4846666666667,16.207323663262752,547.547,11.921313685520614C569.6093333333333,7.635303707778477,591.6716666666667,1.4030703118488175,613.734,-4.151419789493104C635.7963333333335,-9.705909890835025,657.8586666666667,-14.582656697589208,679.921,-16.728396078808082C701.9833333333333,-18.874135460026956,724.0456666666666,-18.28886741571052,746.108,-15.219008241394242C768.1703333333334,-12.149149067077962,790.2326666666667,-6.59469876276184,812.2949999999998,-0.8942559945049449C834.3573333333333,4.806186773751949,856.4196666666666,10.652622005949615,878.4819999999999,14.183516177412564C900.5443333333333,17.714410348875514,922.6066666666667,18.92976345960375,944.669,17.317873539497487C966.7313333333334,15.705983619391228,988.7936666666667,11.266850668450473,1010.856,5.869489589817313C1032.9183333333333,0.47212851118415156,1054.9806666666668,-5.883460695141416,1077.0430000000001,-10.521374631773185C1099.1053333333334,-15.159288568404952,1121.1676666666667,-18.07952723534292,1143.23,-18.052578101748793C1165.2923333333333,-18.02562896815467,1187.3546666666666,-15.05149203402845,1209.417,-10.382372699681294C1231.4793333333332,-5.713253365334135,1253.5416666666665,0.6508483692339624,1275.604,6.030445063913918C1297.6663333333331,11.410041758593874,1319.7286666666664,15.805133413385686,1341.791,17.36524789910014C1363.8533333333332,18.925362384814594,1385.9156666666668,17.65049970145169,1407.978,14.077417225057138C1430.0403333333336,10.504334748662586,1452.102666666667,4.633032479236389,1474.1650000000002,-1.0644862520114868C1496.2273333333333,-6.762004983259363,1518.2896666666666,-12.285740176328918,1540.3519999999999,-15.310025195200721C1562.4143333333332,-18.334310214072524,1584.4766666666667,-18.859145058746577,1606.539,-16.663557715718262C1628.6013333333335,-14.467970372689951,1650.6636666666668,-9.551960841959271,1672.726,-3.9853240989114633C1694.7883333333334,1.5813126441363439,1716.8506666666667,7.798576599501278,1727.8818333333334,10.907208577183745C1738.9130000000002,14.015840554866212,1738.9130000000002,14.015840554866212,1738.913,14.015840554866212" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#a0ff00" fill="none" transform="translate(0,203.1923076923074)" d="M-180.51000000000002,-15.892852401466492C-180.51,-15.892852401466492,-180.51,-15.892852401466492,-169.47883333333334,-16.61003882988252C-158.4476666666667,-17.327225258298547,-136.38533333333334,-18.761598115130603,-114.32300000000002,-17.157755480280436C-92.26066666666668,-15.553912845430261,-70.19833333333335,-10.911854718897864,-48.13600000000001,-5.3265890009569485C-26.073666666666675,0.258676716983965,-4.011333333333329,6.787150026333394,18.051000000000002,11.312464727659462C40.11333333333333,15.837779428985531,62.17566666666665,18.35993552228824,84.23799999999999,17.740658389464148C106.3003333333333,17.121381256640056,128.36266666666666,13.360670897689163,150.42499999999998,8.155774029021856C172.4873333333333,2.9508771603545485,194.54966666666667,-3.6982062180291733,216.612,-8.79067735962629C238.67433333333332,-13.88314850122341,260.7366666666667,-17.419007406033924,282.799,-17.802485098763977C304.8613333333333,-18.185962791494028,326.92366666666663,-15.41705927214362,348.986,-10.745408774066911C371.0483333333333,-6.0737582759902,393.11066666666665,0.5006392008128095,415.173,6.010691414494094C437.2353333333333,11.520743628175378,459.2976666666666,15.966450578734936,481.35999999999996,17.341419642502327C503.4223333333333,18.71638870626972,525.4846666666667,17.020619883244944,547.547,13.019430837368706C569.6093333333333,9.01824179149247,591.6716666666667,2.7116325227647673,613.734,-3.054160260487434C635.7963333333335,-8.819953043739634,657.8586666666667,-14.044929341516335,679.921,-16.37100437241005C701.9833333333333,-18.697079403303757,724.0456666666666,-18.124253167314478,746.108,-14.911047952869046C768.1703333333334,-11.697842738423612,790.2326666666667,-5.84425854552202,812.2949999999998,0.007922727639882332C834.3573333333333,5.860104000801786,856.4196666666666,11.710882354224001,878.4819999999999,14.91974219351733C900.5443333333333,18.12860203281066,922.6066666666667,18.695543357975104,944.669,16.36469980050863C966.7313333333334,14.033856243042163,988.7936666666667,8.805227802944778,1010.856,3.038547510483901C1032.9183333333333,-2.7281327819769774,1054.9806666666668,-9.032864926801349,1077.0430000000001,-13.030259380712769C1099.1053333333334,-17.02765383462419,1121.1676666666667,-18.71771059762266,1143.23,-17.337689916374323C1165.2923333333333,-15.957669235125984,1187.3546666666666,-11.507571109630838,1209.417,-5.995769945331698C1231.4793333333332,-0.48396878103256036,1253.5416666666665,6.089535422070571,1275.604,10.758053565607687C1297.6663333333331,15.426571709144802,1319.7286666666664,18.190103793115902,1341.791,17.801439767416735C1363.8533333333332,17.41277574171756,1385.9156666666668,13.871915606348114,1407.978,8.776885442663094C1430.0403333333336,3.6818552789780763,1452.102666666667,-2.967344913022515,1474.1650000000002,-8.169863667665968C1496.2273333333333,-13.372382422309421,1518.2896666666666,-17.128219739595735,1540.3519999999999,-17.742328156227543C1562.4143333333332,-18.356436572859348,1584.4766666666667,-15.82881608883665,1606.539,-11.300207457200571C1628.6013333333335,-6.771598825564489,1650.6636666666668,-0.24200204631502675,1672.726,5.341709647758734C1694.7883333333334,10.925421341832493,1716.8506666666667,15.56324795073055,1727.8818333333334,17.88216125517958C1738.9130000000002,20.20107455962861,1738.9130000000002,20.20107455962861,1738.913,20.20107455962861" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#ccff00" fill="none" transform="translate(0,182.42307692307656)" d="M-180.51000000000002,-7.366447781482017C-180.51,-7.366447781482016,-180.51,-7.366447781482016,-169.47883333333334,-9.578517429488656C-158.4476666666667,-11.790587077495292,-136.38533333333334,-16.21472637350857,-114.32300000000002,-17.3206427049855C-92.26066666666668,-18.426559036462425,-70.19833333333335,-16.214252403403005,-48.13600000000001,-11.750776604978155C-26.073666666666675,-7.287300806553302,-4.011333333333329,-0.5726558427630186,18.051000000000002,5.154508041608169C40.11333333333333,10.881671925979358,62.17566666666665,15.62135473093145,84.23799999999999,17.087482515215555C106.3003333333333,18.553610299499663,128.36266666666666,16.746183063115787,150.42499999999998,12.536970600760645C172.4873333333333,8.327758138405503,194.54966666666667,1.716760450079101,216.612,-4.107364032234647C238.67433333333332,-9.931488514548395,260.7366666666667,-14.968739790849487,282.799,-16.78951880310749C304.8613333333333,-18.610297815365495,326.92366666666663,-17.21460456358041,348.986,-13.275618689552136C371.0483333333333,-9.336632815523863,393.11066666666665,-2.854354319252403,415.173,3.0446430262744877C437.2353333333333,8.94364037180138,459.2976666666666,14.2593565665837,481.35999999999996,16.427881582872363C503.4223333333333,18.59640659916102,525.4846666666667,17.617740436956026,547.547,13.963919581116931C569.6093333333333,10.31009872527784,591.6716666666667,3.9811231758046546,613.734,-1.9703753461808744C635.7963333333335,-7.921873868166403,657.8586666666667,-13.495895362664275,679.921,-16.003942347687072C701.9833333333333,-18.511989332709867,724.0456666666666,-17.954061808257585,746.108,-14.59926292474004C768.1703333333334,-11.244464041222498,790.2326666666667,-5.092793798639693,812.2949999999998,0.8886351046582979C834.3573333333333,6.870064007956289,856.4196666666666,12.681251571969469,878.4819999999999,15.519308868367029C900.5443333333333,18.35736616476459,922.6066666666667,18.222293193546527,944.669,15.179239208866743C966.7313333333334,12.13618522418696,988.7936666666667,6.185150226045452,1010.856,0.19647524622966772C1032.9183333333333,-5.792199733586117,1054.9806666666668,-11.818514695076178,1077.0430000000001,-14.975819095966505C1099.1053333333334,-18.133123496856832,1121.1676666666667,-18.421417337147425,1143.23,-15.701648899068852C1165.2923333333333,-12.981880460990277,1187.3546666666666,-7.2540497445425345,1209.417,-1.2808404734286092C1231.4793333333332,4.692368797685315,1253.5416666666665,10.910956623465424,1275.604,14.375534191430337C1297.6663333333331,17.84011175939525,1319.7286666666664,18.55067906954497,1341.791,16.16451077968163C1363.8533333333332,13.778342489818295,1385.9156666666668,8.295438599941901,1407.978,2.360348169732683C1430.0403333333336,-3.574742260476534,1452.102666666667,-9.962019231018575,1474.1650000000002,-13.720730708732239C1496.2273333333333,-17.479442186445905,1518.2896666666666,-18.609588171331197,1540.3519999999999,-16.566069467476957C1562.4143333333332,-14.522550763622716,1584.4766666666667,-9.305367371028945,1606.539,-3.4309043499076295C1628.6013333333335,2.4435586712136854,1650.6636666666668,8.975301320862544,1672.726,13.01389196114431C1694.7883333333334,17.052482601426078,1716.8506666666667,18.597921232340752,1727.8818333333334,19.37064054779809C1738.9130000000002,20.14335986325543,1738.9130000000002,20.14335986325543,1738.913,20.14335986325543" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#f8ff00" fill="none" transform="translate(0,161.65384615384573)" d="M-180.51000000000002,2.9635201692572113C-180.51,2.963520169257211,-180.51,2.963520169257211,-169.47883333333334,-0.31869219464872556C-158.4476666666667,-3.6009045585546624,-136.38533333333334,-10.165329286366536,-114.32300000000002,-13.863174904342838C-92.26066666666668,-17.56102052231914,-70.19833333333335,-18.39228703045987,-48.13600000000001,-15.929671456182874C-26.073666666666675,-13.46705588190588,-4.011333333333329,-7.710558225211164,18.051000000000002,-1.619239793487993C40.11333333333333,4.472078638235178,62.17566666666665,10.898217844986805,84.23799999999999,14.35589499463001C106.3003333333333,17.813572144273216,128.36266666666666,18.302787236808,150.42499999999998,15.572064889520181C172.4873333333333,12.84134254223236,194.54966666666667,6.890682755121935,216.612,0.7789536420319623C238.67433333333332,-5.33277547105801,260.7366666666667,-11.605573910127529,282.799,-14.8149818982295C304.8613333333333,-18.024389886331473,326.92366666666663,-18.1704074234659,348.986,-15.177975876744732C371.0483333333333,-12.185544330023564,393.11066666666665,-6.054663699446804,415.173,0.06315745264583139C437.2353333333333,6.180978604738467,459.2976666666666,12.285740278346978,481.35999999999996,15.239360060079028C503.4223333333333,18.19297984181108,525.4846666666667,17.995457731666672,547.547,14.748327694973213C569.6093333333333,11.501197658279755,591.6716666666667,5.204459695037248,613.734,-0.9051205811818193C635.7963333333335,-7.014700857400888,657.8586666666667,-12.937123446596516,679.921,-15.628035241230174C701.9833333333333,-18.318947035863832,724.0456666666666,-17.778348035935522,746.108,-14.284126929828666C768.1703333333334,-10.789905823721814,790.2326666666667,-4.342062611436415,812.2949999999998,1.744963180869296C834.3573333333333,7.831988973175006,856.4196666666666,13.558197345501029,878.4819999999999,15.980096848164845C900.5443333333333,18.40199635082866,922.6066666666667,17.51958698383027,944.669,13.786461117198021C966.7313333333334,10.053335250565771,988.7936666666667,3.469492884299665,1010.856,-2.580717657005591C1032.9183333333333,-8.630928198310848,1054.9806666666668,-14.147506914655253,1077.0430000000001,-16.2947200661462C1099.1053333333334,-18.44193321763715,1121.1676666666667,-17.219780804274645,1143.23,-13.256496195337942C1165.2923333333333,-9.293211586401236,1187.3546666666666,-2.588794781890332,1209.417,3.410425992599761C1231.4793333333332,9.409646767089853,1253.5416666666665,14.703671511559136,1275.604,16.571167791605962C1297.6663333333331,18.438664071652788,1319.7286666666664,16.879631887277156,1341.791,12.695473773299053C1363.8533333333332,8.511315659320951,1385.9156666666668,1.7020316157403754,1407.978,-4.232144335641342C1430.0403333333336,-10.16632028702306,1452.102666666667,-15.22538814620592,1474.1650000000002,-16.80879235904069C1496.2273333333333,-18.392196571875456,1518.2896666666666,-16.49993713836213,1540.3519999999999,-12.104708222067268C1562.4143333333332,-7.709479305772403,1584.4766666666667,-0.8112809066959983,1606.539,5.043947553183283C1628.6013333333335,10.899176013062565,1650.6636666666668,15.711434533744722,1672.726,17.007037058371168C1694.7883333333334,18.302639582997614,1716.8506666666667,16.081586111568342,1727.8818333333334,14.97105937585371C1738.9130000000002,13.860532640139075,1738.9130000000002,13.860532640139075,1738.913,13.860532640139073" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#ffdb00" fill="none" transform="translate(0,140.88461538461502)" d="M-180.51000000000002,12.567915026183087C-180.51,12.567915026183085,-180.51,12.567915026183085,-169.47883333333334,8.924440970287254C-158.4476666666667,5.280966914391426,-136.38533333333334,-2.005981197400234,-114.32300000000002,-7.600365103238435C-92.26066666666668,-13.194749009076634,-70.19833333333335,-17.096568708961378,-48.13600000000001,-17.173854785377543C-26.073666666666675,-17.251140861793708,-4.011333333333329,-13.503893314741298,18.051000000000002,-7.9796227379082465C40.11333333333333,-2.4553521610751963,62.17566666666665,4.845941445538497,84.23799999999999,9.934802936668481C106.3003333333333,15.023664427798465,128.36266666666666,17.90009380344474,150.42499999999998,16.99239889630877C172.4873333333333,16.084703989172798,194.54966666666667,11.392884799254578,216.612,5.480569529495339C238.67433333333332,-0.43174574026389934,260.7366666666667,-7.564557089864158,282.799,-12.020468732744197C304.8613333333333,-16.476380375624238,326.92366666666663,-18.255392311784057,348.986,-16.385445519275745C371.0483333333333,-14.515498726767431,393.11066666666665,-8.996593205590983,415.173,-2.8442803380029957C437.2353333333333,3.308032529584991,459.2976666666666,10.093752743584515,481.35999999999996,13.80513646014537C503.4223333333333,17.516520176706223,525.4846666666667,18.153567395828404,547.547,15.368193046148505C569.6093333333333,12.582818696468607,591.6716666666667,6.3750227779866275,613.734,0.13676905795959637C635.7963333333335,-6.101484662067434,657.8586666666667,-12.370196183639516,679.921,-15.244117217705492C701.9833333333333,-18.11803825177147,724.0456666666666,-17.597168798331342,746.108,-13.966113946975742C768.1703333333334,-10.335059095620142,790.2326666666667,-3.593818846349072,812.2949999999998,2.5741669822337574C834.3573333333333,8.742152810816586,856.4196666666666,14.336884218711175,878.4819999999999,16.30137826506178C900.5443333333333,18.265872311412384,922.6066666666667,16.600128996219006,944.669,12.214316927612726C966.7313333333334,7.828504859006447,988.7936666666667,0.7226240369872654,1010.856,-5.220644696605943C1032.9183333333333,-11.163913430199152,1054.9806666666668,-15.944570075366386,1077.0430000000001,-16.95044529905567C1099.1053333333334,-17.956320522744953,1121.1676666666667,-15.187414324956281,1143.23,-10.156667791570161C1165.2923333333333,-5.125921258184038,1187.3546666666666,2.1666656107995355,1209.417,7.736395065327043C1231.4793333333332,13.30612451985455,1253.5416666666665,17.15299655992599,1275.604,17.175065382466816C1297.6663333333331,17.19713420500764,1319.7286666666664,13.394399810017845,1341.791,7.84469102010822C1363.8533333333332,2.2949822301985963,1385.9156666666668,-5.001700954630857,1407.978,-10.058422541460546C1430.0403333333336,-15.115144128290236,1452.102666666667,-17.931904117120162,1474.1650000000002,-16.969613925040413C1496.2273333333333,-16.007323732960664,1518.2896666666666,-11.26598335997124,1540.3519999999999,-5.336279575515055C1562.4143333333332,0.593424208941129,1584.4766666666667,7.711491404864074,1606.539,12.128582488448108C1628.6013333333335,16.545673572032143,1650.6636666666668,18.261788543277266,1672.726,16.33923552581553C1694.7883333333334,14.416682508353794,1716.8506666666667,8.855461502185202,1727.8818333333334,6.074850999100906C1738.9130000000002,3.2942404960166094,1738.9130000000002,3.2942404960166094,1738.913,3.29424049601661" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#ffaf00" fill="none" transform="translate(0,120.11538461538419)" d="M-180.51000000000002,19.095245963339316C-180.51,19.095245963339316,-180.51,19.095245963339316,-169.47883333333334,15.929945853954166C-158.4476666666667,12.764645744569018,-136.38533333333334,6.434045525798721,-114.32300000000002,0.08346729268851227C-92.26066666666668,-6.267110940421698,-70.19833333333335,-12.63766718787182,-48.13600000000001,-15.337234665741802C-26.073666666666675,-18.036802143611784,-4.011333333333329,-17.06538085190163,18.051000000000002,-12.985791929241106C40.11333333333333,-8.906203006580585,62.17566666666665,-1.7184464529696992,84.23799999999999,4.413042216105718C106.3003333333333,10.544530885181135,128.36266666666666,15.619751669721085,150.42499999999998,16.69822800705563C172.4873333333333,17.776704344390176,194.54966666666667,14.858436234519319,216.612,9.634207063025405C238.67433333333332,4.409977891531491,260.7366666666667,-3.12021234158548,282.799,-8.593529223214624C304.8613333333333,-14.06684610484377,326.92366666666663,-17.483289634985088,348.986,-16.863444029665644C371.0483333333333,-16.243598424346196,393.11066666666665,-11.58746368356599,415.173,-5.592706698902134C437.2353333333333,0.40205028576172097,459.2976666666666,7.735429514309223,481.35999999999996,12.158624745167351C503.4223333333333,16.58181997602548,525.4846666666667,18.094831209194233,547.547,15.821051443902045C569.6093333333333,13.547271678609857,591.6716666666667,7.486700914856728,613.734,1.150706843582268C635.7963333333335,-5.185287227692192,657.8586666666667,-11.796704606487982,679.921,-14.853028617038476C701.9833333333333,-17.90935262758897,724.0456666666666,-17.410583269894165,746.108,-13.645697057241343C768.1703333333334,-9.88081084458852,790.2326666666667,-2.849807776977679,812.2949999999998,3.3736963148575905C834.3573333333333,9.59720040669286,856.4196666666666,15.013205522752557,878.4819999999999,16.483791800400084C900.5443333333333,17.95437807804761,922.6066666666667,15.479545517282967,944.669,10.493160239483275C966.7313333333334,5.506774961683584,988.7936666666667,-1.991163033151154,1010.856,-7.656505602870216C1032.9183333333333,-13.321848172589279,1054.9806666666668,-17.154595317192666,1077.0430000000001,-16.934133662839148C1099.1053333333334,-16.713672008485634,1121.1676666666667,-12.440001555175215,1143.23,-6.589197401515343C1165.2923333333333,-0.7383932478554698,1187.3546666666666,6.689544606153857,1209.417,11.391024632984042C1231.4793333333332,16.092504659814225,1253.5416666666665,18.067526859465268,1275.604,16.17180475941217C1297.6663333333331,14.276082659359068,1319.7286666666664,8.509616259601822,1341.791,2.2133753460385015C1363.8533333333332,-4.082865567524818,1385.9156666666668,-10.908880994894211,1407.978,-14.309820648226955C1430.0403333333336,-17.710760301559695,1452.102666666667,-17.686624180855787,1474.1650000000002,-14.251396248637594C1496.2273333333333,-10.8161683164194,1518.2896666666666,-3.969848572686921,1540.3519999999999,2.3209487993279003C1562.4143333333332,8.611746171342721,1584.4766666666667,14.347021171639883,1606.539,16.20387565749961C1628.6013333333335,18.060730143359336,1650.6636666666668,16.039164114781624,1672.726,11.3104305633664C1694.7883333333334,6.581697011951178,1716.8506666666667,-0.8542040623015597,1727.8818333333334,-4.572154599427928C1738.9130000000002,-8.290105136554297,1738.9130000000002,-8.290105136554297,1738.913,-8.290105136554297" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#ff8300" fill="none" transform="translate(0,99.34615384615336)" d="M-180.51000000000002,20.947394718685143C-180.51,20.947394718685143,-180.51,20.947394718685143,-169.47883333333334,19.0358300937314C-158.4476666666667,17.124265468777654,-136.38533333333334,13.301136218870166,-114.32300000000002,7.541588076343686C-92.26066666666668,1.782039933817205,-70.19833333333335,-5.9139271013282695,-48.13600000000001,-10.829303636940002C-26.073666666666675,-15.744680172551735,-4.011333333333329,-17.879466208629726,18.051000000000002,-15.92520944328258C40.11333333333333,-13.970952677935434,62.17566666666665,-7.9276531111631545,84.23799999999999,-1.499367775158905C106.3003333333333,4.9289175608453455,128.36266666666666,11.742188666081566,150.42499999999998,14.764457825436754C172.4873333333333,17.78672698479194,194.54966666666667,17.0179941982661,216.612,12.92943089337946C238.67433333333332,8.840867588492818,260.7366666666667,1.4324737652453807,282.799,-4.755000455495955C304.8613333333333,-10.942474676237289,326.92366666666663,-15.909029294472521,348.986,-16.6105654108861C371.0483333333333,-17.31210152729968,393.11066666666665,-13.748619141891607,415.173,-8.104246617475606C437.2353333333333,-2.4598740930596037,459.2976666666666,5.265388570364328,481.35999999999996,10.336576114524558C503.4223333333333,15.407763658684786,525.4846666666667,17.824876083581312,547.547,16.10641769698233C569.6093333333333,14.387959310383348,591.6716666666667,8.533930112288855,613.734,2.1323796074907038C635.7963333333335,-4.269170897307448,657.8586666666667,-11.218242708809258,679.921,-14.455613191067169C701.9833333333333,-17.69298367332508,724.0456666666666,-17.218652826339092,746.108,-13.323347345013554C768.1703333333334,-9.428041863688016,790.2326666666667,-2.1117617480229303,812.2949999999998,4.141201182174016C834.3573333333333,10.394164112370962,856.4196666666666,15.58380985709977,878.4819999999999,16.52930258272974C900.5443333333333,17.474795308359717,922.6066666666667,14.176135014890857,944.669,8.655135402246298C966.7313333333334,3.134135789601741,988.7936666666667,-4.609203142218517,1010.856,-9.828836834913217C1032.9183333333333,-15.048470527607915,1054.9806666666668,-17.744398981177056,1077.0430000000001,-16.264234681747006C1099.1053333333334,-14.784070382316955,1121.1676666666667,-9.127813329887715,1143.23,-2.7622945957067895C1165.2923333333333,3.6032241384741344,1187.3546666666666,10.67800455440674,1209.417,14.12577474279465C1231.4793333333332,17.57354493118256,1253.5416666666665,17.39430489202577,1275.604,13.69791436670457C1297.6663333333331,10.00152384138337,1319.7286666666664,2.7879828298977625,1341.791,-3.5213876633265366C1363.8533333333332,-9.830758156550836,1385.9156666666668,-15.235958131513826,1407.978,-16.424034332058234C1430.0403333333336,-17.61211053260264,1452.102666666667,-14.583062958728464,1474.1650000000002,-9.193454377660716C1496.2273333333333,-3.8038457965929697,1518.2896666666666,3.9463237916683482,1540.3519999999999,9.306823185293002C1562.4143333333332,14.66732257891766,1584.4766666666667,17.63815177790565,1606.539,16.398431200768073C1628.6013333333335,15.158710623630494,1650.6636666666668,9.708440270367348,1672.726,3.3881979174566075C1694.7883333333334,-2.9320444354541326,1716.8506666666667,-10.122258788012466,1727.8818333333334,-13.717365964291632C1738.9130000000002,-17.3124731405708,1738.9130000000002,-17.3124731405708,1738.913,-17.3124731405708" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#ff5700" fill="none" transform="translate(0,78.57692307692253)" d="M-180.51000000000002,17.670890680965826C-180.51,17.670890680965826,-180.51,17.670890680965826,-169.47883333333334,17.534740966001802C-158.4476666666667,17.39859125103778,-136.38533333333334,17.126291821109735,-114.32300000000002,13.219257028151164C-92.26066666666668,9.312222235192591,-70.19833333333335,1.7704520792034937,-48.13600000000001,-4.526674468428121C-26.073666666666675,-10.823801016059734,-4.011333333333329,-15.876283955333866,18.051000000000002,-16.415264848869818C40.11333333333333,-16.954245742405767,62.17566666666665,-12.97972459020354,84.23799999999999,-7.063139467181369C106.3003333333333,-1.1465543441591963,128.36266666666666,6.71209474968292,150.42499999999998,11.428414318003838C172.4873333333333,16.144733886324758,194.54966666666667,17.71872392912448,216.612,15.13204342603763C238.67433333333332,12.545362922950781,260.7366666666667,5.79801187397736,282.799,-0.7446044990344292C304.8613333333333,-7.287220872046218,326.92366666666663,-13.625102569096374,348.986,-15.657763094826342C371.0483333333333,-17.69042362055631,393.11066666666665,-15.417862974966088,415.173,-10.310383805305023C437.2353333333333,-5.202904635643961,459.2976666666666,2.7394930580879437,481.35999999999996,8.378232060245816C503.4223333333333,14.016971062403687,525.4846666666667,17.35205137298753,547.547,16.22574073567417C569.6093333333333,15.099430098360807,591.6716666666667,9.511728513150246,613.734,3.0777704974497286C635.7963333333335,-3.3561875182507883,657.8586666666667,-10.636401964441262,679.921,-14.052715339473712C701.9833333333333,-17.469028714506162,724.0456666666666,-17.021441018380592,746.108,-12.999532806743165C768.1703333333334,-8.977624595105741,790.2326666666667,-1.3813958679564635,812.2949999999998,4.874540764338695C834.3573333333333,11.130477396633854,856.4196666666666,16.046121934074897,878.4819999999999,16.441147730435294C900.5443333333333,16.836173526795694,922.6066666666667,12.710580582075448,944.669,6.733547489974963C966.7313333333334,0.7565143978744793,988.7936666666667,-7.071958841606246,1010.856,-11.687001924449518C1032.9183333333333,-16.30204500729279,1054.9806666666668,-17.703657933498608,1077.0430000000001,-14.985024332811617C1099.1053333333334,-12.266390732124627,1121.1676666666667,-5.4275106045448265,1143.23,1.1069932899969932C1165.2923333333333,7.641497184538814,1187.3546666666666,13.871624846042653,1209.417,15.766604549588735C1231.4793333333332,17.66158425313482,1253.5416666666665,15.221415998723142,1275.604,10.024841304718557C1297.6663333333331,4.828266610713973,1319.7286666666664,-3.1247145228835205,1341.791,-8.688677600167638C1363.8533333333332,-14.252640677451755,1385.9156666666668,-17.427585698422497,1407.978,-16.159384832316498C1430.0403333333336,-14.891183966210496,1452.102666666667,-9.179837213027755,1474.1650000000002,-2.720475114986501C1496.2273333333333,3.7388869830547518,1518.2896666666666,10.946264425954515,1540.3519999999999,14.23862384006724C1562.4143333333332,17.530983254179965,1584.4766666666667,16.90832463950565,1606.539,12.773496039402202C1628.6013333333335,8.638667439298755,1650.6636666666668,0.9916688537661749,1672.726,-5.22003999345273C1694.7883333333334,-11.431748840671634,1716.8506666666667,-16.20816794957686,1727.8818333333334,-18.596377504029476C1738.9130000000002,-20.98458705848209,1738.9130000000002,-20.98458705848209,1738.913,-20.984587058482088" opacity="0.8"></path></g><g class="line"><path class="path" stroke-width="10" stroke="#ff2c00" fill="none" transform="translate(0,57.807692307691696)" d="M-180.51000000000002,10.067936310688264C-180.51,10.067936310688264,-180.51,10.067936310688264,-169.47883333333334,11.835958140054887C-158.4476666666667,13.60397996942151,-136.38533333333334,17.140023628154758,-114.32300000000002,15.97904294910085C-92.26066666666668,14.818062270046942,-70.19833333333335,8.960057253205878,-48.13600000000001,2.3973527086875834C-26.073666666666675,-4.165351835830711,-4.011333333333329,-11.432755908026234,18.051000000000002,-14.452006531653872C40.11333333333333,-17.471257155281506,62.17566666666665,-16.242354330341254,84.23799999999999,-11.602815133571436C106.3003333333333,-6.963275936801619,128.36266666666666,1.086899631797766,150.42499999999998,7.061387208238542C172.4873333333333,13.035874784679319,194.54966666666667,16.934674368961485,216.612,16.100691222308328C238.67433333333332,15.266708075655174,260.7366666666667,9.699942198066694,282.799,3.1942342334613527C304.8613333333333,-3.3114737311439892,326.92366666666663,-10.756123782766194,348.986,-14.06606695418318C371.0483333333333,-17.376010125600168,393.11066666666665,-16.551246416811935,415.173,-12.153865584929878C437.2353333333333,-7.7564847530478245,459.2976666666666,0.2135132019280528,481.35999999999996,6.324446251610915C503.4223333333333,12.435379301293779,525.4846666666667,16.687247445683624,547.547,16.182334033230475C569.6093333333333,15.677420620777323,591.6716666666667,10.415725651481173,613.734,3.9831790295945484C635.7963333333335,-2.4493675922920772,657.8586666666667,-10.052765866769178,679.921,-13.645177354799195C701.9833333333333,-17.23758884282921,724.0456666666666,-16.819013544412144,746.108,-12.674717270001452C768.1703333333334,-8.530420995590761,790.2326666666667,-0.6604037451864446,812.2949999999998,5.5717909139980035C834.3573333333333,11.803985573182452,856.4196666666666,16.39835764114703,878.4819999999999,16.223768523595677C900.5443333333333,16.049179406044324,922.6066666666667,11.105629102977037,944.669,4.762226802286721C966.7313333333334,-1.5811754984035948,988.7936666666667,-9.324429796716938,1010.856,-13.19038351984502C1032.9183333333333,-17.0563372429731,1054.9806666666668,-17.04499039091592,1077.0430000000001,-13.164076026184409C1099.1053333333334,-9.2831616614529,1121.1676666666667,-1.532679784047061,1143.23,4.805291321613962C1165.2923333333333,11.143262427274983,1187.3546666666666,16.068722761191193,1209.417,16.224891740933185C1231.4793333333332,16.381060720675176,1253.5416666666665,11.767938346242952,1275.604,5.529441847917491C1297.6663333333331,-0.7090546504079702,1319.7286666666664,-8.57292527262667,1341.791,-12.70281547767538C1363.8533333333332,-16.832705682724093,1385.9156666666668,-17.22861547060282,1407.978,-13.620725941503581C1430.0403333333336,-10.012836412404344,1452.102666666667,-2.4011475663271433,1474.1650000000002,4.0268519995574295C1496.2273333333333,10.454851565442002,1518.2896666666666,15.699161851133947,1540.3519999999999,16.185700894379707C1562.4143333333332,16.67223993762547,1584.4766666666667,12.401007738425047,1606.539,6.282917863698442C1628.6013333333335,0.16482798897183848,1650.6636666666668,-7.800119561280948,1672.726,-12.18368469086997C1694.7883333333334,-16.56724982045899,1716.8506666666667,-17.369432529384248,1727.8818333333334,-17.770523883846877C1738.9130000000002,-18.171615238309506,1738.9130000000002,-18.171615238309506,1738.913,-18.171615238309503" opacity="0.8"></path></g></g></svg> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment