Add durations.json

This commit is contained in:
0x1eef 2024-10-18 02:04:19 -03:00
parent ffc6e0a1a1
commit 0d81fbf088
119 changed files with 16 additions and 2874 deletions

5
Rules
View file

@ -16,11 +16,6 @@ Nanoc::RuleDSL::CompilerDSL.prepend(Nanoc::Extension::RequireRules)
##
# Locals
locales = %w[ar fa en]
name_by_id = Ryo.from_json(path: File.join(dirs.content, "json", "nameById.json"))
tdata = Ryo.from_json(path: File.join(dirs.content, "json", "t.json"))
surahs = Ryo.from_json(path: File.join(dirs.content, "json", "surahs.json"))
tidy = `which tidy || which tidy5`.chomp
buildenv = ENV["buildenv"] || "development"
##

View file

@ -26,6 +26,7 @@ type TSurah = {
type TAyah = {
readonly id: number;
readonly body: string;
readonly ms: number;
};
/**
@ -60,6 +61,13 @@ class Quran {
return result;
}
/**
* @returns {[number[]]} An array of ayah durations
*/
static get durations(): [number[]] {
return require("@json/durations");
}
constructor(self: TQuran) {
this.locale = self.locale;
this.surahs = self.surahs;
@ -88,19 +96,22 @@ class Surah {
get ayat(): Ayah[] {
const ayat = require(`@json/${this.locale}/${this.id}.json`);
return ayat.map(([id, body]) => new Ayah({ id, body }));
return ayat.map(([id, body]) => {
const ms = Quran.durations[this.id-1][id-1];
return new Ayah({ id, body, ms })
});
}
}
class Ayah {
readonly id: number;
readonly body: string;
ms: number;
readonly ms: number;
constructor(self: TAyah) {
this.id = self.id;
this.body = self.body;
this.ms = 0;
this.ms = self.ms;
}
}

File diff suppressed because one or more lines are too long

View file

@ -73,13 +73,6 @@ export function SurahStream({ surahId, localeId, t }: Props) {
return () => activeEl.removeEventListener("keydown", onKeyPress);
}, [activeEl, showLangDropdown, showThemeDropdown]);
useEffect(() => {
const el = rootRef.current;
if (el) {
el.classList.remove("invisible");
}
}, [rootRef.current, theme]);
useEffect(() => {
if (!endOfStream) {
setStream([surah.ayat[0]]);
@ -90,7 +83,7 @@ export function SurahStream({ surahId, localeId, t }: Props) {
<article
ref={rootRef}
className={classNames(
"flex flex-col invisible h-full content theme",
"flex flex-col h-full content theme",
locale.name,
locale.direction,
theme,

View file

@ -1 +0,0 @@
[[1,6.11],[2,5.62],[3,4.65],[4,4.68],[5,6.74],[6,5.62],[7,13.27]]

View file

@ -1 +0,0 @@
[[1,12.43],[2,44.8],[3,37.04],[4,35.84],[5,34.06],[6,18.42],[7,20.27],[8,11.18],[9,23.67],[10,22.39],[11,25.78],[12,36.75],[13,25.13],[14,15.54],[15,49.4],[16,24.11],[17,17.61],[18,44.77],[19,25.26],[20,26.46],[21,35.5],[22,74.55],[23,41.4],[24,77.71],[25,17.68],[26,24.89],[27,43.91],[28,31.9],[29,16.07],[30,23.25],[31,36.13],[32,17.16],[33,13.77],[34,23.43],[35,39.26],[36,21.84],[37,31.82],[38,21.34],[39,23.54],[40,15.12],[41,26.17],[42,17.55],[43,17.01],[44,16.35],[45,26.67],[46,23.59],[47,19.12],[48,10.53],[49,32.71],[50,15.36],[51,20.11],[52,15.62],[53,21.13],[54,27.56],[55,22.88],[56,8.05],[57,26.7],[58,13.69],[59,35.89],[60,23.17],[61,51.75],[62,15.02],[63,7.6],[64,19.1],[65,15.93],[66,32.84],[67,19.46],[68,27.92],[69,11.18],[70,17.95],[71,46.68],[72,18.55],[73,25.05],[74,27.09],[75,21.81],[76,16.74],[77,17.87],[78,29.99],[79,8.15],[80,18.08],[81,21.32],[82,9.69],[83,33.44],[84,23.67],[85,13.37],[86,8.18],[87,23.67],[88,36.44],[89,18.63],[90,42.55],[91,12.38],[92,17.71],[93,33.59],[94,31.16],[95,12.3],[96,10.84],[97,12.07],[98,34.64],[99,20.09],[100,17.24],[101,16.51],[102,23.8],[103,15.44],[104,38.48],[105,11.6],[106,19.72],[107,32.91],[108,31.92],[109,18.63]]

View file

@ -1 +0,0 @@
[[1,3.32],[2,3.29],[3,3.11],[4,3.11],[5,3.34],[6,7.71],[7,6.79],[8,7.13],[9,7.13],[10,4.91],[11,10.58]]

View file

@ -1 +0,0 @@
[[1,2.35],[2,2.32],[3,5.62],[4,7.81],[5,7.63],[6,5.75],[7,3.89],[8,5.09],[9,3.5],[10,4.52],[11,5.07]]

View file

@ -1 +0,0 @@
[[1,3.45],[2,4.05],[3,5.41],[4,6.77],[5,6.61],[6,6.11],[7,8.07],[8,12.56]]

View file

@ -1 +0,0 @@
[[1,1.8],[2,5.83],[3,12.56]]

View file

@ -1 +0,0 @@
[[1,4.62],[2,5.41],[3,6.69],[4,6.77],[5,5.04],[6,3.53],[7,4.47],[8,5.69],[9,5.69]]

View file

@ -1 +0,0 @@
[[1,7.97],[2,6.3],[3,6.92],[4,9.35],[5,9.06]]

View file

@ -1 +0,0 @@
[[1,4.65],[2,8.88],[3,5.98],[4,13.58]]

View file

@ -1 +0,0 @@
[[1,6.3],[2,6.56],[3,7.24],[4,5.75],[5,7.58],[6,7.65],[7,7.29]]

View file

@ -1 +0,0 @@
[[1,6.74],[2,3.58],[3,5.28]]

View file

@ -1 +0,0 @@
[[1,7.55],[2,7.47],[3,8.25],[4,6.69],[5,8.46],[6,6.27]]

View file

@ -1 +0,0 @@
[[1,17.19],[2,16.17],[3,36.52],[4,9.3],[5,28.92],[6,24.5],[7,47.7],[8,28.63],[9,17.68],[10,23.09],[11,15.07],[12,44.41],[13,25.16],[14,24.63],[15,22.73],[16,22.05],[17,49.95],[18,30.22],[19,16.12],[20,30.56],[21,16.61],[22,8.41],[23,21.55],[24,18.78],[25,12.83],[26,16.33],[27,34.46],[28,31.24],[29,33.91],[30,13.87],[31,45.22],[32,21.11],[33,17.79],[34,21.79],[35,19.67],[36,27.38],[37,15.62],[38,23.69],[39,14.32],[40,42.0],[41,14.63],[42,25.31],[43,27.12],[44,27.74],[45,21.21],[46,25.52],[47,22.57],[48,28.92],[49,31.43],[50,19.33],[51,16.64],[52,31.45],[53,27.27],[54,27.69],[55,12.46],[56,27.19],[57,27.27],[58,25.55],[59,18.29],[60,25.91],[61,35.66],[62,30.12],[63,25.73],[64,25.31],[65,15.23],[66,24.03],[67,9.53],[68,15.91],[69,23.28],[70,22.94],[71,22.99],[72,17.71],[73,23.28],[74,14.55],[75,9.14],[76,21.13],[77,19.57],[78,37.77],[79,13.53],[80,13.01],[81,39.0],[82,20.92],[83,11.86],[84,36.91],[85,17.92],[86,18.34],[87,28.84],[88,42.32],[89,26.38],[90,16.61],[91,23.64],[92,22.15],[93,24.76],[94,24.56],[95,11.57],[96,9.9],[97,17.11],[98,14.65],[99,12.41],[100,16.64],[101,33.2],[102,18.89],[103,20.35],[104,10.34],[105,12.59],[106,11.96],[107,18.16],[108,28.0],[109,32.5],[110,22.15],[111,15.46],[112,15.88],[113,32.08],[114,22.05],[115,8.67],[116,29.34],[117,10.29],[118,15.36],[119,19.38],[120,23.64],[121,11.99],[122,10.21],[123,24.03]]

View file

@ -1 +0,0 @@
[[1,6.95],[2,8.2],[3,10.08]]

View file

@ -1 +0,0 @@
[[1,7.42],[2,7.18],[3,5.2],[4,5.62],[5,6.48]]

View file

@ -1 +0,0 @@
[[1,3.0],[2,2.56],[3,3.0],[4,4.88]]

View file

@ -1 +0,0 @@
[[1,3.5],[2,3.66],[3,5.07],[4,6.03],[5,5.69]]

View file

@ -1 +0,0 @@
[[1,6.14],[2,5.3],[3,5.38],[4,8.02],[5,7.94],[6,8.28]]

View file

@ -1 +0,0 @@
[[1,11.68],[2,14.05],[3,21.32],[4,19.04],[5,21.89],[6,38.09],[7,13.48],[8,19.8],[9,22.13],[10,22.2],[11,15.6],[12,11.81],[13,18.57],[14,12.93],[15,26.15],[16,12.7],[17,31.27],[18,25.84],[19,26.07],[20,14.37],[21,51.04],[22,15.07],[23,31.09],[24,27.66],[25,30.38],[26,23.17],[27,12.85],[28,19.46],[29,14.68],[30,21.47],[31,45.27],[32,29.49],[33,24.01],[34,14.42],[35,14.08],[36,44.12],[37,36.81],[38,39.73],[39,14.24],[40,62.3],[41,24.89],[42,22.96],[43,35.76],[44,13.09],[45,15.15],[46,31.43],[47,24.27],[48,22.6],[49,14.58],[50,27.64],[51,34.66],[52,15.26],[53,25.0],[54,18.1],[55,10.66],[56,22.75],[57,9.72],[58,12.88],[59,22.41],[60,10.55],[61,9.17],[62,25.55],[63,24.27],[64,21.29],[65,33.85],[66,29.99],[67,38.48],[68,34.59],[69,21.94],[70,26.25],[71,9.04],[72,22.86],[73,13.37],[74,12.09],[75,17.08],[76,47.12],[77,26.96],[78,23.35],[79,19.23],[80,41.22],[81,26.49],[82,16.48],[83,23.67],[84,15.65],[85,12.33],[86,15.86],[87,23.12],[88,31.27],[89,12.41],[90,29.49],[91,12.54],[92,13.51],[93,14.73],[94,16.64],[95,8.52],[96,26.17],[97,15.39],[98,11.55],[99,18.7],[100,58.8],[101,28.84],[102,20.43],[103,9.46],[104,10.37],[105,14.55],[106,10.42],[107,18.44],[108,23.67],[109,35.74],[110,28.84],[111,32.42]]

View file

@ -1 +0,0 @@
[[1,30.98],[2,36.44],[3,33.44],[4,48.72],[5,41.14],[6,27.9],[7,23.12],[8,20.43],[9,8.23],[10,26.17],[11,43.89],[12,13.35],[13,27.9],[14,34.04],[15,17.89],[16,50.42],[17,55.51],[18,38.14],[19,20.32],[20,10.87],[21,21.86],[22,31.27],[23,26.15],[24,9.61],[25,37.22],[26,20.53],[27,25.94],[28,18.55],[29,10.71],[30,53.63],[31,63.9],[32,19.75],[33,44.98],[34,16.54],[35,28.84],[36,32.29],[37,24.82],[38,27.92],[39,13.43],[40,18.26],[41,18.47],[42,19.07],[43,21.29]]

View file

@ -1 +0,0 @@
[[1,21.71],[2,13.82],[3,20.79],[4,23.22],[5,27.72],[6,36.55],[7,15.6],[8,17.55],[9,53.58],[10,46.47],[11,45.09],[12,24.63],[13,25.31],[14,13.3],[15,7.08],[16,14.18],[17,26.28],[18,25.84],[19,16.43],[20,5.72],[21,57.65],[22,60.63],[23,31.9],[24,22.26],[25,17.48],[26,19.75],[27,26.88],[28,13.4],[29,12.09],[30,18.0],[31,33.75],[32,31.27],[33,14.81],[34,23.14],[35,15.23],[36,24.01],[37,39.16],[38,19.23],[39,17.71],[40,12.96],[41,12.09],[42,20.79],[43,12.7],[44,40.86],[45,21.52],[46,18.94],[47,15.2],[48,15.36],[49,10.21],[50,18.39],[51,13.66],[52,25.97]]

View file

@ -1 +0,0 @@
[[1,12.3],[2,6.79],[3,8.8],[4,10.63],[5,8.07],[6,10.84],[7,10.29],[8,13.09],[9,9.06],[10,7.24],[11,9.12],[12,6.27],[13,7.68],[14,11.76],[15,11.94],[16,11.68],[17,6.66],[18,8.41],[19,16.82],[20,9.3],[21,16.3],[22,23.88],[23,7.63],[24,10.08],[25,9.9],[26,11.55],[27,12.3],[28,16.2],[29,9.64],[30,7.37],[31,10.11],[32,9.48],[33,12.12],[34,6.71],[35,7.89],[36,8.99],[37,6.4],[38,5.15],[39,14.03],[40,5.75],[41,6.45],[42,11.34],[43,7.52],[44,12.49],[45,8.54],[46,6.14],[47,11.47],[48,10.16],[49,11.62],[50,7.58],[51,7.03],[52,11.26],[53,8.83],[54,11.05],[55,8.91],[56,13.4],[57,6.37],[58,11.76],[59,9.48],[60,9.61],[61,8.25],[62,7.29],[63,7.86],[64,7.5],[65,16.04],[66,16.64],[67,7.55],[68,10.08],[69,5.15],[70,7.47],[71,12.07],[72,7.44],[73,5.51],[74,16.56],[75,7.68],[76,6.69],[77,7.63],[78,7.68],[79,10.76],[80,6.69],[81,8.39],[82,7.97],[83,5.3],[84,9.14],[85,19.46],[86,6.64],[87,10.42],[88,21.81],[89,9.06],[90,8.75],[91,6.3],[92,6.56],[93,5.59],[94,7.18],[95,6.58],[96,10.87],[97,8.23],[98,8.15],[99,8.86]]

View file

@ -1 +0,0 @@
[[1,16.48],[2,31.66],[3,10.71],[4,11.28],[5,11.96],[6,9.12],[7,18.68],[8,12.75],[9,15.05],[10,19.77],[11,23.88],[12,22.2],[13,15.23],[14,36.36],[15,13.9],[16,8.99],[17,9.2],[18,12.8],[19,7.55],[20,12.2],[21,11.34],[22,18.39],[23,16.4],[24,14.71],[25,22.88],[26,28.58],[27,30.62],[28,30.67],[29,13.74],[30,27.22],[31,23.56],[32,18.81],[33,30.25],[34,12.25],[35,41.06],[36,32.84],[37,15.86],[38,22.67],[39,14.89],[40,14.24],[41,19.17],[42,7.55],[43,21.34],[44,19.38],[45,15.75],[46,8.54],[47,10.63],[48,19.46],[49,19.93],[50,11.86],[51,14.97],[52,11.39],[53,13.84],[54,12.93],[55,9.82],[56,16.8],[57,9.2],[58,11.89],[59,22.33],[60,14.08],[61,34.09],[62,19.51],[63,26.17],[64,22.15],[65,21.92],[66,25.65],[67,20.24],[68,14.79],[69,32.97],[70,26.91],[71,28.58],[72,37.75],[73,17.61],[74,15.07],[75,40.62],[76,38.82],[77,22.75],[78,23.54],[79,24.76],[80,40.39],[81,35.32],[82,9.38],[83,11.6],[84,16.98],[85,12.15],[86,30.09],[87,11.89],[88,16.07],[89,37.09],[90,22.41],[91,20.17],[92,39.68],[93,25.16],[94,25.1],[95,16.95],[96,21.42],[97,24.89],[98,9.98],[99,12.02],[100,12.8],[101,24.29],[102,18.55],[103,21.92],[104,13.19],[105,17.76],[106,41.38],[107,15.7],[108,17.42],[109,7.89],[110,25.0],[111,21.55],[112,30.82],[113,13.01],[114,19.33],[115,25.86],[116,23.3],[117,8.62],[118,20.01],[119,29.54],[120,13.77],[121,10.4],[122,11.52],[123,14.84],[124,20.19],[125,24.35],[126,15.8],[127,17.5],[128,12.93]]

View file

@ -1 +0,0 @@
[[1,24.29],[2,15.67],[3,11.13],[4,24.97],[5,33.7],[6,16.8],[7,37.07],[8,14.97],[9,21.71],[10,10.61],[11,13.06],[12,34.8],[13,18.02],[14,7.24],[15,24.74],[16,21.37],[17,14.86],[18,37.41],[19,15.36],[20,22.52],[21,15.2],[22,9.09],[23,39.18],[24,11.42],[25,13.9],[26,9.8],[27,12.7],[28,17.29],[29,13.04],[30,15.46],[31,16.51],[32,11.23],[33,24.16],[34,16.64],[35,14.45],[36,15.23],[37,12.33],[38,7.97],[39,20.98],[40,16.2],[41,10.79],[42,12.8],[43,9.14],[44,25.03],[45,13.56],[46,22.91],[47,23.59],[48,12.62],[49,13.35],[50,4.73],[51,28.55],[52,11.31],[53,19.54],[54,15.39],[55,17.27],[56,13.27],[57,26.15],[58,19.3],[59,27.9],[60,32.21],[61,22.86],[62,20.01],[63,14.65],[64,23.38],[65,10.95],[66,13.4],[67,21.0],[68,18.78],[69,25.89],[70,26.07],[71,18.47],[72,11.36],[73,16.54],[74,11.08],[75,11.18],[76,14.45],[77,12.49],[78,13.82],[79,13.48],[80,16.67],[81,10.79],[82,16.04],[83,14.39],[84,10.74],[85,15.39],[86,16.8],[87,11.62],[88,20.38],[89,15.52],[90,9.38],[91,13.19],[92,14.76],[93,29.91],[94,24.71],[95,21.19],[96,14.05],[97,37.07],[98,24.03],[99,24.29],[100,22.36],[101,28.73],[102,22.15],[103,10.63],[104,17.68],[105,13.71],[106,12.88],[107,22.99],[108,10.61],[109,8.05],[110,22.07],[111,25.47]]

View file

@ -1 +0,0 @@
[[1,11.21],[2,20.82],[3,3.27],[4,6.14],[5,17.79],[6,11.83],[7,10.34],[8,7.81],[9,9.53],[10,23.41],[11,7.6],[12,10.58],[13,12.98],[14,28.68],[15,25.23],[16,24.08],[17,32.34],[18,29.73],[19,54.6],[20,15.49],[21,42.79],[22,44.28],[23,9.06],[24,20.56],[25,8.44],[26,23.98],[27,15.44],[28,28.94],[29,41.2],[30,11.49],[31,45.69],[32,17.29],[33,12.49],[34,14.32],[35,14.92],[36,17.76],[37,22.0],[38,10.34],[39,21.39],[40,23.17],[41,9.64],[42,23.67],[43,12.04],[44,11.44],[45,30.46],[46,16.46],[47,14.16],[48,16.61],[49,33.59],[50,39.44],[51,15.31],[52,20.3],[53,14.45],[54,15.39],[55,24.22],[56,25.52],[57,35.63],[58,20.79],[59,14.84],[60,14.26],[61,12.07],[62,14.63],[63,28.32],[64,10.66],[65,16.54],[66,12.15],[67,6.74],[68,6.24],[69,14.13],[70,12.64],[71,17.01],[72,8.05],[73,8.93],[74,27.77],[75,8.52],[76,13.64],[77,38.53],[78,11.73],[79,23.51],[80,14.71],[81,12.67],[82,50.81],[83,9.85],[84,11.39],[85,2.43],[86,29.1],[87,15.1],[88,15.18],[89,3.58],[90,14.5],[91,5.93],[92,3.66],[93,13.95],[94,22.31],[95,13.71],[96,25.6],[97,9.25],[98,17.63],[99,11.55],[100,7.78],[101,13.4],[102,23.95],[103,6.71],[104,15.49],[105,21.45],[106,15.05],[107,11.86],[108,6.16],[109,24.37],[110,40.75]]

View file

@ -1 +0,0 @@
[[1,13.77],[2,5.83],[3,7.08],[4,16.74],[5,16.2],[6,8.07],[7,14.92],[8,14.26],[9,12.41],[10,15.07],[11,14.32],[12,9.35],[13,8.62],[14,8.46],[15,9.48],[16,10.68],[17,21.26],[18,12.59],[19,10.97],[20,12.41],[21,29.96],[22,7.84],[23,22.57],[24,12.36],[25,11.96],[26,32.99],[27,12.12],[28,13.71],[29,12.51],[30,10.19],[31,13.37],[32,9.14],[33,9.61],[34,10.5],[35,21.81],[36,14.26],[37,17.92],[38,13.92],[39,13.66],[40,11.13],[41,11.62],[42,13.87],[43,19.77],[44,14.39],[45,16.8],[46,19.12],[47,12.54],[48,19.2],[49,19.93],[50,10.97],[51,13.14],[52,9.8],[53,9.22],[54,14.58],[55,11.47],[56,11.21],[57,4.52],[58,44.41],[59,12.04],[60,16.38],[61,15.46],[62,12.8],[63,10.4],[64,16.35],[65,14.13],[66,8.91],[67,11.7],[68,18.94],[69,12.75],[70,8.33],[71,12.09],[72,9.38],[73,24.48],[74,10.48],[75,32.86],[76,17.63],[77,11.34],[78,7.63],[79,8.88],[80,5.77],[81,8.83],[82,9.22],[83,11.73],[84,7.78],[85,6.37],[86,6.82],[87,9.69],[88,4.65],[89,4.02],[90,11.68],[91,4.86],[92,7.84],[93,11.78],[94,4.83],[95,6.9],[96,10.87],[97,13.17],[98,14.71]]

View file

@ -1 +0,0 @@
[[1,7.68],[2,9.01],[3,11.44],[4,15.86],[5,11.39],[6,12.64],[7,13.35],[8,12.07],[9,12.62],[10,13.61],[11,10.71],[12,9.17],[13,25.0],[14,23.8],[15,7.97],[16,12.59],[17,21.79],[18,7.84],[19,25.5],[20,30.48],[21,13.53],[22,31.09],[23,23.85],[24,14.89],[25,38.37],[26,43.18],[27,23.51],[28,18.0],[29,21.73],[30,30.56],[31,27.25],[32,14.18],[33,35.13],[34,16.85],[35,20.56],[36,21.32],[37,15.67],[38,18.13],[39,17.61],[40,21.94],[41,22.15],[42,9.59],[43,7.99],[44,16.38],[45,12.38],[46,12.85],[47,17.4],[48,22.75],[49,26.15],[50,15.15],[51,15.62],[52,10.48],[53,9.09],[54,35.87],[55,18.36],[56,10.11],[57,24.19],[58,24.19],[59,19.25],[60,25.97],[61,69.04],[62,26.96],[63,19.07],[64,16.35],[65,11.34],[66,11.57],[67,22.6],[68,20.77],[69,20.3],[70,18.08],[71,22.49],[72,13.04],[73,13.35],[74,42.95],[75,22.62],[76,31.14],[77,10.81],[78,13.69],[79,26.91],[80,25.81],[81,17.61],[82,14.26],[83,39.84],[84,19.7],[85,63.53],[86,16.88],[87,33.54],[88,10.92],[89,28.34],[90,33.23],[91,36.94],[92,16.46],[93,34.53],[94,21.63],[95,13.61],[96,28.87],[97,26.59],[98,17.11],[99,17.27],[100,12.46],[101,25.36],[102,84.38],[103,15.88],[104,15.88],[105,25.21],[106,20.77],[107,16.88],[108,19.38],[109,34.12],[110,22.96],[111,19.75],[112,23.14],[113,32.57],[114,33.23],[115,15.83],[116,13.71],[117,14.76],[118,28.53],[119,14.79],[120,31.35],[121,22.52],[122,17.58],[123,20.61],[124,26.62],[125,35.63],[126,34.74],[127,17.63],[128,26.62],[129,21.5],[130,20.04],[131,10.87],[132,21.11],[133,30.85],[134,17.27],[135,15.26],[136,45.74],[137,26.62],[138,13.11],[139,18.42],[140,36.28],[141,19.02],[142,26.78],[143,54.91],[144,40.2],[145,39.0],[146,19.12],[147,7.47],[148,20.92],[149,18.08],[150,35.87],[151,24.16],[152,10.42],[153,14.58],[154,16.82],[155,19.98],[156,19.64],[157,15.02],[158,24.92],[159,23.2],[160,13.11],[161,16.85],[162,9.67],[163,11.86],[164,52.56],[165,35.74],[166,11.76],[167,24.76],[168,20.85],[169,14.47],[170,23.95],[171,19.49],[172,19.91],[173,27.25],[174,32.0],[175,16.09],[176,14.97],[177,65.99],[178,40.18],[179,10.48],[180,16.8],[181,15.73],[182,18.52],[183,14.65],[184,37.2],[185,50.05],[186,23.3],[187,70.64],[188,23.54],[189,27.61],[190,13.71],[191,31.48],[192,6.92],[193,16.9],[194,23.2],[195,15.6],[196,71.21],[197,32.39],[198,33.46],[199,14.6],[200,24.4],[201,16.17],[202,11.68],[203,33.96],[204,18.42],[205,13.14],[206,12.62],[207,14.6],[208,21.34],[209,17.27],[210,18.86],[211,23.56],[212,21.19],[213,58.38],[214,33.67],[215,27.35],[216,26.07],[217,64.21],[218,19.12],[219,30.85],[220,28.5],[221,50.29],[222,33.54],[223,24.22],[224,16.04],[225,16.43],[226,17.11],[227,7.18],[228,50.1],[229,54.47],[230,38.24],[231,50.7],[232,39.78],[233,68.7],[234,31.06],[235,55.12],[236,25.7],[237,37.46],[238,8.57],[239,15.75],[240,29.54],[241,8.07],[242,8.36],[243,22.26],[244,9.06],[245,16.48],[246,56.53],[247,40.07],[248,32.13],[249,61.62],[250,20.9],[251,30.51],[252,12.51],[253,53.81],[254,25.03],[255,51.98],[256,25.21],[257,33.25],[258,38.77],[259,66.64],[260,41.98],[261,24.01],[262,24.35],[263,16.51],[264,42.45],[265,32.05],[266,50.94],[267,38.14],[268,18.55],[269,19.28],[270,18.73],[271,25.03],[272,33.25],[273,41.17],[274,22.28],[275,50.81],[276,11.81],[277,20.45],[278,15.26],[279,15.99],[280,15.7],[281,17.32],[282,144.88],[283,37.88],[284,31.32],[285,32.84],[286,53.11]]

View file

@ -1 +0,0 @@
[[1,1.75],[2,8.91],[3,5.54],[4,9.33],[5,4.49],[6,9.64],[7,8.59],[8,10.11],[9,4.23],[10,30.09],[11,7.34],[12,13.37],[13,5.33],[14,15.8],[15,11.91],[16,10.45],[17,4.75],[18,12.49],[19,3.81],[20,6.35],[21,8.07],[22,13.11],[23,4.6],[24,5.64],[25,3.87],[26,4.44],[27,4.7],[28,2.61],[29,4.75],[30,2.3],[31,4.18],[32,4.44],[33,3.45],[34,2.98],[35,5.33],[36,5.12],[37,6.16],[38,8.59],[39,24.27],[40,39.99],[41,3.13],[42,8.18],[43,7.08],[44,8.28],[45,13.01],[46,9.64],[47,26.15],[48,12.49],[49,4.65],[50,9.69],[51,4.96],[52,12.43],[53,28.42],[54,10.11],[55,13.58],[56,6.92],[57,7.37],[58,19.2],[59,8.28],[60,6.77],[61,16.74],[62,8.91],[63,22.36],[64,10.32],[65,15.62],[66,13.22],[67,5.98],[68,6.66],[69,14.92],[70,11.96],[71,39.44],[72,24.42],[73,20.92],[74,15.33],[75,13.48],[76,18.0],[77,21.13],[78,9.53],[79,5.02],[80,22.62],[81,16.35],[82,12.28],[83,6.74],[84,9.93],[85,10.16],[86,27.25],[87,28.16],[88,14.39],[89,11.89],[90,20.43],[91,9.25],[92,6.9],[93,4.94],[94,21.37],[95,4.31],[96,17.37],[97,33.88],[98,14.0],[99,14.21],[100,8.28],[101,9.98],[102,9.17],[103,6.61],[104,11.13],[105,8.23],[106,4.52],[107,7.5],[108,14.32],[109,17.21],[110,9.22],[111,10.14],[112,11.86],[113,21.55],[114,17.95],[115,11.44],[116,12.88],[117,15.44],[118,5.9],[119,5.75],[120,13.19],[121,18.39],[122,6.53],[123,19.57],[124,15.02],[125,8.88],[126,9.95],[127,12.93],[128,16.64],[129,11.08],[130,21.03],[131,26.15],[132,13.3],[133,13.37],[134,26.98],[135,14.79]]

View file

@ -1 +0,0 @@
[[1,10.19],[2,13.09],[3,20.77],[4,11.0],[5,19.59],[6,12.04],[7,19.33],[8,9.77],[9,12.88],[10,11.96],[11,12.93],[12,11.91],[13,16.3],[14,9.12],[15,9.43],[16,8.8],[17,14.37],[18,12.98],[19,14.58],[20,7.13],[21,9.27],[22,15.39],[23,7.03],[24,24.14],[25,18.78],[26,10.84],[27,8.31],[28,13.92],[29,17.4],[30,22.78],[31,14.03],[32,11.52],[33,12.72],[34,11.39],[35,18.08],[36,22.62],[37,10.14],[38,8.78],[39,27.87],[40,14.08],[41,14.65],[42,17.58],[43,18.1],[44,25.57],[45,17.4],[46,22.05],[47,23.59],[48,12.83],[49,10.21],[50,13.01],[51,12.09],[52,12.93],[53,8.7],[54,11.52],[55,9.22],[56,13.35],[57,10.71],[58,9.51],[59,11.39],[60,10.42],[61,10.27],[62,11.28],[63,10.76],[64,13.45],[65,12.72],[66,11.34],[67,12.43],[68,11.81],[69,11.05],[70,7.78],[71,9.61],[72,11.81],[73,28.08],[74,21.19],[75,8.7],[76,12.3],[77,16.48],[78,19.3],[79,20.22],[80,13.56],[81,18.31],[82,15.41],[83,13.79],[84,26.25],[85,8.78],[86,9.35],[87,26.57],[88,11.57],[89,14.13],[90,22.44],[91,18.83],[92,13.58],[93,9.69],[94,15.33],[95,10.53],[96,14.08],[97,18.6],[98,13.51],[99,13.87],[100,7.63],[101,14.08],[102,9.4],[103,15.52],[104,22.96],[105,12.43],[106,7.5],[107,8.2],[108,16.72],[109,17.4],[110,8.72],[111,8.46],[112,12.33]]

View file

@ -1 +0,0 @@
[[1,13.51],[2,29.73],[3,13.56],[4,14.08],[5,113.21],[6,15.7],[7,13.87],[8,14.68],[9,18.55],[10,11.36],[11,27.19],[12,14.65],[13,14.16],[14,21.29],[15,33.33],[16,14.24],[17,27.77],[18,47.28],[19,21.34],[20,7.18],[21,6.14],[22,19.75],[23,35.94],[24,14.32],[25,40.54],[26,23.9],[27,16.72],[28,31.27],[29,11.78],[30,24.42],[31,29.81],[32,13.84],[33,17.4],[34,30.41],[35,26.91],[36,38.53],[37,26.1],[38,15.54],[39,14.18],[40,49.01],[41,23.28],[42,12.62],[43,5.75],[44,15.36],[45,25.81],[46,27.06],[47,20.32],[48,19.38],[49,12.98],[50,12.28],[51,13.24],[52,42.0],[53,22.6],[54,26.28],[55,21.97],[56,16.98],[57,13.64],[58,27.01],[59,13.48],[60,21.42],[61,18.31],[62,26.46],[63,19.38],[64,11.62],[65,30.93],[66,16.09],[67,22.49],[68,8.83],[69,11.78],[70,20.17],[71,18.76],[72,38.11],[73,36.1],[74,10.79],[75,18.34],[76,10.63],[77,18.83],[78,64.05]]

View file

@ -1 +0,0 @@
[[1,6.19],[2,7.89],[3,7.13],[4,7.68],[5,7.65],[6,14.21],[7,12.41],[8,9.14],[9,8.1],[10,7.11],[11,9.27],[12,11.31],[13,9.43],[14,34.48],[15,8.78],[16,7.89],[17,13.3],[18,21.84],[19,23.69],[20,14.18],[21,19.12],[22,5.96],[23,16.85],[24,38.09],[25,11.94],[26,7.55],[27,43.96],[28,15.02],[29,13.22],[30,11.15],[31,8.91],[32,15.49],[33,37.62],[34,10.92],[35,13.9],[36,6.37],[37,10.4],[38,10.74],[39,6.79],[40,7.99],[41,13.64],[42,8.8],[43,8.78],[44,28.06],[45,11.89],[46,8.75],[47,10.58],[48,6.37],[49,8.57],[50,20.58],[51,14.94],[52,13.69],[53,13.09],[54,6.09],[55,10.14],[56,9.09],[57,9.22],[58,7.18],[59,7.08],[60,13.58],[61,10.03],[62,14.13],[63,13.9],[64,12.28],[65,12.28],[66,13.3],[67,7.44],[68,13.79],[69,7.92],[70,14.76],[71,22.75],[72,11.94],[73,8.54],[74,10.16],[75,12.93],[76,11.34],[77,15.93],[78,13.24],[79,8.07],[80,14.24],[81,6.95],[82,13.17],[83,15.83],[84,11.08],[85,8.86],[86,7.89],[87,8.59],[88,14.32],[89,9.38],[90,8.39],[91,22.86],[92,9.2],[93,8.15],[94,7.26],[95,9.67],[96,8.78],[97,7.21],[98,6.16],[99,11.31],[100,25.21],[101,14.45],[102,10.0],[103,17.79],[104,8.59],[105,11.26],[106,14.58],[107,10.76],[108,6.43],[109,27.92],[110,15.28],[111,13.24],[112,6.56],[113,12.41],[114,11.21],[115,12.54],[116,13.04],[117,20.24],[118,10.27]]

View file

@ -1 +0,0 @@
[[1,30.17],[2,36.73],[3,24.79],[4,31.43],[5,13.95],[6,29.23],[7,12.02],[8,15.67],[9,12.36],[10,13.04],[11,29.54],[12,21.97],[13,22.05],[14,18.96],[15,34.35],[16,20.66],[17,13.84],[18,13.79],[19,25.97],[20,11.42],[21,55.28],[22,32.91],[23,19.46],[24,13.45],[25,18.86],[26,36.94],[27,23.8],[28,22.8],[29,18.73],[30,18.21],[31,121.31],[32,25.36],[33,58.51],[34,23.17],[35,80.61],[36,19.54],[37,34.66],[38,19.8],[39,47.44],[40,39.86],[41,28.29],[42,9.77],[43,62.25],[44,14.86],[45,41.8],[46,21.79],[47,25.47],[48,14.94],[49,10.84],[50,21.86],[51,28.71],[52,16.04],[53,24.74],[54,30.15],[55,58.02],[56,11.21],[57,18.13],[58,61.73],[59,22.65],[60,37.09],[61,111.49],[62,55.43],[63,40.25],[64,29.73]]

View file

@ -1 +0,0 @@
[[1,11.1],[2,29.02],[3,35.66],[4,23.64],[5,12.62],[6,13.48],[7,23.9],[8,21.42],[9,12.43],[10,24.87],[11,9.9],[12,13.04],[13,12.64],[14,10.14],[15,17.58],[16,14.03],[17,30.56],[18,29.28],[19,20.27],[20,29.6],[21,25.31],[22,13.64],[23,13.64],[24,10.27],[25,12.96],[26,12.33],[27,11.05],[28,7.16],[29,13.79],[30,10.42],[31,15.83],[32,17.68],[33,8.96],[34,18.94],[35,11.55],[36,13.24],[37,18.02],[38,10.37],[39,12.02],[40,18.13],[41,11.49],[42,19.41],[43,9.72],[44,16.8],[45,16.07],[46,7.03],[47,12.62],[48,19.17],[49,15.02],[50,12.38],[51,7.5],[52,8.96],[53,21.13],[54,13.58],[55,14.39],[56,8.25],[57,15.31],[58,12.83],[59,17.71],[60,18.39],[61,13.56],[62,12.56],[63,14.24],[64,8.02],[65,14.08],[66,8.49],[67,12.46],[68,23.38],[69,8.57],[70,26.49],[71,10.97],[72,9.93],[73,12.88],[74,17.4],[75,13.79],[76,7.81],[77,16.09]]

View file

@ -1 +0,0 @@
[[1,8.75],[2,5.28],[3,8.12],[4,15.31],[5,13.71],[6,12.64],[7,11.73],[8,10.21],[9,7.13],[10,9.38],[11,7.16],[12,9.64],[13,10.0],[14,9.35],[15,12.62],[16,10.92],[17,10.34],[18,10.32],[19,9.09],[20,12.54],[21,13.4],[22,14.39],[23,6.06],[24,13.64],[25,7.94],[26,9.14],[27,10.19],[28,12.85],[29,10.45],[30,7.16],[31,9.85],[32,7.65],[33,9.67],[34,9.74],[35,11.42],[36,10.16],[37,7.08],[38,7.58],[39,8.33],[40,8.96],[41,15.2],[42,7.94],[43,11.73],[44,12.64],[45,9.22],[46,4.99],[47,8.54],[48,4.7],[49,29.96],[50,13.61],[51,17.92],[52,15.23],[53,8.65],[54,10.81],[55,7.34],[56,5.59],[57,9.06],[58,7.21],[59,9.95],[60,5.36],[61,13.74],[62,8.18],[63,17.82],[64,6.5],[65,9.82],[66,5.69],[67,11.02],[68,7.97],[69,5.64],[70,6.71],[71,8.28],[72,6.24],[73,6.61],[74,9.98],[75,7.81],[76,8.02],[77,9.4],[78,5.88],[79,5.88],[80,5.04],[81,6.92],[82,11.49],[83,8.12],[84,7.44],[85,8.57],[86,12.33],[87,5.46],[88,7.86],[89,7.55],[90,6.82],[91,6.09],[92,7.55],[93,10.4],[94,5.88],[95,5.62],[96,5.56],[97,9.09],[98,7.13],[99,8.54],[100,5.88],[101,4.78],[102,9.01],[103,11.05],[104,8.39],[105,5.69],[106,7.5],[107,6.06],[108,4.96],[109,11.68],[110,5.3],[111,7.86],[112,6.48],[113,7.31],[114,6.79],[115,5.96],[116,10.29],[117,6.5],[118,10.92],[119,8.99],[120,6.4],[121,10.63],[122,8.88],[123,4.7],[124,7.18],[125,5.46],[126,4.99],[127,11.49],[128,8.2],[129,6.95],[130,6.53],[131,4.7],[132,8.41],[133,6.87],[134,5.62],[135,9.25],[136,12.36],[137,7.13],[138,4.68],[139,13.98],[140,8.25],[141,5.2],[142,7.89],[143,6.45],[144,5.02],[145,11.52],[146,7.97],[147,6.03],[148,7.68],[149,8.05],[150,5.12],[151,6.87],[152,7.21],[153,10.03],[154,14.47],[155,10.34],[156,11.18],[157,5.98],[158,15.28],[159,8.83],[160,6.27],[161,7.42],[162,6.09],[163,5.3],[164,12.56],[165,6.3],[166,13.09],[167,10.21],[168,7.73],[169,7.68],[170,7.44],[171,6.24],[172,6.37],[173,11.34],[174,10.37],[175,8.83],[176,6.19],[177,6.77],[178,6.01],[179,5.41],[180,11.81],[181,7.42],[182,6.19],[183,11.89],[184,7.73],[185,10.87],[186,13.4],[187,12.8],[188,7.78],[189,13.04],[190,11.15],[191,7.97],[192,8.05],[193,5.41],[194,7.03],[195,6.45],[196,6.37],[197,13.87],[198,6.82],[199,7.92],[200,6.82],[201,8.05],[202,8.1],[203,6.35],[204,5.25],[205,6.56],[206,8.67],[207,9.4],[208,10.48],[209,6.16],[210,5.59],[211,7.13],[212,6.4],[213,9.4],[214,6.95],[215,7.63],[216,10.87],[217,6.09],[218,5.41],[219,4.83],[220,6.01],[221,8.46],[222,6.4],[223,6.82],[224,8.49],[225,8.33],[226,7.42],[227,27.56]]

View file

@ -1 +0,0 @@
[[1,12.12],[2,5.69],[3,11.52],[4,13.3],[5,12.38],[6,8.88],[7,24.22],[8,17.35],[9,11.52],[10,29.07],[11,15.62],[12,24.11],[13,14.13],[14,20.04],[15,17.16],[16,24.69],[17,12.02],[18,31.74],[19,37.98],[20,14.13],[21,18.29],[22,15.46],[23,15.18],[24,25.1],[25,15.62],[26,11.42],[27,8.91],[28,17.27],[29,15.12],[30,12.41],[31,7.42],[32,16.93],[33,16.04],[34,20.82],[35,14.71],[36,38.71],[37,26.67],[38,12.64],[39,18.42],[40,49.45],[41,14.13],[42,20.53],[43,17.03],[44,37.07],[45,13.82],[46,14.55],[47,18.89],[48,10.63],[49,25.21],[50,9.87],[51,12.83],[52,14.86],[53,9.93],[54,11.91],[55,18.94],[56,29.6],[57,11.91],[58,12.15],[59,17.68],[60,41.12],[61,30.93],[62,25.5],[63,32.21],[64,29.75],[65,17.5],[66,13.66],[67,16.38],[68,16.8],[69,10.42],[70,11.49],[71,9.33],[72,11.55],[73,12.46],[74,10.68],[75,14.39],[76,16.48],[77,8.75],[78,10.92],[79,11.15],[80,14.45],[81,21.13],[82,22.8],[83,15.65],[84,19.3],[85,10.21],[86,18.55],[87,21.39],[88,25.94],[89,16.72],[90,23.56],[91,20.11],[92,20.82],[93,16.48]]

View file

@ -1 +0,0 @@
[[1,10.0],[2,6.01],[3,12.38],[4,34.64],[5,20.98],[6,14.81],[7,34.48],[8,19.54],[9,32.21],[10,20.24],[11,13.71],[12,22.26],[13,27.04],[14,15.96],[15,51.83],[16,14.45],[17,11.78],[18,24.76],[19,40.67],[20,28.13],[21,13.84],[22,17.03],[23,35.84],[24,19.23],[25,35.34],[26,14.79],[27,38.5],[28,17.21],[29,43.99],[30,28.21],[31,29.52],[32,38.64],[33,11.62],[34,23.67],[35,21.5],[36,30.64],[37,24.79],[38,33.44],[39,15.36],[40,14.73],[41,15.6],[42,13.98],[43,28.92],[44,15.46],[45,29.13],[46,37.43],[47,29.62],[48,36.55],[49,16.25],[50,31.27],[51,8.05],[52,10.61],[53,22.18],[54,19.96],[55,18.05],[56,18.0],[57,36.13],[58,22.18],[59,25.6],[60,22.1],[61,27.01],[62,13.69],[63,30.22],[64,19.07],[65,10.58],[66,14.29],[67,15.05],[68,20.77],[69,9.33],[70,18.6],[71,23.07],[72,31.19],[73,19.88],[74,13.48],[75,31.56],[76,32.94],[77,30.62],[78,30.8],[79,21.08],[80,18.42],[81,19.04],[82,35.21],[83,17.29],[84,23.22],[85,26.36],[86,21.08],[87,19.25],[88,21.32]]

View file

@ -1 +0,0 @@
[[1,10.45],[2,15.65],[3,16.43],[4,13.92],[5,16.12],[6,13.98],[7,21.19],[8,26.28],[9,10.76],[10,50.39],[11,10.81],[12,24.03],[13,19.49],[14,23.3],[15,12.25],[16,15.88],[17,31.03],[18,14.73],[19,13.43],[20,21.21],[21,14.47],[22,21.52],[23,23.33],[24,26.38],[25,41.01],[26,15.75],[27,23.22],[28,17.01],[29,28.29],[30,7.86],[31,26.02],[32,20.56],[33,28.4],[34,16.98],[35,13.56],[36,15.57],[37,9.22],[38,19.7],[39,20.61],[40,34.64],[41,25.36],[42,14.71],[43,14.58],[44,12.36],[45,27.38],[46,31.5],[47,29.47],[48,16.56],[49,17.53],[50,22.15],[51,21.66],[52,22.07],[53,23.01],[54,11.73],[55,14.94],[56,13.32],[57,13.4],[58,28.68],[59,7.42],[60,17.48],[61,19.23],[62,16.61],[63,30.77],[64,20.14],[65,14.55],[66,10.61],[67,19.46],[68,20.24],[69,16.77]]

View file

@ -1 +0,0 @@
[[1,6.35],[2,9.67],[3,14.5],[4,26.17],[5,10.81],[6,16.51],[7,61.05],[8,17.35],[9,17.4],[10,20.58],[11,17.63],[12,12.23],[13,34.77],[14,31.43],[15,38.16],[16,18.57],[17,13.95],[18,23.56],[19,30.38],[20,34.72],[21,24.89],[22,14.68],[23,20.56],[24,22.57],[25,22.67],[26,39.94],[27,23.61],[28,35.13],[29,21.86],[30,32.29],[31,17.63],[32,15.73],[33,15.8],[34,10.74],[35,21.21],[36,48.17],[37,49.11],[38,19.51],[39,38.14],[40,18.31],[41,25.89],[42,16.17],[43,8.54],[44,23.48],[45,23.77],[46,8.88],[47,26.25],[48,9.3],[49,55.61],[50,21.73],[51,13.48],[52,27.53],[53,15.28],[54,10.14],[55,39.97],[56,17.08],[57,14.76],[58,8.72],[59,17.29],[60,8.07],[61,42.21],[62,17.16],[63,11.05],[64,42.27],[65,25.0],[66,28.26],[67,17.14],[68,17.11],[69,18.36],[70,12.15],[71,14.89],[72,23.43],[73,45.61],[74,13.24],[75,41.82],[76,11.02],[77,31.32],[78,31.45],[79,32.91],[80,21.45],[81,46.26],[82,11.02],[83,24.32],[84,38.56],[85,18.76],[86,25.52],[87,16.51],[88,10.92],[89,13.84],[90,26.1],[91,29.47],[92,25.05],[93,32.1],[94,12.04],[95,13.82],[96,13.58],[97,30.72],[98,14.32],[99,24.48],[100,20.11],[101,21.66],[102,17.58],[103,56.69],[104,22.75],[105,20.85],[106,28.08],[107,17.5],[108,13.9],[109,11.7],[110,31.84],[111,18.21],[112,43.83],[113,22.13],[114,22.52],[115,14.86],[116,25.18],[117,29.1],[118,41.53],[119,38.82],[120,27.06],[121,13.82],[122,17.79],[123,14.39],[124,19.15],[125,25.1],[126,20.72],[127,14.39],[128,13.37],[129,20.04],[130,18.0],[131,8.54],[132,7.26],[133,19.2],[134,21.89],[135,40.36],[136,27.77],[137,14.63],[138,10.45],[139,12.88],[140,31.03],[141,9.72],[142,23.38],[143,21.86],[144,33.18],[145,27.27],[146,28.29],[147,32.78],[148,14.86],[149,18.6],[150,7.47],[151,22.33],[152,51.44],[153,42.53],[154,94.59],[155,25.6],[156,40.88],[157,16.3],[158,8.1],[159,33.15],[160,22.23],[161,20.66],[162,17.4],[163,13.35],[164,32.81],[165,27.79],[166,16.61],[167,38.45],[168,19.23],[169,17.82],[170,32.57],[171,15.49],[172,19.51],[173,24.19],[174,22.0],[175,23.38],[176,24.87],[177,14.58],[178,25.18],[179,41.67],[180,35.47],[181,30.46],[182,11.73],[183,38.56],[184,16.85],[185,36.49],[186,33.7],[187,29.49],[188,26.91],[189,12.77],[190,13.45],[191,35.58],[192,17.03],[193,28.71],[194,16.74],[195,77.45],[196,8.99],[197,11.68],[198,27.77],[199,41.12],[200,21.6]]

View file

@ -1 +0,0 @@
[[1,9.74],[2,4.36],[3,11.15],[4,16.9],[5,14.13],[6,15.44],[7,11.83],[8,34.22],[9,53.5],[10,21.73],[11,11.47],[12,7.5],[13,17.06],[14,9.53],[15,13.51],[16,17.74],[17,8.15],[18,10.55],[19,14.89],[20,18.65],[21,28.6],[22,18.05],[23,22.47],[24,28.6],[25,23.64],[26,10.16],[27,21.5],[28,43.78],[29,23.59],[30,26.25],[31,11.62],[32,13.74],[33,30.3],[34,11.26],[35,12.46],[36,21.42],[37,20.61],[38,24.03],[39,33.28],[40,32.86],[41,18.6],[42,16.72],[43,19.44],[44,12.62],[45,15.1],[46,26.88],[47,23.67],[48,39.37],[49,13.4],[50,21.66],[51,13.11],[52,14.58],[53,21.08],[54,31.01],[55,13.04],[56,21.05],[57,11.78],[58,24.24],[59,9.06],[60,14.94]]

View file

@ -1 +0,0 @@
[[1,7.94],[2,4.94],[3,5.69],[4,11.81],[5,12.38],[6,21.68],[7,19.02],[8,11.02],[9,9.72],[10,33.83],[11,16.2],[12,21.52],[13,15.91],[14,29.44],[15,33.31],[16,28.89],[17,18.55],[18,15.8],[19,13.24],[20,28.42],[21,22.23],[22,16.64],[23,18.34],[24,9.72],[25,19.77],[26,10.16],[27,22.7],[28,13.53],[29,28.32],[30,14.86],[31,18.6],[32,30.72],[33,35.4],[34,32.99]]

View file

@ -1 +0,0 @@
[[1,8.07],[2,7.73],[3,19.57],[4,25.1],[5,20.56],[6,7.08],[7,11.34],[8,10.66],[9,14.39],[10,18.7],[11,12.09],[12,21.76],[13,22.13],[14,18.16],[15,21.73],[16,15.83],[17,17.16],[18,10.34],[19,16.14],[20,32.63],[21,12.62],[22,18.49],[23,18.39],[24,14.21],[25,10.53],[26,19.36],[27,21.68],[28,8.62],[29,11.86],[30,10.37]]

View file

@ -1 +0,0 @@
[[1,16.3],[2,11.49],[3,7.42],[4,36.1],[5,36.0],[6,42.37],[7,19.25],[8,10.87],[9,23.35],[10,24.76],[11,7.73],[12,14.65],[13,29.0],[14,13.87],[15,12.38],[16,13.37],[17,21.16],[18,16.27],[19,39.47],[20,26.1],[21,18.65],[22,19.83],[23,19.83],[24,17.89],[25,15.75],[26,21.63],[27,14.65],[28,25.55],[29,16.85],[30,20.35],[31,25.26],[32,24.29],[33,30.54],[34,13.74],[35,50.81],[36,22.65],[37,62.72],[38,18.65],[39,14.34],[40,22.73],[41,8.59],[42,4.68],[43,16.8],[44,9.9],[45,13.56],[46,6.5],[47,12.59],[48,13.69],[49,39.34],[50,79.88],[51,40.8],[52,24.4],[53,82.13],[54,9.74],[55,50.65],[56,18.47],[57,14.26],[58,16.64],[59,29.1],[60,24.03],[61,9.59],[62,11.52],[63,16.67],[64,7.0],[65,9.17],[66,13.09],[67,14.24],[68,14.63],[69,17.06],[70,9.48],[71,13.3],[72,26.67],[73,20.72]]

View file

@ -1 +0,0 @@
[[1,13.14],[2,15.52],[3,29.83],[4,14.79],[5,12.8],[6,17.19],[7,15.96],[8,14.65],[9,29.78],[10,15.15],[11,12.07],[12,24.29],[13,24.22],[14,28.73],[15,23.12],[16,22.23],[17,10.74],[18,19.07],[19,22.52],[20,11.68],[21,19.51],[22,24.69],[23,24.45],[24,19.28],[25,11.31],[26,10.87],[27,13.82],[28,18.18],[29,8.49],[30,11.31],[31,37.49],[32,17.74],[33,40.78],[34,23.01],[35,10.55],[36,15.15],[37,40.07],[38,13.9],[39,24.08],[40,16.88],[41,17.08],[42,24.53],[43,51.1],[44,18.18],[45,15.23],[46,28.87],[47,15.88],[48,7.47],[49,8.54],[50,19.88],[51,11.7],[52,13.19],[53,11.02],[54,19.04]]

View file

@ -1 +0,0 @@
[[1,28.19],[2,17.61],[3,25.73],[4,12.83],[5,19.23],[6,16.48],[7,18.44],[8,32.16],[9,23.38],[10,29.23],[11,39.68],[12,37.69],[13,29.15],[14,19.75],[15,13.74],[16,7.86],[17,5.41],[18,37.64],[19,6.03],[20,5.85],[21,4.99],[22,23.93],[23,5.28],[24,16.59],[25,25.55],[26,9.51],[27,28.03],[28,25.39],[29,20.48],[30,13.35],[31,20.17],[32,26.02],[33,16.77],[34,15.67],[35,16.56],[36,19.04],[37,34.12],[38,13.56],[39,25.26],[40,33.1],[41,23.69],[42,24.19],[43,31.48],[44,31.97],[45,35.89]]

View file

@ -1 +0,0 @@
[[1,4.65],[2,4.86],[3,5.88],[4,6.3],[5,6.58],[6,13.87],[7,9.17],[8,15.23],[9,15.65],[10,13.04],[11,19.59],[12,17.35],[13,11.91],[14,21.97],[15,20.22],[16,10.11],[17,7.97],[18,20.43],[19,16.43],[20,13.01],[21,10.24],[22,10.5],[23,19.57],[24,9.77],[25,10.14],[26,9.93],[27,8.12],[28,20.14],[29,11.94],[30,15.75],[31,12.56],[32,9.59],[33,13.56],[34,14.76],[35,10.48],[36,16.54],[37,11.99],[38,10.95],[39,9.74],[40,20.19],[41,10.66],[42,8.2],[43,10.55],[44,8.8],[45,11.83],[46,12.46],[47,30.75],[48,9.9],[49,12.62],[50,12.41],[51,12.09],[52,16.54],[53,14.0],[54,14.81],[55,11.7],[56,11.08],[57,10.29],[58,8.02],[59,7.44],[60,19.38],[61,9.38],[62,12.28],[63,8.88],[64,8.31],[65,17.21],[66,14.47],[67,14.13],[68,10.4],[69,14.89],[70,11.34],[71,16.95],[72,9.72],[73,8.65],[74,10.63],[75,10.5],[76,12.36],[77,14.92],[78,12.46],[79,14.11],[80,14.76],[81,18.1],[82,17.35],[83,12.59]]

View file

@ -1 +0,0 @@
[[1,6.95],[2,3.45],[3,3.37],[4,4.26],[5,8.23],[6,9.95],[7,7.05],[8,9.87],[9,6.03],[10,7.94],[11,14.29],[12,4.86],[13,5.72],[14,6.64],[15,10.89],[16,12.41],[17,7.16],[18,6.9],[19,11.86],[20,7.86],[21,10.37],[22,9.87],[23,9.46],[24,8.31],[25,5.72],[26,7.03],[27,10.55],[28,10.63],[29,6.5],[30,16.54],[31,11.62],[32,8.8],[33,9.17],[34,7.63],[35,15.18],[36,13.17],[37,9.4],[38,8.8],[39,8.23],[40,6.24],[41,9.22],[42,7.18],[43,6.71],[44,6.3],[45,8.86],[46,7.94],[47,9.38],[48,7.0],[49,9.14],[50,10.0],[51,10.53],[52,7.63],[53,11.28],[54,7.0],[55,8.2],[56,7.52],[57,8.62],[58,5.3],[59,8.02],[60,7.26],[61,7.21],[62,8.49],[63,7.99],[64,10.0],[65,7.34],[66,9.98],[67,10.08],[68,8.18],[69,12.67],[70,8.18],[71,6.11],[72,7.94],[73,9.01],[74,7.52],[75,8.75],[76,7.42],[77,6.71],[78,5.98],[79,6.77],[80,7.18],[81,6.61],[82,6.58],[83,7.52],[84,8.78],[85,8.1],[86,7.78],[87,7.65],[88,6.69],[89,5.54],[90,5.09],[91,9.04],[92,6.11],[93,6.92],[94,7.13],[95,5.77],[96,6.3],[97,8.44],[98,8.7],[99,8.07],[100,5.36],[101,5.93],[102,35.79],[103,9.22],[104,8.99],[105,10.5],[106,8.72],[107,5.77],[108,6.19],[109,7.21],[110,5.43],[111,6.97],[112,8.57],[113,19.12],[114,6.95],[115,8.18],[116,6.48],[117,6.56],[118,6.14],[119,6.4],[120,6.27],[121,7.34],[122,8.1],[123,6.22],[124,7.86],[125,8.2],[126,9.51],[127,7.39],[128,5.59],[129,5.49],[130,6.69],[131,6.53],[132,6.53],[133,6.24],[134,8.05],[135,6.56],[136,6.43],[137,8.57],[138,8.05],[139,6.3],[140,5.56],[141,5.62],[142,5.64],[143,8.65],[144,8.44],[145,8.46],[146,9.2],[147,7.6],[148,7.68],[149,7.81],[150,10.16],[151,10.14],[152,6.77],[153,5.46],[154,5.28],[155,5.07],[156,6.11],[157,8.23],[158,14.29],[159,6.84],[160,6.27],[161,5.88],[162,7.92],[163,5.69],[164,10.66],[165,9.87],[166,6.4],[167,6.14],[168,8.54],[169,7.11],[170,6.27],[171,7.39],[172,7.11],[173,7.29],[174,5.59],[175,5.8],[176,6.24],[177,10.32],[178,5.88],[179,5.54],[180,7.97],[181,5.41],[182,7.08]]

View file

@ -1 +0,0 @@
[[1,7.97],[2,7.84],[3,12.67],[4,19.33],[5,12.07],[6,16.51],[7,11.49],[8,16.93],[9,11.13],[10,11.6],[11,9.06],[12,10.0],[13,11.7],[14,8.65],[15,16.46],[16,9.48],[17,13.32],[18,10.89],[19,9.33],[20,9.35],[21,7.73],[22,25.16],[23,23.33],[24,40.96],[25,11.42],[26,38.64],[27,20.64],[28,14.16],[29,16.48],[30,14.47],[31,7.76],[32,15.02],[33,9.95],[34,13.77],[35,16.9],[36,11.42],[37,10.76],[38,6.48],[39,9.38],[40,8.46],[41,17.06],[42,9.85],[43,19.62],[44,19.41],[45,12.36],[46,11.28],[47,10.21],[48,10.89],[49,9.25],[50,9.09],[51,11.94],[52,7.68],[53,7.11],[54,8.96],[55,8.88],[56,7.21],[57,8.75],[58,8.62],[59,16.77],[60,15.1],[61,14.26],[62,12.59],[63,8.44],[64,9.25],[65,13.92],[66,9.93],[67,4.75],[68,5.85],[69,11.0],[70,14.79],[71,13.71],[72,10.0],[73,7.42],[74,8.49],[75,15.86],[76,11.86],[77,7.03],[78,9.51],[79,9.35],[80,6.97],[81,5.96],[82,8.1],[83,6.5],[84,5.88],[85,12.77],[86,13.19],[87,6.48],[88,8.72]]

View file

@ -1 +0,0 @@
[[1,8.57],[2,15.86],[3,45.69],[4,19.62],[5,30.64],[6,48.77],[7,43.52],[8,51.96],[9,33.07],[10,24.37],[11,10.68],[12,6.87],[13,11.02],[14,5.09],[15,24.92],[16,21.03],[17,15.65],[18,21.71],[19,12.72],[20,26.41],[21,39.73],[22,26.72],[23,38.56],[24,18.83],[25,11.23],[26,14.24],[27,13.51],[28,9.17],[29,25.78],[30,10.71],[31,11.13],[32,19.49],[33,13.61],[34,14.13],[35,17.92],[36,17.66],[37,15.33],[38,46.47],[39,11.96],[40,11.81],[41,28.26],[42,34.51],[43,17.19],[44,14.32],[45,21.26],[46,18.42],[47,28.84],[48,12.2],[49,28.5],[50,14.16],[51,21.86],[52,22.94],[53,28.81],[54,28.37],[55,33.15],[56,18.94],[57,11.91],[58,13.98],[59,15.6],[60,19.04],[61,21.21],[62,11.76],[63,17.35],[64,15.8],[65,17.45],[66,8.12],[67,25.39],[68,26.59],[69,31.03],[70,11.21],[71,55.38],[72,14.52],[73,28.11],[74,22.0],[75,25.47]]

View file

@ -1 +0,0 @@
[[1,41.17],[2,22.54],[3,38.37],[4,20.87],[5,21.92],[6,51.91],[7,37.07],[8,15.26],[9,21.29],[10,22.75],[11,89.1],[12,101.36],[13,23.2],[14,19.36],[15,36.57],[16,19.17],[17,29.49],[18,34.51],[19,56.42],[20,22.96],[21,13.4],[22,23.09],[23,81.68],[24,51.33],[25,80.95],[26,16.2],[27,14.89],[28,11.0],[29,31.16],[30,13.4],[31,21.08],[32,29.88],[33,24.45],[34,52.4],[35,34.12],[36,38.01],[37,19.7],[38,22.49],[39,17.32],[40,14.16],[41,15.05],[42,18.23],[43,75.57],[44,13.51],[45,11.81],[46,48.74],[47,34.87],[48,21.0],[49,14.47],[50,11.39],[51,24.4],[52,13.9],[53,8.83],[54,21.37],[55,12.3],[56,27.56],[57,33.2],[58,28.19],[59,32.03],[60,40.52],[61,15.88],[62,30.09],[63,22.73],[64,35.53],[65,23.85],[66,32.05],[67,8.59],[68,5.64],[69,33.8],[70,9.33],[71,12.67],[72,17.89],[73,26.62],[74,20.56],[75,39.52],[76,27.98],[77,56.45],[78,44.83],[79,25.68],[80,15.12],[81,30.54],[82,15.49],[83,32.71],[84,23.43],[85,24.08],[86,17.27],[87,18.99],[88,22.54],[89,32.44],[90,38.84],[91,40.25],[92,77.77],[93,33.7],[94,44.07],[95,35.29],[96,9.82],[97,36.7],[98,18.52],[99,12.43],[100,35.29],[101,23.43],[102,93.23],[103,25.31],[104,32.6],[105,22.8],[106,9.46],[107,14.55],[108,21.55],[109,22.15],[110,13.77],[111,12.49],[112,22.96],[113,39.94],[114,25.55],[115,27.4],[116,19.75],[117,19.25],[118,11.18],[119,35.24],[120,9.09],[121,9.3],[122,28.55],[123,23.72],[124,22.05],[125,18.99],[126,11.55],[127,52.14],[128,35.11],[129,26.2],[130,11.68],[131,28.68],[132,8.49],[133,12.75],[134,15.23],[135,50.47],[136,38.82],[137,19.12],[138,7.0],[139,20.19],[140,33.88],[141,43.1],[142,25.39],[143,23.8],[144,24.79],[145,11.31],[146,25.18],[147,14.5],[148,12.8],[149,14.58],[150,28.68],[151,11.21],[152,20.74],[153,43.44],[154,22.15],[155,30.64],[156,6.87],[157,34.01],[158,8.75],[159,13.48],[160,16.38],[161,15.44],[162,35.16],[163,42.03],[164,15.36],[165,17.37],[166,20.27],[167,11.13],[168,11.18],[169,11.86],[170,24.79],[171,54.2],[172,23.3],[173,33.62],[174,20.77],[175,23.85],[176,58.1]]

View file

@ -1 +0,0 @@
[[1,4.73],[2,8.07],[3,14.5],[4,13.56],[5,28.26],[6,13.17],[7,33.15],[8,22.7],[9,16.07],[10,16.61],[11,19.88],[12,18.0],[13,16.69],[14,8.62],[15,17.24],[16,21.26],[17,15.05],[18,19.46],[19,8.91],[20,19.04],[21,28.97],[22,19.91],[23,9.56],[24,10.08],[25,27.01],[26,21.11],[27,15.86],[28,43.76],[29,30.56],[30,14.86],[31,15.54],[32,9.67],[33,15.15],[34,36.31],[35,27.32],[36,11.31],[37,31.24],[38,10.84],[39,14.37],[40,32.6],[41,14.18],[42,14.6],[43,33.38],[44,19.85],[45,12.9],[46,18.05],[47,29.73],[48,16.43],[49,16.48],[50,23.12],[51,14.39],[52,15.05],[53,12.83],[54,5.64],[55,14.03],[56,30.01],[57,13.82],[58,17.97],[59,13.14],[60,18.68],[61,22.23],[62,15.1],[63,8.86],[64,28.4],[65,17.5],[66,21.21],[67,42.5],[68,18.16],[69,12.62],[70,12.9],[71,10.66],[72,7.89],[73,9.3],[74,20.92],[75,13.66],[76,13.35],[77,17.61],[78,35.76],[79,10.11],[80,14.16],[81,9.46],[82,28.32],[83,25.34],[84,16.2],[85,21.21]]

View file

@ -1 +0,0 @@
[[1,5.09],[2,7.18],[3,11.1],[4,9.9],[5,30.88],[6,30.25],[7,9.35],[8,9.77],[9,18.0],[10,29.7],[11,30.54],[12,26.91],[13,13.14],[14,34.85],[15,27.45],[16,27.48],[17,23.88],[18,7.84],[19,11.0],[20,18.08],[21,25.29],[22,27.82],[23,15.86],[24,15.41],[25,36.91],[26,12.41],[27,16.14],[28,24.97],[29,25.86],[30,31.03],[31,20.82],[32,7.08],[33,16.22],[34,19.75],[35,15.73],[36,18.78],[37,23.93],[38,15.6],[39,33.85],[40,34.35],[41,15.33],[42,15.28],[43,18.21],[44,42.5],[45,21.71],[46,16.2],[47,33.93],[48,15.2],[49,16.12],[50,50.73],[51,18.42],[52,18.29],[53,25.08],[54,22.54]]

View file

@ -1 +0,0 @@
[[1,4.83],[2,15.18],[3,12.09],[4,8.86],[5,27.3],[6,20.43],[7,35.66],[8,26.59],[9,19.02],[10,19.57],[11,25.55],[12,18.16],[13,49.53],[14,38.61],[15,46.45],[16,26.23],[17,16.77],[18,27.64],[19,14.63],[20,21.58],[21,25.34],[22,32.18],[23,34.3],[24,23.88],[25,12.67],[26,17.89],[27,22.8],[28,14.76],[29,21.03],[30,15.15],[31,18.29],[32,7.65],[33,17.95],[34,9.14],[35,12.46],[36,24.79],[37,13.06],[38,16.04],[39,10.32],[40,21.81],[41,13.4],[42,19.41],[43,9.38],[44,24.66],[45,38.16],[46,21.97],[47,26.28],[48,40.8],[49,22.6],[50,18.83],[51,30.82],[52,36.55],[53,16.72]]

View file

@ -1 +0,0 @@
[[1,5.51],[2,4.55],[3,9.61],[4,10.76],[5,11.6],[6,8.07],[7,10.4],[8,11.57],[9,15.1],[10,11.99],[11,19.98],[12,12.83],[13,23.12],[14,9.61],[15,12.83],[16,10.68],[17,15.18],[18,9.43],[19,18.55],[20,16.46],[21,11.83],[22,24.03],[23,41.51],[24,24.71],[25,12.36],[26,15.6],[27,7.89],[28,10.71],[29,19.17],[30,13.37],[31,11.18],[32,32.24],[33,26.98],[34,9.27],[35,16.4],[36,13.14],[37,12.9],[38,15.91],[39,12.51],[40,13.22],[41,11.68],[42,11.7],[43,14.16],[44,9.22],[45,17.79],[46,15.07],[47,13.09],[48,16.14],[49,14.13],[50,9.82],[51,17.27],[52,10.14],[53,17.48],[54,13.01],[55,12.93],[56,8.33],[57,9.22],[58,14.71],[59,14.24],[60,14.52],[61,16.77],[62,11.39],[63,24.19],[64,13.92],[65,12.93],[66,13.45],[67,13.17],[68,11.44],[69,7.81],[70,8.72],[71,23.43],[72,12.54],[73,9.69],[74,9.35],[75,7.37],[76,8.59],[77,12.51],[78,10.74],[79,9.98],[80,13.69],[81,9.46],[82,10.11],[83,10.76],[84,15.65],[85,19.36],[86,13.79],[87,14.71],[88,13.17],[89,11.96]]

View file

@ -1 +0,0 @@
[[1,4.75],[2,4.6],[3,17.11],[4,5.62],[5,10.32],[6,9.46],[7,13.37],[8,16.51],[9,6.35],[10,9.72],[11,9.72],[12,8.67],[13,10.95],[14,9.25],[15,12.12],[16,11.44],[17,13.3],[18,14.24],[19,15.15],[20,9.43],[21,6.69],[22,15.12],[23,8.52],[24,10.19],[25,8.88],[26,7.31],[27,6.97],[28,7.73],[29,13.01],[30,11.86],[31,12.46],[32,8.23],[33,11.76],[34,9.72],[35,9.4],[36,11.23],[37,15.41],[38,8.93],[39,12.09],[40,8.28],[41,12.59],[42,11.47],[43,6.27],[44,4.65],[45,5.75],[46,4.73],[47,8.88],[48,8.91],[49,7.81],[50,9.17],[51,7.6],[52,6.64],[53,11.05],[54,7.86],[55,7.29],[56,11.86],[57,8.65],[58,9.74],[59,7.97]]

View file

@ -1 +0,0 @@
[[1,4.39],[2,7.71],[3,8.28],[4,13.51],[5,24.16],[6,14.5],[7,5.64],[8,16.48],[9,14.24],[10,24.5],[11,12.9],[12,17.19],[13,17.92],[14,15.23],[15,15.49],[16,26.12],[17,28.63],[18,15.78],[19,19.93],[20,12.43],[21,22.52],[22,13.61],[23,31.9],[24,21.39],[25,26.44],[26,18.91],[27,13.87],[28,18.63],[29,16.51],[30,14.81],[31,17.45],[32,27.17],[33,12.04],[34,23.77],[35,21.55],[36,9.95],[37,13.27]]

View file

@ -1 +0,0 @@
[[1,4.88],[2,8.57],[3,24.89],[4,34.01],[5,21.73],[6,14.5],[7,23.95],[8,29.88],[9,26.2],[10,31.63],[11,25.63],[12,24.71],[13,15.88],[14,17.79],[15,65.93],[16,26.36],[17,50.36],[18,23.2],[19,16.12],[20,42.29],[21,39.44],[22,18.13],[23,21.26],[24,24.4],[25,20.35],[26,54.15],[27,13.11],[28,19.91],[29,28.92],[30,39.78],[31,31.16],[32,25.31],[33,30.04],[34,21.86],[35,35.63]]

View file

@ -1 +0,0 @@
[[1,8.8],[2,19.57],[3,19.49],[4,49.89],[5,4.15],[6,5.8],[7,15.78],[8,7.05],[9,11.55],[10,19.36],[11,12.23],[12,28.13],[13,19.1],[14,18.83],[15,65.33],[16,31.9],[17,8.49],[18,22.36],[19,22.75],[20,33.85],[21,14.89],[22,12.75],[23,12.77],[24,15.54],[25,17.97],[26,16.17],[27,10.97],[28,13.66],[29,11.05],[30,20.69],[31,13.06],[32,29.26],[33,14.99],[34,16.2],[35,14.39],[36,17.19],[37,9.04],[38,48.2]]

View file

@ -1 +0,0 @@
[[1,6.32],[2,16.77],[3,5.38],[4,24.11],[5,26.17],[6,37.46],[7,9.48],[8,10.21],[9,12.59],[10,27.3],[11,37.02],[12,30.17],[13,12.62],[14,19.72],[15,36.75],[16,34.25],[17,32.37],[18,24.11],[19,9.87],[20,26.57],[21,12.96],[22,13.09],[23,12.9],[24,19.41],[25,54.88],[26,35.13],[27,36.96],[28,15.7],[29,77.37]]

View file

@ -1 +0,0 @@
[[1,19.3],[2,31.35],[3,24.03],[4,14.29],[5,13.22],[6,31.14],[7,37.3],[8,9.69],[9,42.74],[10,17.35],[11,59.06],[12,42.0],[13,35.87],[14,34.19],[15,30.22],[16,16.35],[17,23.35],[18,14.84]]

View file

@ -1 +0,0 @@
[[1,30.75],[2,82.68],[3,74.58],[4,42.03],[5,63.56],[6,114.65],[7,22.99],[8,35.74],[9,12.75],[10,12.8],[11,33.49],[12,76.41],[13,38.79],[14,34.72],[15,42.74],[16,22.8],[17,42.53],[18,43.13],[19,41.43],[20,32.31],[21,19.15],[22,26.44],[23,27.59],[24,23.17],[25,15.36],[26,18.0],[27,26.33],[28,19.96],[29,21.21],[30,10.34],[31,27.9],[32,50.63],[33,40.23],[34,17.74],[35,18.89],[36,24.58],[37,14.97],[38,19.64],[39,17.14],[40,26.7],[41,74.89],[42,31.71],[43,20.24],[44,57.52],[45,41.69],[46,34.25],[47,23.17],[48,71.13],[49,47.49],[50,15.23],[51,32.31],[52,38.35],[53,23.3],[54,61.78],[55,16.64],[56,13.32],[57,35.84],[58,15.49],[59,33.62],[60,36.34],[61,18.21],[62,14.76],[63,15.28],[64,59.06],[65,21.0],[66,33.12],[67,26.23],[68,40.57],[69,24.01],[70,28.81],[71,27.45],[72,44.07],[73,28.68],[74,11.05],[75,32.47],[76,15.33],[77,27.87],[78,19.36],[79,13.56],[80,20.22],[81,27.43],[82,37.83],[83,25.76],[84,20.4],[85,18.65],[86,12.8],[87,19.04],[88,15.73],[89,53.52],[90,27.48],[91,27.61],[92,17.5],[93,26.51],[94,33.99],[95,57.97],[96,22.0],[97,30.85],[98,12.07],[99,12.72],[100,19.02],[101,26.57],[102,10.71],[103,24.63],[104,27.43],[105,25.7],[106,69.04],[107,47.62],[108,29.96],[109,18.0],[110,75.6],[111,20.72],[112,26.02],[113,21.24],[114,34.53],[115,30.77],[116,45.69],[117,34.17],[118,15.88],[119,29.44],[120,15.49]]

View file

@ -1 +0,0 @@
[[1,10.61],[2,18.18],[3,11.28],[4,12.12],[5,13.92],[6,18.47],[7,15.99],[8,8.72],[9,20.09],[10,9.2],[11,14.68],[12,9.82],[13,6.87],[14,11.99],[15,12.9],[16,15.75],[17,10.03],[18,9.9],[19,13.3],[20,9.9],[21,12.85],[22,17.32],[23,8.02],[24,9.17],[25,8.78],[26,11.81],[27,15.6],[28,11.23],[29,12.12],[30,12.23],[31,9.2],[32,8.86],[33,11.55],[34,10.45],[35,10.84],[36,17.71],[37,14.86],[38,15.65],[39,13.37],[40,7.84],[41,10.95],[42,10.34],[43,8.46],[44,11.15],[45,25.91]]

View file

@ -1 +0,0 @@
[[1,3.6],[2,3.45],[3,3.29],[4,3.6],[5,4.94],[6,4.1],[7,4.83],[8,5.96],[9,3.29],[10,5.09],[11,7.52],[12,6.58],[13,6.53],[14,11.36],[15,9.38],[16,13.56],[17,7.63],[18,6.37],[19,10.87],[20,6.19],[21,8.91],[22,8.18],[23,17.03],[24,7.44],[25,13.43],[26,10.55],[27,8.86],[28,11.55],[29,12.12],[30,10.48],[31,6.71],[32,13.32],[33,8.12],[34,7.39],[35,8.31],[36,8.57],[37,12.36],[38,11.78],[39,7.94],[40,10.06],[41,8.72],[42,9.9],[43,8.67],[44,10.5],[45,10.4],[46,13.06],[47,11.47],[48,7.11],[49,10.42],[50,15.7],[51,13.69],[52,15.49],[53,8.31],[54,9.2],[55,9.77],[56,9.98],[57,14.13],[58,8.86],[59,13.51],[60,11.81]]

View file

@ -1 +0,0 @@
[[1,3.42],[2,5.43],[3,6.45],[4,4.39],[5,4.7],[6,4.96],[7,4.73],[8,4.02],[9,5.83],[10,3.84],[11,7.31],[12,7.42],[13,7.08],[14,10.14],[15,9.72],[16,19.23],[17,10.11],[18,13.04],[19,11.1],[20,12.28],[21,28.79],[22,11.47],[23,10.11],[24,11.44],[25,10.16],[26,11.96],[27,9.95],[28,14.65],[29,12.88],[30,9.09],[31,10.08],[32,11.83],[33,7.65],[34,10.97],[35,7.84],[36,8.57],[37,11.05],[38,15.31],[39,6.27],[40,11.28],[41,7.73],[42,9.98],[43,13.58],[44,14.84],[45,9.3],[46,10.97],[47,14.71],[48,14.0],[49,10.29]]

View file

@ -1 +0,0 @@
[[1,4.44],[2,4.68],[3,4.6],[4,4.94],[5,4.1],[6,4.26],[7,3.74],[8,4.02],[9,4.73],[10,7.44],[11,4.02],[12,4.94],[13,4.47],[14,5.15],[15,5.43],[16,4.21],[17,4.34],[18,5.8],[19,4.7],[20,4.57],[21,5.33],[22,5.98],[23,46.16],[24,5.8],[25,4.55],[26,25.29],[27,15.62],[28,16.77],[29,11.18],[30,16.09],[31,17.95],[32,40.31],[33,3.97],[34,4.62],[35,5.43],[36,5.22],[37,4.1],[38,5.72],[39,6.27],[40,4.47],[41,6.64],[42,5.8],[43,4.86],[44,4.96],[45,7.55],[46,4.18],[47,5.69],[48,5.04],[49,4.47],[50,6.37],[51,4.91],[52,10.71],[53,3.29],[54,3.53],[55,6.32],[56,6.37],[57,2.64],[58,5.98],[59,6.06],[60,5.72],[61,6.06],[62,5.83]]

View file

@ -1 +0,0 @@
[[1,5.77],[2,9.69],[3,11.86],[4,11.23],[5,7.94],[6,8.33],[7,12.23],[8,10.03],[9,11.39],[10,9.59],[11,12.38],[12,13.09],[13,6.66],[14,8.62],[15,9.61],[16,4.05],[17,8.65],[18,7.11],[19,13.3],[20,10.24],[21,3.97],[22,8.49],[23,4.39],[24,17.55],[25,8.44],[26,6.74],[27,9.27],[28,12.88],[29,5.28],[30,4.13],[31,14.08],[32,8.36],[33,5.77],[34,16.07],[35,9.38],[36,9.25],[37,12.7],[38,7.89],[39,3.71],[40,8.7],[41,6.97],[42,10.5],[43,13.66],[44,7.16],[45,5.12],[46,7.24],[47,7.26],[48,9.04],[49,6.19],[50,10.81],[51,8.52],[52,5.3],[53,6.69],[54,7.89],[55,9.09]]

View file

@ -1 +0,0 @@
[[1,4.65],[2,4.83],[3,5.56],[4,4.96],[5,6.35],[6,6.4],[7,8.49],[8,5.98],[9,8.46],[10,5.9],[11,9.72],[12,6.66],[13,9.67],[14,10.95],[15,12.02],[16,8.78],[17,6.66],[18,8.39],[19,5.67],[20,6.53],[21,9.43],[22,7.18],[23,8.65],[24,8.99],[25,9.25],[26,5.46],[27,8.44],[28,9.33],[29,9.12],[30,8.86],[31,6.56],[32,8.83],[33,23.98],[34,8.86],[35,14.58],[36,9.77],[37,12.25],[38,8.86],[39,15.1],[40,9.67],[41,11.62],[42,9.33],[43,8.99],[44,8.23],[45,9.61],[46,8.15],[47,9.35],[48,6.06],[49,8.93],[50,6.06],[51,8.57],[52,8.62],[53,8.49],[54,14.73],[55,9.06],[56,15.57],[57,8.99],[58,8.31],[59,8.72],[60,8.46],[61,9.17],[62,6.97],[63,8.99],[64,7.81],[65,9.2],[66,6.53],[67,8.86],[68,9.2],[69,8.8],[70,7.11],[71,9.17],[72,7.76],[73,8.96],[74,10.95],[75,8.86],[76,9.53],[77,8.93],[78,10.29]]

View file

@ -1 +0,0 @@
[[1,3.58],[2,4.15],[3,3.27],[4,4.15],[5,4.02],[6,7.39],[7,6.03],[8,7.65],[9,7.99],[10,6.03],[11,6.77],[12,6.77],[13,6.27],[14,6.79],[15,4.31],[16,7.03],[17,8.12],[18,10.37],[19,8.31],[20,8.31],[21,8.52],[22,4.41],[23,6.24],[24,9.01],[25,7.5],[26,6.48],[27,9.06],[28,5.49],[29,5.75],[30,5.46],[31,6.84],[32,4.21],[33,5.25],[34,3.6],[35,11.21],[36,4.96],[37,3.0],[38,4.68],[39,6.01],[40,6.43],[41,8.86],[42,6.09],[43,6.11],[44,6.45],[45,8.2],[46,8.15],[47,15.26],[48,6.9],[49,7.55],[50,9.27],[51,12.72],[52,9.85],[53,5.77],[54,6.77],[55,5.8],[56,6.16],[57,7.44],[58,6.58],[59,9.93],[60,9.53],[61,13.32],[62,9.67],[63,6.95],[64,9.74],[65,11.91],[66,5.59],[67,5.36],[68,9.12],[69,12.07],[70,10.87],[71,8.36],[72,13.43],[73,9.87],[74,5.93],[75,8.52],[76,8.7],[77,7.73],[78,5.72],[79,8.07],[80,8.12],[81,8.1],[82,8.36],[83,7.6],[84,9.4],[85,9.53],[86,9.87],[87,9.95],[88,9.82],[89,9.12],[90,10.27],[91,6.9],[92,14.03],[93,5.64],[94,4.68],[95,7.08],[96,8.41]]

View file

@ -1 +0,0 @@
[[1,9.27],[2,14.24],[3,10.29],[4,34.22],[5,9.74],[6,15.23],[7,23.93],[8,18.02],[9,24.11],[10,44.43],[11,14.71],[12,33.65],[13,44.62],[14,37.28],[15,19.07],[16,31.82],[17,18.13],[18,19.38],[19,35.24],[20,57.13],[21,33.23],[22,30.54],[23,18.29],[24,17.03],[25,51.72],[26,24.11],[27,66.8],[28,30.88],[29,34.87]]

View file

@ -1 +0,0 @@
[[1,18.89],[2,33.8],[3,30.54],[4,30.8],[5,27.12],[6,19.7],[7,43.76],[8,45.3],[9,25.23],[10,23.41],[11,34.61],[12,25.7],[13,26.96],[14,17.71],[15,13.11],[16,14.76],[17,20.32],[18,22.96],[19,24.76],[20,16.3],[21,11.18],[22,78.68]]

View file

@ -1 +0,0 @@
[[1,9.09],[2,44.98],[3,16.8],[4,19.75],[5,16.74],[6,32.03],[7,53.37],[8,33.1],[9,46.47],[10,44.41],[11,41.04],[12,19.96],[13,16.46],[14,28.89],[15,16.09],[16,21.92],[17,17.92],[18,23.35],[19,15.8],[20,17.61],[21,26.2],[22,15.28],[23,22.96],[24,22.94]]

View file

@ -1 +0,0 @@
[[1,19.83],[2,22.02],[3,12.17],[4,12.8],[5,19.17],[6,43.02],[7,24.01],[8,17.45],[9,13.45],[10,19.04],[11,11.65],[12,29.05],[13,11.65],[14,26.15],[15,11.68],[16,11.73],[17,21.19],[18,8.67],[19,50.23],[20,21.63],[21,16.27],[22,24.69],[23,15.83],[24,14.68],[25,48.38],[26,15.6],[27,20.32],[28,17.68],[29,11.31],[30,22.26],[31,39.55],[32,21.81],[33,20.77],[34,29.15],[35,37.69],[36,16.88],[37,24.61],[38,34.12],[39,23.88],[40,21.97],[41,14.76],[42,25.16],[43,23.72],[44,31.82],[45,13.09],[46,25.86],[47,14.05],[48,19.51],[49,11.42],[50,36.41],[51,26.91],[52,30.01],[53,26.83],[54,38.84],[55,9.67],[56,26.54],[57,26.28],[58,17.71],[59,42.76],[60,39.44],[61,33.23],[62,15.49],[63,27.01],[64,15.15],[65,32.18],[66,10.68],[67,8.54],[68,29.83],[69,19.93],[70,71.03],[71,57.39],[72,13.04],[73,30.75],[74,18.34],[75,12.88],[76,20.4],[77,23.93],[78,26.28],[79,15.49],[80,43.26],[81,26.98],[82,17.61],[83,23.04],[84,31.22],[85,12.36],[86,12.17],[87,17.11],[88,18.23],[89,25.97],[90,23.09],[91,60.73],[92,33.91],[93,67.19],[94,42.29],[95,22.78],[96,14.58],[97,17.58],[98,21.94],[99,75.18],[100,21.63],[101,19.62],[102,20.9],[103,10.53],[104,21.55],[105,13.51],[106,15.75],[107,19.02],[108,36.1],[109,32.37],[110,19.23],[111,43.62],[112,32.21],[113,19.91],[114,31.61],[115,14.45],[116,20.98],[117,14.03],[118,13.69],[119,38.27],[120,16.09],[121,30.33],[122,31.16],[123,18.89],[124,43.36],[125,38.19],[126,13.95],[127,13.35],[128,55.25],[129,11.13],[130,53.92],[131,12.07],[132,15.75],[133,31.9],[134,15.18],[135,23.43],[136,38.53],[137,28.84],[138,38.06],[139,30.48],[140,29.07],[141,47.49],[142,23.67],[143,38.22],[144,53.66],[145,47.28],[146,40.07],[147,16.46],[148,49.92],[149,12.56],[150,37.25],[151,55.2],[152,37.22],[153,28.24],[154,30.04],[155,14.42],[156,24.56],[157,47.91],[158,47.91],[159,26.67],[160,24.53],[161,23.88],[162,12.8],[163,9.77],[164,35.97],[165,34.82]]

View file

@ -1 +0,0 @@
[[1,60.5],[2,19.72],[3,17.01],[4,60.92],[5,15.78],[6,18.08],[7,18.42],[8,24.16],[9,27.56],[10,81.61],[11,26.98],[12,50.39],[13,25.73]]

View file

@ -1 +0,0 @@
[[1,10.24],[2,10.16],[3,9.48],[4,15.54],[5,25.08],[6,39.03],[7,17.53],[8,12.7],[9,15.75],[10,15.39],[11,19.28],[12,20.87],[13,14.29],[14,61.73]]

View file

@ -1 +0,0 @@
[[1,10.76],[2,23.8],[3,9.51],[4,11.62],[5,23.64],[6,25.34],[7,14.81],[8,21.73],[9,25.44],[10,14.94],[11,27.09]]

View file

@ -1 +0,0 @@
[[1,22.41],[2,20.61],[3,13.32],[4,31.48],[5,18.96],[6,20.11],[7,25.94],[8,23.95],[9,25.97],[10,33.02],[11,16.43]]

View file

@ -1 +0,0 @@
[[1,14.89],[2,14.89],[3,11.23],[4,16.51],[5,12.93],[6,26.8],[7,22.52],[8,15.62],[9,39.24],[10,16.98],[11,19.93],[12,14.86],[13,13.14],[14,23.61],[15,14.79],[16,19.51],[17,12.98],[18,9.27]]

View file

@ -1 +0,0 @@
[[1,52.09],[2,33.88],[3,18.99],[4,32.91],[5,16.82],[6,46.84],[7,31.09],[8,22.13],[9,6.95],[10,18.36],[11,46.71],[12,30.04]]

View file

@ -1 +0,0 @@
[[1,18.39],[2,12.2],[3,30.98],[4,26.93],[5,37.51],[6,41.33],[7,16.85],[8,74.34],[9,17.32],[10,28.32],[11,25.99],[12,23.33]]

View file

@ -1 +0,0 @@
[[1,10.81],[2,13.92],[3,19.07],[4,12.93],[5,19.85],[6,10.48],[7,10.92],[8,18.99],[9,20.51],[10,12.88],[11,8.96],[12,14.11],[13,13.51],[14,7.29],[15,15.39],[16,13.82],[17,16.35],[18,9.51],[19,25.1],[20,19.85],[21,13.98],[22,18.68],[23,15.07],[24,7.71],[25,9.77],[26,13.51],[27,17.5],[28,20.38],[29,15.65],[30,18.49]]

View file

@ -1 +0,0 @@
[[1,9.51],[2,8.39],[3,6.64],[4,6.53],[5,4.28],[6,4.57],[7,12.54],[8,4.68],[9,5.41],[10,6.66],[11,9.35],[12,6.97],[13,7.03],[14,7.71],[15,9.33],[16,5.41],[17,15.52],[18,4.65],[19,11.36],[20,4.39],[21,4.34],[22,8.25],[23,6.48],[24,8.39],[25,6.92],[26,12.33],[27,4.73],[28,7.92],[29,10.63],[30,7.81],[31,9.85],[32,16.88],[33,13.84],[34,10.0],[35,6.58],[36,5.07],[37,6.09],[38,6.24],[39,11.94],[40,6.4],[41,12.93],[42,10.5],[43,12.88],[44,13.9],[45,6.84],[46,10.14],[47,6.77],[48,10.84],[49,14.92],[50,7.44],[51,16.01],[52,8.41]]

View file

@ -1 +0,0 @@
[[1,5.22],[2,5.62],[3,8.41],[4,6.37],[5,6.4],[6,9.69],[7,19.46],[8,5.69],[9,10.42],[10,7.31],[11,9.61],[12,11.26],[13,6.58],[14,8.59],[15,5.33],[16,9.06],[17,15.2],[18,8.49],[19,12.54],[20,7.86],[21,3.92],[22,4.08],[23,3.16],[24,11.73],[25,12.02],[26,3.68],[27,4.39],[28,6.35],[29,4.41],[30,4.86],[31,5.96],[32,11.31],[33,8.02],[34,6.84],[35,7.05],[36,6.69],[37,7.73],[38,7.18],[39,4.52],[40,8.07],[41,8.86],[42,9.06],[43,7.47],[44,7.08],[45,5.04],[46,6.56],[47,8.54],[48,7.42],[49,9.59],[50,7.24],[51,6.53],[52,7.97]]

View file

@ -1 +0,0 @@
[[1,13.82],[2,15.18],[3,23.35],[4,16.35],[5,26.64],[6,11.49],[7,13.17],[8,14.76],[9,19.28],[10,15.05],[11,25.97],[12,17.95],[13,13.71],[14,9.61],[15,7.73],[16,12.04],[17,21.81],[18,17.89],[19,22.41],[20,26.93],[21,10.89],[22,46.68],[23,17.71],[24,14.68],[25,11.55],[26,26.75],[27,43.6],[28,30.93],[29,20.72],[30,29.13],[31,19.1],[32,30.09],[33,31.66],[34,16.38],[35,23.25],[36,19.64],[37,55.43],[38,62.07],[39,20.24],[40,33.7],[41,15.83],[42,30.43],[43,48.85],[44,35.45],[45,15.28],[46,27.66],[47,20.9],[48,29.31],[49,23.95],[50,36.39],[51,27.3],[52,15.93],[53,47.93],[54,41.14],[55,11.62],[56,17.08],[57,41.93],[58,20.04],[59,29.1],[60,12.28],[61,12.17],[62,11.73],[63,21.76],[64,20.35],[65,16.43],[66,23.28],[67,12.67],[68,8.07],[69,37.38],[70,23.2],[71,46.5],[72,26.23],[73,45.22],[74,36.31],[75,32.18],[76,15.12],[77,25.44],[78,8.62],[79,20.82],[80,15.96],[81,18.39],[82,26.44],[83,11.57],[84,12.88],[85,42.32],[86,30.09],[87,33.2],[88,27.27],[89,45.22],[90,14.76],[91,8.67],[92,16.61],[93,21.0],[94,24.89],[95,28.26],[96,32.94],[97,15.18],[98,13.22],[99,13.17],[100,23.54],[101,29.52],[102,15.36],[103,21.86],[104,11.81],[105,24.42],[106,13.53],[107,8.07],[108,9.93],[109,10.27],[110,10.21],[111,11.21],[112,5.93],[113,21.39],[114,7.97],[115,17.14],[116,19.98],[117,15.88],[118,7.47],[119,8.49],[120,6.01],[121,8.31],[122,4.96],[123,24.79],[124,14.99],[125,12.28],[126,29.39],[127,28.16],[128,22.18],[129,26.62],[130,15.67],[131,33.8],[132,12.85],[133,21.71],[134,28.26],[135,15.26],[136,24.22],[137,38.79],[138,32.26],[139,14.89],[140,11.99],[141,34.19],[142,28.63],[143,53.68],[144,20.43],[145,26.51],[146,40.02],[147,19.15],[148,25.78],[149,22.91],[150,54.91],[151,13.32],[152,19.2],[153,19.04],[154,19.88],[155,55.3],[156,42.95],[157,79.83],[158,47.8],[159,13.66],[160,60.0],[161,26.67],[162,23.3],[163,37.09],[164,23.98],[165,36.18],[166,12.33],[167,29.1],[168,20.72],[169,56.16],[170,13.64],[171,32.86],[172,34.9],[173,24.27],[174,8.31],[175,21.05],[176,36.57],[177,14.21],[178,13.98],[179,36.28],[180,21.19],[181,13.04],[182,11.55],[183,7.29],[184,15.7],[185,27.4],[186,11.83],[187,45.3],[188,34.35],[189,38.16],[190,22.0],[191,8.62],[192,12.43],[193,17.97],[194,20.01],[195,33.38],[196,14.08],[197,16.22],[198,14.86],[199,8.57],[200,19.44],[201,19.77],[202,9.77],[203,32.42],[204,11.6],[205,18.7],[206,19.1]]

View file

@ -1 +0,0 @@
[[1,7.34],[2,4.49],[3,3.5],[4,12.9],[5,4.05],[6,4.57],[7,2.8],[8,5.38],[9,3.6],[10,4.18],[11,12.59],[12,4.86],[13,5.3],[14,9.9],[15,5.67],[16,3.37],[17,3.81],[18,2.53],[19,5.64],[20,3.84],[21,4.0],[22,3.84],[23,7.99],[24,8.59],[25,6.48],[26,6.01],[27,8.83],[28,6.61],[29,6.06],[30,12.8],[31,10.21],[32,7.34],[33,9.01],[34,7.16],[35,8.8],[36,6.43],[37,5.72],[38,10.19],[39,9.9],[40,10.74],[41,10.95],[42,10.21],[43,12.49],[44,14.55]]

View file

@ -1 +0,0 @@
[[1,16.98],[2,7.68],[3,5.77],[4,22.39],[5,7.52],[6,8.18],[7,25.73],[8,5.43],[9,9.56],[10,7.29],[11,6.84],[12,12.36],[13,4.94],[14,3.42],[15,7.29],[16,7.5],[17,6.32],[18,6.35],[19,4.57],[20,4.91],[21,13.11],[22,4.36],[23,13.51],[24,8.25],[25,18.26],[26,7.73],[27,12.41],[28,19.49]]

View file

@ -1 +0,0 @@
[[1,14.03],[2,11.81],[3,9.3],[4,6.74],[5,12.12],[6,12.9],[7,9.69],[8,11.83],[9,13.27],[10,12.43],[11,12.59],[12,11.99],[13,17.19],[14,15.1],[15,7.11],[16,10.06],[17,12.15],[18,7.65],[19,10.16],[20,11.1],[21,8.39],[22,11.47],[23,23.82],[24,11.83],[25,11.28],[26,7.76],[27,12.23],[28,15.26]]

View file

@ -1 +0,0 @@
[[1,5.75],[2,3.55],[3,6.16],[4,5.72],[5,6.37],[6,7.71],[7,6.24],[8,5.62],[9,9.01],[10,7.47],[11,7.58],[12,8.02],[13,6.82],[14,8.7],[15,18.21],[16,7.44],[17,8.7],[18,9.8],[19,10.95],[20,89.7]]

View file

@ -1 +0,0 @@
[[1,4.83],[2,2.85],[3,2.38],[4,2.69],[5,2.27],[6,3.76],[7,2.48],[8,5.93],[9,6.4],[10,5.69],[11,4.1],[12,4.52],[13,2.53],[14,3.63],[15,5.25],[16,6.77],[17,3.03],[18,3.4],[19,2.59],[20,3.71],[21,2.4],[22,3.32],[23,3.53],[24,6.48],[25,4.99],[26,2.22],[27,4.34],[28,2.98],[29,2.74],[30,3.03],[31,65.15],[32,2.35],[33,2.66],[34,3.97],[35,3.55],[36,2.4],[37,9.01],[38,4.78],[39,5.93],[40,7.86],[41,4.26],[42,3.11],[43,5.25],[44,5.07],[45,7.39],[46,6.35],[47,5.88],[48,6.92],[49,6.01],[50,5.59],[51,3.55],[52,9.04],[53,5.02],[54,5.15],[55,4.68],[56,17.66]]

View file

@ -1 +0,0 @@
[[1,6.14],[2,7.5],[3,7.24],[4,7.5],[5,5.72],[6,4.49],[7,2.74],[8,2.09],[9,3.16],[10,6.32],[11,2.95],[12,4.7],[13,8.02],[14,5.41],[15,3.53],[16,5.12],[17,5.38],[18,4.83],[19,4.94],[20,4.02],[21,2.9],[22,4.83],[23,3.16],[24,5.38],[25,5.75],[26,5.56],[27,5.46],[28,5.83],[29,5.15],[30,6.16],[31,3.4],[32,4.26],[33,6.32],[34,2.74],[35,4.05],[36,6.4],[37,6.97],[38,6.24],[39,6.19],[40,10.45]]

View file

@ -1 +0,0 @@
[[1,10.53],[2,13.69],[3,10.29],[4,10.16],[5,9.87],[6,8.23],[7,9.14],[8,9.67],[9,11.99],[10,7.89],[11,9.17],[12,6.9],[13,11.23],[14,7.55],[15,11.6],[16,7.29],[17,7.71],[18,5.72],[19,11.83],[20,7.86],[21,18.23],[22,10.87],[23,7.08],[24,6.97],[25,5.38],[26,6.84],[27,14.24],[28,13.48],[29,10.58],[30,15.91],[31,14.55]]

View file

@ -1 +0,0 @@
[[1,3.08],[2,3.0],[3,3.45],[4,2.9],[5,2.95],[6,2.56],[7,4.31],[8,3.29],[9,3.97],[10,2.77],[11,2.72],[12,2.9],[13,2.04],[14,4.99],[15,6.01],[16,4.65],[17,5.46],[18,5.22],[19,6.3],[20,8.75],[21,5.72],[22,5.15],[23,4.94],[24,5.83],[25,3.71],[26,5.15],[27,11.55],[28,6.11],[29,11.23],[30,8.28],[31,5.15],[32,5.36],[33,4.94],[34,6.69],[35,5.75],[36,5.59],[37,6.64],[38,7.18],[39,7.29],[40,6.64],[41,8.15],[42,6.14],[43,9.59],[44,5.88],[45,6.5],[46,8.07],[47,6.35],[48,6.58],[49,6.82],[50,10.14]]

View file

@ -1 +0,0 @@
[[1,6.45],[2,5.15],[3,6.01],[4,4.1],[5,6.22],[6,4.18],[7,3.89],[8,4.13],[9,4.62],[10,4.0],[11,5.07],[12,6.37],[13,5.43],[14,9.35],[15,5.3],[16,4.21],[17,5.69],[18,6.95],[19,7.18],[20,5.83],[21,6.01],[22,3.45],[23,5.75],[24,7.34],[25,5.28],[26,5.09],[27,6.03],[28,5.62],[29,5.93],[30,7.86],[31,4.49],[32,4.41],[33,3.21],[34,3.74],[35,7.29],[36,8.52],[37,13.51],[38,19.72],[39,11.34],[40,33.67]]

View file

@ -1 +0,0 @@
[[1,4.6],[2,4.41],[3,3.29],[4,3.29],[5,3.42],[6,3.4],[7,3.03],[8,5.51],[9,3.11],[10,7.18],[11,6.03],[12,5.67],[13,6.01],[14,4.36],[15,3.94],[16,6.24],[17,5.75],[18,6.48],[19,4.52],[20,3.74],[21,2.38],[22,3.53],[23,2.51],[24,3.92],[25,6.01],[26,6.84],[27,8.72],[28,3.94],[29,4.86],[30,4.23],[31,6.45],[32,3.03],[33,4.26],[34,9.33],[35,5.46],[36,4.96],[37,3.74],[38,3.81],[39,4.65],[40,9.33],[41,5.28],[42,6.09],[43,5.02],[44,4.36],[45,8.91],[46,13.04]]

View file

@ -1 +0,0 @@
[[1,31.97],[2,31.11],[3,12.36],[4,17.76],[5,16.35],[6,14.84],[7,28.16],[8,8.99],[9,17.16],[10,24.08],[11,34.95],[12,26.57],[13,20.53],[14,11.91],[15,17.16],[16,31.9],[17,27.38],[18,8.46],[19,31.84],[20,17.16],[21,9.93],[22,16.04],[23,14.47],[24,29.44],[25,22.07],[26,33.96],[27,18.31],[28,20.48],[29,25.05],[30,21.86],[31,25.44],[32,25.65],[33,16.74],[34,30.98],[35,20.11],[36,37.88],[37,25.94],[38,19.49],[39,23.2],[40,17.27],[41,61.96],[42,46.0],[43,25.86],[44,31.82],[45,18.86],[46,17.01],[47,23.9],[48,52.09],[49,23.69],[50,18.49],[51,12.28],[52,21.71],[53,24.37],[54,26.83],[55,14.47],[56,15.33],[57,13.9],[58,22.73],[59,11.96],[60,41.87],[61,15.96],[62,19.54],[63,26.54],[64,12.72],[65,41.82],[66,40.12],[67,22.99],[68,12.96],[69,18.16],[70,37.43],[71,16.14],[72,66.72],[73,18.7],[74,30.35],[75,32.76]]

View file

@ -1 +0,0 @@
[[1,2.95],[2,5.41],[3,5.07],[4,5.36],[5,3.6],[6,3.89],[7,4.36],[8,6.53],[9,2.09],[10,3.55],[11,5.9],[12,4.6],[13,3.5],[14,3.87],[15,2.25],[16,2.93],[17,5.98],[18,3.32],[19,5.41],[20,4.18],[21,4.52],[22,6.53],[23,6.53],[24,6.3],[25,6.43],[26,4.78],[27,4.68],[28,3.58],[29,4.23],[30,4.02],[31,3.79],[32,4.31],[33,7.58],[34,5.75],[35,5.56],[36,4.41],[37,10.61],[38,5.59],[39,4.0],[40,5.98],[41,2.66],[42,7.05]]

View file

@ -1 +0,0 @@
[[1,2.4],[2,3.74],[3,2.77],[4,2.82],[5,2.59],[6,2.85],[7,3.13],[8,3.0],[9,4.26],[10,2.25],[11,3.84],[12,2.8],[13,3.79],[14,5.07],[15,5.88],[16,3.66],[17,2.98],[18,3.24],[19,6.09],[20,5.49],[21,4.96],[22,5.17],[23,5.3],[24,5.17],[25,3.84],[26,3.27],[27,5.38],[28,8.31],[29,13.04]]

View file

@ -1 +0,0 @@
[[1,4.88],[2,4.68],[3,2.72],[4,3.37],[5,5.69],[6,9.53],[7,4.68],[8,7.5],[9,5.64],[10,5.51],[11,4.34],[12,4.31],[13,5.33],[14,5.64],[15,4.62],[16,6.71],[17,6.4],[18,7.26],[19,13.3]]

Some files were not shown because too many files have changed in this diff Show more