diff --git a/Rules b/Rules index 4f14102..bdff1ab 100644 --- a/Rules +++ b/Rules @@ -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" ## diff --git a/packages/typescript/Quran/src/index.ts b/packages/typescript/Quran/src/index.ts index 7003384..f46446e 100644 --- a/packages/typescript/Quran/src/index.ts +++ b/packages/typescript/Quran/src/index.ts @@ -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; } } diff --git a/packages/typescript/Quran/src/json/durations.json b/packages/typescript/Quran/src/json/durations.json new file mode 100644 index 0000000..79b5de1 --- /dev/null +++ b/packages/typescript/Quran/src/json/durations.json @@ -0,0 +1 @@ +[[6.11,5.62,4.65,4.68,6.74,5.62,13.27],[7.68,9.01,11.44,15.86,11.39,12.64,13.35,12.07,12.62,13.61,10.71,9.17,25.0,23.8,7.97,12.59,21.79,7.84,25.5,30.48,13.53,31.09,23.85,14.89,38.37,43.18,23.51,18.0,21.73,30.56,27.25,14.18,35.13,16.85,20.56,21.32,15.67,18.13,17.61,21.94,22.15,9.59,7.99,16.38,12.38,12.85,17.4,22.75,26.15,15.15,15.62,10.48,9.09,35.87,18.36,10.11,24.19,24.19,19.25,25.97,69.04,26.96,19.07,16.35,11.34,11.57,22.6,20.77,20.3,18.08,22.49,13.04,13.35,42.95,22.62,31.14,10.81,13.69,26.91,25.81,17.61,14.26,39.84,19.7,63.53,16.88,33.54,10.92,28.34,33.23,36.94,16.46,34.53,21.63,13.61,28.87,26.59,17.11,17.27,12.46,25.36,84.38,15.88,15.88,25.21,20.77,16.88,19.38,34.12,22.96,19.75,23.14,32.57,33.23,15.83,13.71,14.76,28.53,14.79,31.35,22.52,17.58,20.61,26.62,35.63,34.74,17.63,26.62,21.5,20.04,10.87,21.11,30.85,17.27,15.26,45.74,26.62,13.11,18.42,36.28,19.02,26.78,54.91,40.2,39.0,19.12,7.47,20.92,18.08,35.87,24.16,10.42,14.58,16.82,19.98,19.64,15.02,24.92,23.2,13.11,16.85,9.67,11.86,52.56,35.74,11.76,24.76,20.85,14.47,23.95,19.49,19.91,27.25,32.0,16.09,14.97,65.99,40.18,10.48,16.8,15.73,18.52,14.65,37.2,50.05,23.3,70.64,23.54,27.61,13.71,31.48,6.92,16.9,23.2,15.6,71.21,32.39,33.46,14.6,24.4,16.17,11.68,33.96,18.42,13.14,12.62,14.6,21.34,17.27,18.86,23.56,21.19,58.38,33.67,27.35,26.07,64.21,19.12,30.85,28.5,50.29,33.54,24.22,16.04,16.43,17.11,7.18,50.1,54.47,38.24,50.7,39.78,68.7,31.06,55.12,25.7,37.46,8.57,15.75,29.54,8.07,8.36,22.26,9.06,16.48,56.53,40.07,32.13,61.62,20.9,30.51,12.51,53.81,25.03,51.98,25.21,33.25,38.77,66.64,41.98,24.01,24.35,16.51,42.45,32.05,50.94,38.14,18.55,19.28,18.73,25.03,33.25,41.17,22.28,50.81,11.81,20.45,15.26,15.99,15.7,17.32,144.88,37.88,31.32,32.84,53.11],[6.35,9.67,14.5,26.17,10.81,16.51,61.05,17.35,17.4,20.58,17.63,12.23,34.77,31.43,38.16,18.57,13.95,23.56,30.38,34.72,24.89,14.68,20.56,22.57,22.67,39.94,23.61,35.13,21.86,32.29,17.63,15.73,15.8,10.74,21.21,48.17,49.11,19.51,38.14,18.31,25.89,16.17,8.54,23.48,23.77,8.88,26.25,9.3,55.61,21.73,13.48,27.53,15.28,10.14,39.97,17.08,14.76,8.72,17.29,8.07,42.21,17.16,11.05,42.27,25.0,28.26,17.14,17.11,18.36,12.15,14.89,23.43,45.61,13.24,41.82,11.02,31.32,31.45,32.91,21.45,46.26,11.02,24.32,38.56,18.76,25.52,16.51,10.92,13.84,26.1,29.47,25.05,32.1,12.04,13.82,13.58,30.72,14.32,24.48,20.11,21.66,17.58,56.69,22.75,20.85,28.08,17.5,13.9,11.7,31.84,18.21,43.83,22.13,22.52,14.86,25.18,29.1,41.53,38.82,27.06,13.82,17.79,14.39,19.15,25.1,20.72,14.39,13.37,20.04,18.0,8.54,7.26,19.2,21.89,40.36,27.77,14.63,10.45,12.88,31.03,9.72,23.38,21.86,33.18,27.27,28.29,32.78,14.86,18.6,7.47,22.33,51.44,42.53,94.59,25.6,40.88,16.3,8.1,33.15,22.23,20.66,17.4,13.35,32.81,27.79,16.61,38.45,19.23,17.82,32.57,15.49,19.51,24.19,22.0,23.38,24.87,14.58,25.18,41.67,35.47,30.46,11.73,38.56,16.85,36.49,33.7,29.49,26.91,12.77,13.45,35.58,17.03,28.71,16.74,77.45,8.99,11.68,27.77,41.12,21.6],[41.17,22.54,38.37,20.87,21.92,51.91,37.07,15.26,21.29,22.75,89.1,101.36,23.2,19.36,36.57,19.17,29.49,34.51,56.42,22.96,13.4,23.09,81.68,51.33,80.95,16.2,14.89,11.0,31.16,13.4,21.08,29.88,24.45,52.4,34.12,38.01,19.7,22.49,17.32,14.16,15.05,18.23,75.57,13.51,11.81,48.74,34.87,21.0,14.47,11.39,24.4,13.9,8.83,21.37,12.3,27.56,33.2,28.19,32.03,40.52,15.88,30.09,22.73,35.53,23.85,32.05,8.59,5.64,33.8,9.33,12.67,17.89,26.62,20.56,39.52,27.98,56.45,44.83,25.68,15.12,30.54,15.49,32.71,23.43,24.08,17.27,18.99,22.54,32.44,38.84,40.25,77.77,33.7,44.07,35.29,9.82,36.7,18.52,12.43,35.29,23.43,93.23,25.31,32.6,22.8,9.46,14.55,21.55,22.15,13.77,12.49,22.96,39.94,25.55,27.4,19.75,19.25,11.18,35.24,9.09,9.3,28.55,23.72,22.05,18.99,11.55,52.14,35.11,26.2,11.68,28.68,8.49,12.75,15.23,50.47,38.82,19.12,7.0,20.19,33.88,43.1,25.39,23.8,24.79,11.31,25.18,14.5,12.8,14.58,28.68,11.21,20.74,43.44,22.15,30.64,6.87,34.01,8.75,13.48,16.38,15.44,35.16,42.03,15.36,17.37,20.27,11.13,11.18,11.86,24.79,54.2,23.3,33.62,20.77,23.85,58.1],[30.75,82.68,74.58,42.03,63.56,114.65,22.99,35.74,12.75,12.8,33.49,76.41,38.79,34.72,42.74,22.8,42.53,43.13,41.43,32.31,19.15,26.44,27.59,23.17,15.36,18.0,26.33,19.96,21.21,10.34,27.9,50.63,40.23,17.74,18.89,24.58,14.97,19.64,17.14,26.7,74.89,31.71,20.24,57.52,41.69,34.25,23.17,71.13,47.49,15.23,32.31,38.35,23.3,61.78,16.64,13.32,35.84,15.49,33.62,36.34,18.21,14.76,15.28,59.06,21.0,33.12,26.23,40.57,24.01,28.81,27.45,44.07,28.68,11.05,32.47,15.33,27.87,19.36,13.56,20.22,27.43,37.83,25.76,20.4,18.65,12.8,19.04,15.73,53.52,27.48,27.61,17.5,26.51,33.99,57.97,22.0,30.85,12.07,12.72,19.02,26.57,10.71,24.63,27.43,25.7,69.04,47.62,29.96,18.0,75.6,20.72,26.02,21.24,34.53,30.77,45.69,34.17,15.88,29.44,15.49],[19.83,22.02,12.17,12.8,19.17,43.02,24.01,17.45,13.45,19.04,11.65,29.05,11.65,26.15,11.68,11.73,21.19,8.67,50.23,21.63,16.27,24.69,15.83,14.68,48.38,15.6,20.32,17.68,11.31,22.26,39.55,21.81,20.77,29.15,37.69,16.88,24.61,34.12,23.88,21.97,14.76,25.16,23.72,31.82,13.09,25.86,14.05,19.51,11.42,36.41,26.91,30.01,26.83,38.84,9.67,26.54,26.28,17.71,42.76,39.44,33.23,15.49,27.01,15.15,32.18,10.68,8.54,29.83,19.93,71.03,57.39,13.04,30.75,18.34,12.88,20.4,23.93,26.28,15.49,43.26,26.98,17.61,23.04,31.22,12.36,12.17,17.11,18.23,25.97,23.09,60.73,33.91,67.19,42.29,22.78,14.58,17.58,21.94,75.18,21.63,19.62,20.9,10.53,21.55,13.51,15.75,19.02,36.1,32.37,19.23,43.62,32.21,19.91,31.61,14.45,20.98,14.03,13.69,38.27,16.09,30.33,31.16,18.89,43.36,38.19,13.95,13.35,55.25,11.13,53.92,12.07,15.75,31.9,15.18,23.43,38.53,28.84,38.06,30.48,29.07,47.49,23.67,38.22,53.66,47.28,40.07,16.46,49.92,12.56,37.25,55.2,37.22,28.24,30.04,14.42,24.56,47.91,47.91,26.67,24.53,23.88,12.8,9.77,35.97,34.82],[13.82,15.18,23.35,16.35,26.64,11.49,13.17,14.76,19.28,15.05,25.97,17.95,13.71,9.61,7.73,12.04,21.81,17.89,22.41,26.93,10.89,46.68,17.71,14.68,11.55,26.75,43.6,30.93,20.72,29.13,19.1,30.09,31.66,16.38,23.25,19.64,55.43,62.07,20.24,33.7,15.83,30.43,48.85,35.45,15.28,27.66,20.9,29.31,23.95,36.39,27.3,15.93,47.93,41.14,11.62,17.08,41.93,20.04,29.1,12.28,12.17,11.73,21.76,20.35,16.43,23.28,12.67,8.07,37.38,23.2,46.5,26.23,45.22,36.31,32.18,15.12,25.44,8.62,20.82,15.96,18.39,26.44,11.57,12.88,42.32,30.09,33.2,27.27,45.22,14.76,8.67,16.61,21.0,24.89,28.26,32.94,15.18,13.22,13.17,23.54,29.52,15.36,21.86,11.81,24.42,13.53,8.07,9.93,10.27,10.21,11.21,5.93,21.39,7.97,17.14,19.98,15.88,7.47,8.49,6.01,8.31,4.96,24.79,14.99,12.28,29.39,28.16,22.18,26.62,15.67,33.8,12.85,21.71,28.26,15.26,24.22,38.79,32.26,14.89,11.99,34.19,28.63,53.68,20.43,26.51,40.02,19.15,25.78,22.91,54.91,13.32,19.2,19.04,19.88,55.3,42.95,79.83,47.8,13.66,60.0,26.67,23.3,37.09,23.98,36.18,12.33,29.1,20.72,56.16,13.64,32.86,34.9,24.27,8.31,21.05,36.57,14.21,13.98,36.28,21.19,13.04,11.55,7.29,15.7,27.4,11.83,45.3,34.35,38.16,22.0,8.62,12.43,17.97,20.01,33.38,14.08,16.22,14.86,8.57,19.44,19.77,9.77,32.42,11.6,18.7,19.1],[31.97,31.11,12.36,17.76,16.35,14.84,28.16,8.99,17.16,24.08,34.95,26.57,20.53,11.91,17.16,31.9,27.38,8.46,31.84,17.16,9.93,16.04,14.47,29.44,22.07,33.96,18.31,20.48,25.05,21.86,25.44,25.65,16.74,30.98,20.11,37.88,25.94,19.49,23.2,17.27,61.96,46.0,25.86,31.82,18.86,17.01,23.9,52.09,23.69,18.49,12.28,21.71,24.37,26.83,14.47,15.33,13.9,22.73,11.96,41.87,15.96,19.54,26.54,12.72,41.82,40.12,22.99,12.96,18.16,37.43,16.14,66.72,18.7,30.35,32.76],[15.12,20.14,45.58,30.43,32.57,22.8,32.57,23.2,20.35,15.41,22.0,30.98,33.54,21.97,16.48,29.57,26.67,32.42,39.34,27.69,22.62,15.78,35.08,50.86,34.01,26.12,17.08,38.37,32.5,33.72,42.06,20.06,18.55,45.74,24.14,52.01,44.9,32.34,22.44,49.95,24.58,35.55,15.46,21.42,19.25,21.42,23.77,26.72,21.26,24.42,19.1,36.23,18.78,36.75,25.08,18.44,13.11,18.23,30.43,34.51,31.82,17.06,23.43,25.55,22.6,26.54,28.89,22.54,50.34,40.62,39.13,34.8,19.93,54.2,20.98,15.31,27.06,16.48,29.26,29.7,37.3,14.16,37.67,24.03,26.83,23.01,13.14,26.07,17.42,22.83,31.37,27.95,24.32,40.52,26.78,17.08,21.63,24.82,36.83,47.28,32.03,23.04,21.58,20.11,24.53,18.73,41.82,27.45,28.68,21.84,54.05,31.53,27.95,31.24,21.21,22.96,37.41,40.67,12.23,62.98,25.73,37.12,23.04,28.76,16.25,23.59,28.16,23.22,21.03],[12.43,44.8,37.04,35.84,34.06,18.42,20.27,11.18,23.67,22.39,25.78,36.75,25.13,15.54,49.4,24.11,17.61,44.77,25.26,26.46,35.5,74.55,41.4,77.71,17.68,24.89,43.91,31.9,16.07,23.25,36.13,17.16,13.77,23.43,39.26,21.84,31.82,21.34,23.54,15.12,26.17,17.55,17.01,16.35,26.67,23.59,19.12,10.53,32.71,15.36,20.11,15.62,21.13,27.56,22.88,8.05,26.7,13.69,35.89,23.17,51.75,15.02,7.6,19.1,15.93,32.84,19.46,27.92,11.18,17.95,46.68,18.55,25.05,27.09,21.81,16.74,17.87,29.99,8.15,18.08,21.32,9.69,33.44,23.67,13.37,8.18,23.67,36.44,18.63,42.55,12.38,17.71,33.59,31.16,12.3,10.84,12.07,34.64,20.09,17.24,16.51,23.8,15.44,38.48,11.6,19.72,32.91,31.92,18.63],[17.19,16.17,36.52,9.3,28.92,24.5,47.7,28.63,17.68,23.09,15.07,44.41,25.16,24.63,22.73,22.05,49.95,30.22,16.12,30.56,16.61,8.41,21.55,18.78,12.83,16.33,34.46,31.24,33.91,13.87,45.22,21.11,17.79,21.79,19.67,27.38,15.62,23.69,14.32,42.0,14.63,25.31,27.12,27.74,21.21,25.52,22.57,28.92,31.43,19.33,16.64,31.45,27.27,27.69,12.46,27.19,27.27,25.55,18.29,25.91,35.66,30.12,25.73,25.31,15.23,24.03,9.53,15.91,23.28,22.94,22.99,17.71,23.28,14.55,9.14,21.13,19.57,37.77,13.53,13.01,39.0,20.92,11.86,36.91,17.92,18.34,28.84,42.32,26.38,16.61,23.64,22.15,24.76,24.56,11.57,9.9,17.11,14.65,12.41,16.64,33.2,18.89,20.35,10.34,12.59,11.96,18.16,28.0,32.5,22.15,15.46,15.88,32.08,22.05,8.67,29.34,10.29,15.36,19.38,23.64,11.99,10.21,24.03],[11.68,14.05,21.32,19.04,21.89,38.09,13.48,19.8,22.13,22.2,15.6,11.81,18.57,12.93,26.15,12.7,31.27,25.84,26.07,14.37,51.04,15.07,31.09,27.66,30.38,23.17,12.85,19.46,14.68,21.47,45.27,29.49,24.01,14.42,14.08,44.12,36.81,39.73,14.24,62.3,24.89,22.96,35.76,13.09,15.15,31.43,24.27,22.6,14.58,27.64,34.66,15.26,25.0,18.1,10.66,22.75,9.72,12.88,22.41,10.55,9.17,25.55,24.27,21.29,33.85,29.99,38.48,34.59,21.94,26.25,9.04,22.86,13.37,12.09,17.08,47.12,26.96,23.35,19.23,41.22,26.49,16.48,23.67,15.65,12.33,15.86,23.12,31.27,12.41,29.49,12.54,13.51,14.73,16.64,8.52,26.17,15.39,11.55,18.7,58.8,28.84,20.43,9.46,10.37,14.55,10.42,18.44,23.67,35.74,28.84,32.42],[30.98,36.44,33.44,48.72,41.14,27.9,23.12,20.43,8.23,26.17,43.89,13.35,27.9,34.04,17.89,50.42,55.51,38.14,20.32,10.87,21.86,31.27,26.15,9.61,37.22,20.53,25.94,18.55,10.71,53.63,63.9,19.75,44.98,16.54,28.84,32.29,24.82,27.92,13.43,18.26,18.47,19.07,21.29],[21.71,13.82,20.79,23.22,27.72,36.55,15.6,17.55,53.58,46.47,45.09,24.63,25.31,13.3,7.08,14.18,26.28,25.84,16.43,5.72,57.65,60.63,31.9,22.26,17.48,19.75,26.88,13.4,12.09,18.0,33.75,31.27,14.81,23.14,15.23,24.01,39.16,19.23,17.71,12.96,12.09,20.79,12.7,40.86,21.52,18.94,15.2,15.36,10.21,18.39,13.66,25.97],[12.3,6.79,8.8,10.63,8.07,10.84,10.29,13.09,9.06,7.24,9.12,6.27,7.68,11.76,11.94,11.68,6.66,8.41,16.82,9.3,16.3,23.88,7.63,10.08,9.9,11.55,12.3,16.2,9.64,7.37,10.11,9.48,12.12,6.71,7.89,8.99,6.4,5.15,14.03,5.75,6.45,11.34,7.52,12.49,8.54,6.14,11.47,10.16,11.62,7.58,7.03,11.26,8.83,11.05,8.91,13.4,6.37,11.76,9.48,9.61,8.25,7.29,7.86,7.5,16.04,16.64,7.55,10.08,5.15,7.47,12.07,7.44,5.51,16.56,7.68,6.69,7.63,7.68,10.76,6.69,8.39,7.97,5.3,9.14,19.46,6.64,10.42,21.81,9.06,8.75,6.3,6.56,5.59,7.18,6.58,10.87,8.23,8.15,8.86],[16.48,31.66,10.71,11.28,11.96,9.12,18.68,12.75,15.05,19.77,23.88,22.2,15.23,36.36,13.9,8.99,9.2,12.8,7.55,12.2,11.34,18.39,16.4,14.71,22.88,28.58,30.62,30.67,13.74,27.22,23.56,18.81,30.25,12.25,41.06,32.84,15.86,22.67,14.89,14.24,19.17,7.55,21.34,19.38,15.75,8.54,10.63,19.46,19.93,11.86,14.97,11.39,13.84,12.93,9.82,16.8,9.2,11.89,22.33,14.08,34.09,19.51,26.17,22.15,21.92,25.65,20.24,14.79,32.97,26.91,28.58,37.75,17.61,15.07,40.62,38.82,22.75,23.54,24.76,40.39,35.32,9.38,11.6,16.98,12.15,30.09,11.89,16.07,37.09,22.41,20.17,39.68,25.16,25.1,16.95,21.42,24.89,9.98,12.02,12.8,24.29,18.55,21.92,13.19,17.76,41.38,15.7,17.42,7.89,25.0,21.55,30.82,13.01,19.33,25.86,23.3,8.62,20.01,29.54,13.77,10.4,11.52,14.84,20.19,24.35,15.8,17.5,12.93],[24.29,15.67,11.13,24.97,33.7,16.8,37.07,14.97,21.71,10.61,13.06,34.8,18.02,7.24,24.74,21.37,14.86,37.41,15.36,22.52,15.2,9.09,39.18,11.42,13.9,9.8,12.7,17.29,13.04,15.46,16.51,11.23,24.16,16.64,14.45,15.23,12.33,7.97,20.98,16.2,10.79,12.8,9.14,25.03,13.56,22.91,23.59,12.62,13.35,4.73,28.55,11.31,19.54,15.39,17.27,13.27,26.15,19.3,27.9,32.21,22.86,20.01,14.65,23.38,10.95,13.4,21.0,18.78,25.89,26.07,18.47,11.36,16.54,11.08,11.18,14.45,12.49,13.82,13.48,16.67,10.79,16.04,14.39,10.74,15.39,16.8,11.62,20.38,15.52,9.38,13.19,14.76,29.91,24.71,21.19,14.05,37.07,24.03,24.29,22.36,28.73,22.15,10.63,17.68,13.71,12.88,22.99,10.61,8.05,22.07,25.47],[11.21,20.82,3.27,6.14,17.79,11.83,10.34,7.81,9.53,23.41,7.6,10.58,12.98,28.68,25.23,24.08,32.34,29.73,54.6,15.49,42.79,44.28,9.06,20.56,8.44,23.98,15.44,28.94,41.2,11.49,45.69,17.29,12.49,14.32,14.92,17.76,22.0,10.34,21.39,23.17,9.64,23.67,12.04,11.44,30.46,16.46,14.16,16.61,33.59,39.44,15.31,20.3,14.45,15.39,24.22,25.52,35.63,20.79,14.84,14.26,12.07,14.63,28.32,10.66,16.54,12.15,6.74,6.24,14.13,12.64,17.01,8.05,8.93,27.77,8.52,13.64,38.53,11.73,23.51,14.71,12.67,50.81,9.85,11.39,2.43,29.1,15.1,15.18,3.58,14.5,5.93,3.66,13.95,22.31,13.71,25.6,9.25,17.63,11.55,7.78,13.4,23.95,6.71,15.49,21.45,15.05,11.86,6.16,24.37,40.75],[13.77,5.83,7.08,16.74,16.2,8.07,14.92,14.26,12.41,15.07,14.32,9.35,8.62,8.46,9.48,10.68,21.26,12.59,10.97,12.41,29.96,7.84,22.57,12.36,11.96,32.99,12.12,13.71,12.51,10.19,13.37,9.14,9.61,10.5,21.81,14.26,17.92,13.92,13.66,11.13,11.62,13.87,19.77,14.39,16.8,19.12,12.54,19.2,19.93,10.97,13.14,9.8,9.22,14.58,11.47,11.21,4.52,44.41,12.04,16.38,15.46,12.8,10.4,16.35,14.13,8.91,11.7,18.94,12.75,8.33,12.09,9.38,24.48,10.48,32.86,17.63,11.34,7.63,8.88,5.77,8.83,9.22,11.73,7.78,6.37,6.82,9.69,4.65,4.02,11.68,4.86,7.84,11.78,4.83,6.9,10.87,13.17,14.71],[1.75,8.91,5.54,9.33,4.49,9.64,8.59,10.11,4.23,30.09,7.34,13.37,5.33,15.8,11.91,10.45,4.75,12.49,3.81,6.35,8.07,13.11,4.6,5.64,3.87,4.44,4.7,2.61,4.75,2.3,4.18,4.44,3.45,2.98,5.33,5.12,6.16,8.59,24.27,39.99,3.13,8.18,7.08,8.28,13.01,9.64,26.15,12.49,4.65,9.69,4.96,12.43,28.42,10.11,13.58,6.92,7.37,19.2,8.28,6.77,16.74,8.91,22.36,10.32,15.62,13.22,5.98,6.66,14.92,11.96,39.44,24.42,20.92,15.33,13.48,18.0,21.13,9.53,5.02,22.62,16.35,12.28,6.74,9.93,10.16,27.25,28.16,14.39,11.89,20.43,9.25,6.9,4.94,21.37,4.31,17.37,33.88,14.0,14.21,8.28,9.98,9.17,6.61,11.13,8.23,4.52,7.5,14.32,17.21,9.22,10.14,11.86,21.55,17.95,11.44,12.88,15.44,5.9,5.75,13.19,18.39,6.53,19.57,15.02,8.88,9.95,12.93,16.64,11.08,21.03,26.15,13.3,13.37,26.98,14.79],[10.19,13.09,20.77,11.0,19.59,12.04,19.33,9.77,12.88,11.96,12.93,11.91,16.3,9.12,9.43,8.8,14.37,12.98,14.58,7.13,9.27,15.39,7.03,24.14,18.78,10.84,8.31,13.92,17.4,22.78,14.03,11.52,12.72,11.39,18.08,22.62,10.14,8.78,27.87,14.08,14.65,17.58,18.1,25.57,17.4,22.05,23.59,12.83,10.21,13.01,12.09,12.93,8.7,11.52,9.22,13.35,10.71,9.51,11.39,10.42,10.27,11.28,10.76,13.45,12.72,11.34,12.43,11.81,11.05,7.78,9.61,11.81,28.08,21.19,8.7,12.3,16.48,19.3,20.22,13.56,18.31,15.41,13.79,26.25,8.78,9.35,26.57,11.57,14.13,22.44,18.83,13.58,9.69,15.33,10.53,14.08,18.6,13.51,13.87,7.63,14.08,9.4,15.52,22.96,12.43,7.5,8.2,16.72,17.4,8.72,8.46,12.33],[13.51,29.73,13.56,14.08,113.21,15.7,13.87,14.68,18.55,11.36,27.19,14.65,14.16,21.29,33.33,14.24,27.77,47.28,21.34,7.18,6.14,19.75,35.94,14.32,40.54,23.9,16.72,31.27,11.78,24.42,29.81,13.84,17.4,30.41,26.91,38.53,26.1,15.54,14.18,49.01,23.28,12.62,5.75,15.36,25.81,27.06,20.32,19.38,12.98,12.28,13.24,42.0,22.6,26.28,21.97,16.98,13.64,27.01,13.48,21.42,18.31,26.46,19.38,11.62,30.93,16.09,22.49,8.83,11.78,20.17,18.76,38.11,36.1,10.79,18.34,10.63,18.83,64.05],[6.19,7.89,7.13,7.68,7.65,14.21,12.41,9.14,8.1,7.11,9.27,11.31,9.43,34.48,8.78,7.89,13.3,21.84,23.69,14.18,19.12,5.96,16.85,38.09,11.94,7.55,43.96,15.02,13.22,11.15,8.91,15.49,37.62,10.92,13.9,6.37,10.4,10.74,6.79,7.99,13.64,8.8,8.78,28.06,11.89,8.75,10.58,6.37,8.57,20.58,14.94,13.69,13.09,6.09,10.14,9.09,9.22,7.18,7.08,13.58,10.03,14.13,13.9,12.28,12.28,13.3,7.44,13.79,7.92,14.76,22.75,11.94,8.54,10.16,12.93,11.34,15.93,13.24,8.07,14.24,6.95,13.17,15.83,11.08,8.86,7.89,8.59,14.32,9.38,8.39,22.86,9.2,8.15,7.26,9.67,8.78,7.21,6.16,11.31,25.21,14.45,10.0,17.79,8.59,11.26,14.58,10.76,6.43,27.92,15.28,13.24,6.56,12.41,11.21,12.54,13.04,20.24,10.27],[30.17,36.73,24.79,31.43,13.95,29.23,12.02,15.67,12.36,13.04,29.54,21.97,22.05,18.96,34.35,20.66,13.84,13.79,25.97,11.42,55.28,32.91,19.46,13.45,18.86,36.94,23.8,22.8,18.73,18.21,121.31,25.36,58.51,23.17,80.61,19.54,34.66,19.8,47.44,39.86,28.29,9.77,62.25,14.86,41.8,21.79,25.47,14.94,10.84,21.86,28.71,16.04,24.74,30.15,58.02,11.21,18.13,61.73,22.65,37.09,111.49,55.43,40.25,29.73],[11.1,29.02,35.66,23.64,12.62,13.48,23.9,21.42,12.43,24.87,9.9,13.04,12.64,10.14,17.58,14.03,30.56,29.28,20.27,29.6,25.31,13.64,13.64,10.27,12.96,12.33,11.05,7.16,13.79,10.42,15.83,17.68,8.96,18.94,11.55,13.24,18.02,10.37,12.02,18.13,11.49,19.41,9.72,16.8,16.07,7.03,12.62,19.17,15.02,12.38,7.5,8.96,21.13,13.58,14.39,8.25,15.31,12.83,17.71,18.39,13.56,12.56,14.24,8.02,14.08,8.49,12.46,23.38,8.57,26.49,10.97,9.93,12.88,17.4,13.79,7.81,16.09],[8.75,5.28,8.12,15.31,13.71,12.64,11.73,10.21,7.13,9.38,7.16,9.64,10.0,9.35,12.62,10.92,10.34,10.32,9.09,12.54,13.4,14.39,6.06,13.64,7.94,9.14,10.19,12.85,10.45,7.16,9.85,7.65,9.67,9.74,11.42,10.16,7.08,7.58,8.33,8.96,15.2,7.94,11.73,12.64,9.22,4.99,8.54,4.7,29.96,13.61,17.92,15.23,8.65,10.81,7.34,5.59,9.06,7.21,9.95,5.36,13.74,8.18,17.82,6.5,9.82,5.69,11.02,7.97,5.64,6.71,8.28,6.24,6.61,9.98,7.81,8.02,9.4,5.88,5.88,5.04,6.92,11.49,8.12,7.44,8.57,12.33,5.46,7.86,7.55,6.82,6.09,7.55,10.4,5.88,5.62,5.56,9.09,7.13,8.54,5.88,4.78,9.01,11.05,8.39,5.69,7.5,6.06,4.96,11.68,5.3,7.86,6.48,7.31,6.79,5.96,10.29,6.5,10.92,8.99,6.4,10.63,8.88,4.7,7.18,5.46,4.99,11.49,8.2,6.95,6.53,4.7,8.41,6.87,5.62,9.25,12.36,7.13,4.68,13.98,8.25,5.2,7.89,6.45,5.02,11.52,7.97,6.03,7.68,8.05,5.12,6.87,7.21,10.03,14.47,10.34,11.18,5.98,15.28,8.83,6.27,7.42,6.09,5.3,12.56,6.3,13.09,10.21,7.73,7.68,7.44,6.24,6.37,11.34,10.37,8.83,6.19,6.77,6.01,5.41,11.81,7.42,6.19,11.89,7.73,10.87,13.4,12.8,7.78,13.04,11.15,7.97,8.05,5.41,7.03,6.45,6.37,13.87,6.82,7.92,6.82,8.05,8.1,6.35,5.25,6.56,8.67,9.4,10.48,6.16,5.59,7.13,6.4,9.4,6.95,7.63,10.87,6.09,5.41,4.83,6.01,8.46,6.4,6.82,8.49,8.33,7.42,27.56],[12.12,5.69,11.52,13.3,12.38,8.88,24.22,17.35,11.52,29.07,15.62,24.11,14.13,20.04,17.16,24.69,12.02,31.74,37.98,14.13,18.29,15.46,15.18,25.1,15.62,11.42,8.91,17.27,15.12,12.41,7.42,16.93,16.04,20.82,14.71,38.71,26.67,12.64,18.42,49.45,14.13,20.53,17.03,37.07,13.82,14.55,18.89,10.63,25.21,9.87,12.83,14.86,9.93,11.91,18.94,29.6,11.91,12.15,17.68,41.12,30.93,25.5,32.21,29.75,17.5,13.66,16.38,16.8,10.42,11.49,9.33,11.55,12.46,10.68,14.39,16.48,8.75,10.92,11.15,14.45,21.13,22.8,15.65,19.3,10.21,18.55,21.39,25.94,16.72,23.56,20.11,20.82,16.48],[10.0,6.01,12.38,34.64,20.98,14.81,34.48,19.54,32.21,20.24,13.71,22.26,27.04,15.96,51.83,14.45,11.78,24.76,40.67,28.13,13.84,17.03,35.84,19.23,35.34,14.79,38.5,17.21,43.99,28.21,29.52,38.64,11.62,23.67,21.5,30.64,24.79,33.44,15.36,14.73,15.6,13.98,28.92,15.46,29.13,37.43,29.62,36.55,16.25,31.27,8.05,10.61,22.18,19.96,18.05,18.0,36.13,22.18,25.6,22.1,27.01,13.69,30.22,19.07,10.58,14.29,15.05,20.77,9.33,18.6,23.07,31.19,19.88,13.48,31.56,32.94,30.62,30.8,21.08,18.42,19.04,35.21,17.29,23.22,26.36,21.08,19.25,21.32],[10.45,15.65,16.43,13.92,16.12,13.98,21.19,26.28,10.76,50.39,10.81,24.03,19.49,23.3,12.25,15.88,31.03,14.73,13.43,21.21,14.47,21.52,23.33,26.38,41.01,15.75,23.22,17.01,28.29,7.86,26.02,20.56,28.4,16.98,13.56,15.57,9.22,19.7,20.61,34.64,25.36,14.71,14.58,12.36,27.38,31.5,29.47,16.56,17.53,22.15,21.66,22.07,23.01,11.73,14.94,13.32,13.4,28.68,7.42,17.48,19.23,16.61,30.77,20.14,14.55,10.61,19.46,20.24,16.77],[9.74,4.36,11.15,16.9,14.13,15.44,11.83,34.22,53.5,21.73,11.47,7.5,17.06,9.53,13.51,17.74,8.15,10.55,14.89,18.65,28.6,18.05,22.47,28.6,23.64,10.16,21.5,43.78,23.59,26.25,11.62,13.74,30.3,11.26,12.46,21.42,20.61,24.03,33.28,32.86,18.6,16.72,19.44,12.62,15.1,26.88,23.67,39.37,13.4,21.66,13.11,14.58,21.08,31.01,13.04,21.05,11.78,24.24,9.06,14.94],[7.94,4.94,5.69,11.81,12.38,21.68,19.02,11.02,9.72,33.83,16.2,21.52,15.91,29.44,33.31,28.89,18.55,15.8,13.24,28.42,22.23,16.64,18.34,9.72,19.77,10.16,22.7,13.53,28.32,14.86,18.6,30.72,35.4,32.99],[8.07,7.73,19.57,25.1,20.56,7.08,11.34,10.66,14.39,18.7,12.09,21.76,22.13,18.16,21.73,15.83,17.16,10.34,16.14,32.63,12.62,18.49,18.39,14.21,10.53,19.36,21.68,8.62,11.86,10.37],[16.3,11.49,7.42,36.1,36.0,42.37,19.25,10.87,23.35,24.76,7.73,14.65,29.0,13.87,12.38,13.37,21.16,16.27,39.47,26.1,18.65,19.83,19.83,17.89,15.75,21.63,14.65,25.55,16.85,20.35,25.26,24.29,30.54,13.74,50.81,22.65,62.72,18.65,14.34,22.73,8.59,4.68,16.8,9.9,13.56,6.5,12.59,13.69,39.34,79.88,40.8,24.4,82.13,9.74,50.65,18.47,14.26,16.64,29.1,24.03,9.59,11.52,16.67,7.0,9.17,13.09,14.24,14.63,17.06,9.48,13.3,26.67,20.72],[13.14,15.52,29.83,14.79,12.8,17.19,15.96,14.65,29.78,15.15,12.07,24.29,24.22,28.73,23.12,22.23,10.74,19.07,22.52,11.68,19.51,24.69,24.45,19.28,11.31,10.87,13.82,18.18,8.49,11.31,37.49,17.74,40.78,23.01,10.55,15.15,40.07,13.9,24.08,16.88,17.08,24.53,51.1,18.18,15.23,28.87,15.88,7.47,8.54,19.88,11.7,13.19,11.02,19.04],[28.19,17.61,25.73,12.83,19.23,16.48,18.44,32.16,23.38,29.23,39.68,37.69,29.15,19.75,13.74,7.86,5.41,37.64,6.03,5.85,4.99,23.93,5.28,16.59,25.55,9.51,28.03,25.39,20.48,13.35,20.17,26.02,16.77,15.67,16.56,19.04,34.12,13.56,25.26,33.1,23.69,24.19,31.48,31.97,35.89],[4.65,4.86,5.88,6.3,6.58,13.87,9.17,15.23,15.65,13.04,19.59,17.35,11.91,21.97,20.22,10.11,7.97,20.43,16.43,13.01,10.24,10.5,19.57,9.77,10.14,9.93,8.12,20.14,11.94,15.75,12.56,9.59,13.56,14.76,10.48,16.54,11.99,10.95,9.74,20.19,10.66,8.2,10.55,8.8,11.83,12.46,30.75,9.9,12.62,12.41,12.09,16.54,14.0,14.81,11.7,11.08,10.29,8.02,7.44,19.38,9.38,12.28,8.88,8.31,17.21,14.47,14.13,10.4,14.89,11.34,16.95,9.72,8.65,10.63,10.5,12.36,14.92,12.46,14.11,14.76,18.1,17.35,12.59],[6.95,3.45,3.37,4.26,8.23,9.95,7.05,9.87,6.03,7.94,14.29,4.86,5.72,6.64,10.89,12.41,7.16,6.9,11.86,7.86,10.37,9.87,9.46,8.31,5.72,7.03,10.55,10.63,6.5,16.54,11.62,8.8,9.17,7.63,15.18,13.17,9.4,8.8,8.23,6.24,9.22,7.18,6.71,6.3,8.86,7.94,9.38,7.0,9.14,10.0,10.53,7.63,11.28,7.0,8.2,7.52,8.62,5.3,8.02,7.26,7.21,8.49,7.99,10.0,7.34,9.98,10.08,8.18,12.67,8.18,6.11,7.94,9.01,7.52,8.75,7.42,6.71,5.98,6.77,7.18,6.61,6.58,7.52,8.78,8.1,7.78,7.65,6.69,5.54,5.09,9.04,6.11,6.92,7.13,5.77,6.3,8.44,8.7,8.07,5.36,5.93,35.79,9.22,8.99,10.5,8.72,5.77,6.19,7.21,5.43,6.97,8.57,19.12,6.95,8.18,6.48,6.56,6.14,6.4,6.27,7.34,8.1,6.22,7.86,8.2,9.51,7.39,5.59,5.49,6.69,6.53,6.53,6.24,8.05,6.56,6.43,8.57,8.05,6.3,5.56,5.62,5.64,8.65,8.44,8.46,9.2,7.6,7.68,7.81,10.16,10.14,6.77,5.46,5.28,5.07,6.11,8.23,14.29,6.84,6.27,5.88,7.92,5.69,10.66,9.87,6.4,6.14,8.54,7.11,6.27,7.39,7.11,7.29,5.59,5.8,6.24,10.32,5.88,5.54,7.97,5.41,7.08],[7.97,7.84,12.67,19.33,12.07,16.51,11.49,16.93,11.13,11.6,9.06,10.0,11.7,8.65,16.46,9.48,13.32,10.89,9.33,9.35,7.73,25.16,23.33,40.96,11.42,38.64,20.64,14.16,16.48,14.47,7.76,15.02,9.95,13.77,16.9,11.42,10.76,6.48,9.38,8.46,17.06,9.85,19.62,19.41,12.36,11.28,10.21,10.89,9.25,9.09,11.94,7.68,7.11,8.96,8.88,7.21,8.75,8.62,16.77,15.1,14.26,12.59,8.44,9.25,13.92,9.93,4.75,5.85,11.0,14.79,13.71,10.0,7.42,8.49,15.86,11.86,7.03,9.51,9.35,6.97,5.96,8.1,6.5,5.88,12.77,13.19,6.48,8.72],[8.57,15.86,45.69,19.62,30.64,48.77,43.52,51.96,33.07,24.37,10.68,6.87,11.02,5.09,24.92,21.03,15.65,21.71,12.72,26.41,39.73,26.72,38.56,18.83,11.23,14.24,13.51,9.17,25.78,10.71,11.13,19.49,13.61,14.13,17.92,17.66,15.33,46.47,11.96,11.81,28.26,34.51,17.19,14.32,21.26,18.42,28.84,12.2,28.5,14.16,21.86,22.94,28.81,28.37,33.15,18.94,11.91,13.98,15.6,19.04,21.21,11.76,17.35,15.8,17.45,8.12,25.39,26.59,31.03,11.21,55.38,14.52,28.11,22.0,25.47],[4.73,8.07,14.5,13.56,28.26,13.17,33.15,22.7,16.07,16.61,19.88,18.0,16.69,8.62,17.24,21.26,15.05,19.46,8.91,19.04,28.97,19.91,9.56,10.08,27.01,21.11,15.86,43.76,30.56,14.86,15.54,9.67,15.15,36.31,27.32,11.31,31.24,10.84,14.37,32.6,14.18,14.6,33.38,19.85,12.9,18.05,29.73,16.43,16.48,23.12,14.39,15.05,12.83,5.64,14.03,30.01,13.82,17.97,13.14,18.68,22.23,15.1,8.86,28.4,17.5,21.21,42.5,18.16,12.62,12.9,10.66,7.89,9.3,20.92,13.66,13.35,17.61,35.76,10.11,14.16,9.46,28.32,25.34,16.2,21.21],[5.09,7.18,11.1,9.9,30.88,30.25,9.35,9.77,18.0,29.7,30.54,26.91,13.14,34.85,27.45,27.48,23.88,7.84,11.0,18.08,25.29,27.82,15.86,15.41,36.91,12.41,16.14,24.97,25.86,31.03,20.82,7.08,16.22,19.75,15.73,18.78,23.93,15.6,33.85,34.35,15.33,15.28,18.21,42.5,21.71,16.2,33.93,15.2,16.12,50.73,18.42,18.29,25.08,22.54],[4.83,15.18,12.09,8.86,27.3,20.43,35.66,26.59,19.02,19.57,25.55,18.16,49.53,38.61,46.45,26.23,16.77,27.64,14.63,21.58,25.34,32.18,34.3,23.88,12.67,17.89,22.8,14.76,21.03,15.15,18.29,7.65,17.95,9.14,12.46,24.79,13.06,16.04,10.32,21.81,13.4,19.41,9.38,24.66,38.16,21.97,26.28,40.8,22.6,18.83,30.82,36.55,16.72],[5.51,4.55,9.61,10.76,11.6,8.07,10.4,11.57,15.1,11.99,19.98,12.83,23.12,9.61,12.83,10.68,15.18,9.43,18.55,16.46,11.83,24.03,41.51,24.71,12.36,15.6,7.89,10.71,19.17,13.37,11.18,32.24,26.98,9.27,16.4,13.14,12.9,15.91,12.51,13.22,11.68,11.7,14.16,9.22,17.79,15.07,13.09,16.14,14.13,9.82,17.27,10.14,17.48,13.01,12.93,8.33,9.22,14.71,14.24,14.52,16.77,11.39,24.19,13.92,12.93,13.45,13.17,11.44,7.81,8.72,23.43,12.54,9.69,9.35,7.37,8.59,12.51,10.74,9.98,13.69,9.46,10.11,10.76,15.65,19.36,13.79,14.71,13.17,11.96],[4.75,4.6,17.11,5.62,10.32,9.46,13.37,16.51,6.35,9.72,9.72,8.67,10.95,9.25,12.12,11.44,13.3,14.24,15.15,9.43,6.69,15.12,8.52,10.19,8.88,7.31,6.97,7.73,13.01,11.86,12.46,8.23,11.76,9.72,9.4,11.23,15.41,8.93,12.09,8.28,12.59,11.47,6.27,4.65,5.75,4.73,8.88,8.91,7.81,9.17,7.6,6.64,11.05,7.86,7.29,11.86,8.65,9.74,7.97],[4.39,7.71,8.28,13.51,24.16,14.5,5.64,16.48,14.24,24.5,12.9,17.19,17.92,15.23,15.49,26.12,28.63,15.78,19.93,12.43,22.52,13.61,31.9,21.39,26.44,18.91,13.87,18.63,16.51,14.81,17.45,27.17,12.04,23.77,21.55,9.95,13.27],[4.88,8.57,24.89,34.01,21.73,14.5,23.95,29.88,26.2,31.63,25.63,24.71,15.88,17.79,65.93,26.36,50.36,23.2,16.12,42.29,39.44,18.13,21.26,24.4,20.35,54.15,13.11,19.91,28.92,39.78,31.16,25.31,30.04,21.86,35.63],[8.8,19.57,19.49,49.89,4.15,5.8,15.78,7.05,11.55,19.36,12.23,28.13,19.1,18.83,65.33,31.9,8.49,22.36,22.75,33.85,14.89,12.75,12.77,15.54,17.97,16.17,10.97,13.66,11.05,20.69,13.06,29.26,14.99,16.2,14.39,17.19,9.04,48.2],[6.32,16.77,5.38,24.11,26.17,37.46,9.48,10.21,12.59,27.3,37.02,30.17,12.62,19.72,36.75,34.25,32.37,24.11,9.87,26.57,12.96,13.09,12.9,19.41,54.88,35.13,36.96,15.7,77.37],[19.3,31.35,24.03,14.29,13.22,31.14,37.3,9.69,42.74,17.35,59.06,42.0,35.87,34.19,30.22,16.35,23.35,14.84],[10.61,18.18,11.28,12.12,13.92,18.47,15.99,8.72,20.09,9.2,14.68,9.82,6.87,11.99,12.9,15.75,10.03,9.9,13.3,9.9,12.85,17.32,8.02,9.17,8.78,11.81,15.6,11.23,12.12,12.23,9.2,8.86,11.55,10.45,10.84,17.71,14.86,15.65,13.37,7.84,10.95,10.34,8.46,11.15,25.91],[3.6,3.45,3.29,3.6,4.94,4.1,4.83,5.96,3.29,5.09,7.52,6.58,6.53,11.36,9.38,13.56,7.63,6.37,10.87,6.19,8.91,8.18,17.03,7.44,13.43,10.55,8.86,11.55,12.12,10.48,6.71,13.32,8.12,7.39,8.31,8.57,12.36,11.78,7.94,10.06,8.72,9.9,8.67,10.5,10.4,13.06,11.47,7.11,10.42,15.7,13.69,15.49,8.31,9.2,9.77,9.98,14.13,8.86,13.51,11.81],[3.42,5.43,6.45,4.39,4.7,4.96,4.73,4.02,5.83,3.84,7.31,7.42,7.08,10.14,9.72,19.23,10.11,13.04,11.1,12.28,28.79,11.47,10.11,11.44,10.16,11.96,9.95,14.65,12.88,9.09,10.08,11.83,7.65,10.97,7.84,8.57,11.05,15.31,6.27,11.28,7.73,9.98,13.58,14.84,9.3,10.97,14.71,14.0,10.29],[4.44,4.68,4.6,4.94,4.1,4.26,3.74,4.02,4.73,7.44,4.02,4.94,4.47,5.15,5.43,4.21,4.34,5.8,4.7,4.57,5.33,5.98,46.16,5.8,4.55,25.29,15.62,16.77,11.18,16.09,17.95,40.31,3.97,4.62,5.43,5.22,4.1,5.72,6.27,4.47,6.64,5.8,4.86,4.96,7.55,4.18,5.69,5.04,4.47,6.37,4.91,10.71,3.29,3.53,6.32,6.37,2.64,5.98,6.06,5.72,6.06,5.83],[5.77,9.69,11.86,11.23,7.94,8.33,12.23,10.03,11.39,9.59,12.38,13.09,6.66,8.62,9.61,4.05,8.65,7.11,13.3,10.24,3.97,8.49,4.39,17.55,8.44,6.74,9.27,12.88,5.28,4.13,14.08,8.36,5.77,16.07,9.38,9.25,12.7,7.89,3.71,8.7,6.97,10.5,13.66,7.16,5.12,7.24,7.26,9.04,6.19,10.81,8.52,5.3,6.69,7.89,9.09],[4.65,4.83,5.56,4.96,6.35,6.4,8.49,5.98,8.46,5.9,9.72,6.66,9.67,10.95,12.02,8.78,6.66,8.39,5.67,6.53,9.43,7.18,8.65,8.99,9.25,5.46,8.44,9.33,9.12,8.86,6.56,8.83,23.98,8.86,14.58,9.77,12.25,8.86,15.1,9.67,11.62,9.33,8.99,8.23,9.61,8.15,9.35,6.06,8.93,6.06,8.57,8.62,8.49,14.73,9.06,15.57,8.99,8.31,8.72,8.46,9.17,6.97,8.99,7.81,9.2,6.53,8.86,9.2,8.8,7.11,9.17,7.76,8.96,10.95,8.86,9.53,8.93,10.29],[3.58,4.15,3.27,4.15,4.02,7.39,6.03,7.65,7.99,6.03,6.77,6.77,6.27,6.79,4.31,7.03,8.12,10.37,8.31,8.31,8.52,4.41,6.24,9.01,7.5,6.48,9.06,5.49,5.75,5.46,6.84,4.21,5.25,3.6,11.21,4.96,3.0,4.68,6.01,6.43,8.86,6.09,6.11,6.45,8.2,8.15,15.26,6.9,7.55,9.27,12.72,9.85,5.77,6.77,5.8,6.16,7.44,6.58,9.93,9.53,13.32,9.67,6.95,9.74,11.91,5.59,5.36,9.12,12.07,10.87,8.36,13.43,9.87,5.93,8.52,8.7,7.73,5.72,8.07,8.12,8.1,8.36,7.6,9.4,9.53,9.87,9.95,9.82,9.12,10.27,6.9,14.03,5.64,4.68,7.08,8.41],[9.27,14.24,10.29,34.22,9.74,15.23,23.93,18.02,24.11,44.43,14.71,33.65,44.62,37.28,19.07,31.82,18.13,19.38,35.24,57.13,33.23,30.54,18.29,17.03,51.72,24.11,66.8,30.88,34.87],[18.89,33.8,30.54,30.8,27.12,19.7,43.76,45.3,25.23,23.41,34.61,25.7,26.96,17.71,13.11,14.76,20.32,22.96,24.76,16.3,11.18,78.68],[9.09,44.98,16.8,19.75,16.74,32.03,53.37,33.1,46.47,44.41,41.04,19.96,16.46,28.89,16.09,21.92,17.92,23.35,15.8,17.61,26.2,15.28,22.96,22.94],[60.5,19.72,17.01,60.92,15.78,18.08,18.42,24.16,27.56,81.61,26.98,50.39,25.73],[10.24,10.16,9.48,15.54,25.08,39.03,17.53,12.7,15.75,15.39,19.28,20.87,14.29,61.73],[10.76,23.8,9.51,11.62,23.64,25.34,14.81,21.73,25.44,14.94,27.09],[22.41,20.61,13.32,31.48,18.96,20.11,25.94,23.95,25.97,33.02,16.43],[14.89,14.89,11.23,16.51,12.93,26.8,22.52,15.62,39.24,16.98,19.93,14.86,13.14,23.61,14.79,19.51,12.98,9.27],[52.09,33.88,18.99,32.91,16.82,46.84,31.09,22.13,6.95,18.36,46.71,30.04],[18.39,12.2,30.98,26.93,37.51,41.33,16.85,74.34,17.32,28.32,25.99,23.33],[10.81,13.92,19.07,12.93,19.85,10.48,10.92,18.99,20.51,12.88,8.96,14.11,13.51,7.29,15.39,13.82,16.35,9.51,25.1,19.85,13.98,18.68,15.07,7.71,9.77,13.51,17.5,20.38,15.65,18.49],[9.51,8.39,6.64,6.53,4.28,4.57,12.54,4.68,5.41,6.66,9.35,6.97,7.03,7.71,9.33,5.41,15.52,4.65,11.36,4.39,4.34,8.25,6.48,8.39,6.92,12.33,4.73,7.92,10.63,7.81,9.85,16.88,13.84,10.0,6.58,5.07,6.09,6.24,11.94,6.4,12.93,10.5,12.88,13.9,6.84,10.14,6.77,10.84,14.92,7.44,16.01,8.41],[5.22,5.62,8.41,6.37,6.4,9.69,19.46,5.69,10.42,7.31,9.61,11.26,6.58,8.59,5.33,9.06,15.2,8.49,12.54,7.86,3.92,4.08,3.16,11.73,12.02,3.68,4.39,6.35,4.41,4.86,5.96,11.31,8.02,6.84,7.05,6.69,7.73,7.18,4.52,8.07,8.86,9.06,7.47,7.08,5.04,6.56,8.54,7.42,9.59,7.24,6.53,7.97],[7.34,4.49,3.5,12.9,4.05,4.57,2.8,5.38,3.6,4.18,12.59,4.86,5.3,9.9,5.67,3.37,3.81,2.53,5.64,3.84,4.0,3.84,7.99,8.59,6.48,6.01,8.83,6.61,6.06,12.8,10.21,7.34,9.01,7.16,8.8,6.43,5.72,10.19,9.9,10.74,10.95,10.21,12.49,14.55],[16.98,7.68,5.77,22.39,7.52,8.18,25.73,5.43,9.56,7.29,6.84,12.36,4.94,3.42,7.29,7.5,6.32,6.35,4.57,4.91,13.11,4.36,13.51,8.25,18.26,7.73,12.41,19.49],[14.03,11.81,9.3,6.74,12.12,12.9,9.69,11.83,13.27,12.43,12.59,11.99,17.19,15.1,7.11,10.06,12.15,7.65,10.16,11.1,8.39,11.47,23.82,11.83,11.28,7.76,12.23,15.26],[5.75,3.55,6.16,5.72,6.37,7.71,6.24,5.62,9.01,7.47,7.58,8.02,6.82,8.7,18.21,7.44,8.7,9.8,10.95,89.7],[4.83,2.85,2.38,2.69,2.27,3.76,2.48,5.93,6.4,5.69,4.1,4.52,2.53,3.63,5.25,6.77,3.03,3.4,2.59,3.71,2.4,3.32,3.53,6.48,4.99,2.22,4.34,2.98,2.74,3.03,65.15,2.35,2.66,3.97,3.55,2.4,9.01,4.78,5.93,7.86,4.26,3.11,5.25,5.07,7.39,6.35,5.88,6.92,6.01,5.59,3.55,9.04,5.02,5.15,4.68,17.66],[6.14,7.5,7.24,7.5,5.72,4.49,2.74,2.09,3.16,6.32,2.95,4.7,8.02,5.41,3.53,5.12,5.38,4.83,4.94,4.02,2.9,4.83,3.16,5.38,5.75,5.56,5.46,5.83,5.15,6.16,3.4,4.26,6.32,2.74,4.05,6.4,6.97,6.24,6.19,10.45],[10.53,13.69,10.29,10.16,9.87,8.23,9.14,9.67,11.99,7.89,9.17,6.9,11.23,7.55,11.6,7.29,7.71,5.72,11.83,7.86,18.23,10.87,7.08,6.97,5.38,6.84,14.24,13.48,10.58,15.91,14.55],[3.08,3.0,3.45,2.9,2.95,2.56,4.31,3.29,3.97,2.77,2.72,2.9,2.04,4.99,6.01,4.65,5.46,5.22,6.3,8.75,5.72,5.15,4.94,5.83,3.71,5.15,11.55,6.11,11.23,8.28,5.15,5.36,4.94,6.69,5.75,5.59,6.64,7.18,7.29,6.64,8.15,6.14,9.59,5.88,6.5,8.07,6.35,6.58,6.82,10.14],[6.45,5.15,6.01,4.1,6.22,4.18,3.89,4.13,4.62,4.0,5.07,6.37,5.43,9.35,5.3,4.21,5.69,6.95,7.18,5.83,6.01,3.45,5.75,7.34,5.28,5.09,6.03,5.62,5.93,7.86,4.49,4.41,3.21,3.74,7.29,8.52,13.51,19.72,11.34,33.67],[4.6,4.41,3.29,3.29,3.42,3.4,3.03,5.51,3.11,7.18,6.03,5.67,6.01,4.36,3.94,6.24,5.75,6.48,4.52,3.74,2.38,3.53,2.51,3.92,6.01,6.84,8.72,3.94,4.86,4.23,6.45,3.03,4.26,9.33,5.46,4.96,3.74,3.81,4.65,9.33,5.28,6.09,5.02,4.36,8.91,13.04],[2.95,5.41,5.07,5.36,3.6,3.89,4.36,6.53,2.09,3.55,5.9,4.6,3.5,3.87,2.25,2.93,5.98,3.32,5.41,4.18,4.52,6.53,6.53,6.3,6.43,4.78,4.68,3.58,4.23,4.02,3.79,4.31,7.58,5.75,5.56,4.41,10.61,5.59,4.0,5.98,2.66,7.05],[2.4,3.74,2.77,2.82,2.59,2.85,3.13,3.0,4.26,2.25,3.84,2.8,3.79,5.07,5.88,3.66,2.98,3.24,6.09,5.49,4.96,5.17,5.3,5.17,3.84,3.27,5.38,8.31,13.04],[4.88,4.68,2.72,3.37,5.69,9.53,4.68,7.5,5.64,5.51,4.34,4.31,5.33,5.64,4.62,6.71,6.4,7.26,13.3],[4.81,8.05,7.13,10.4,4.15,8.02,10.11,7.68,5.38,6.61,6.32,9.38,9.69,9.56,10.74,7.37,10.53,9.77,7.26,4.94,4.73,6.35,7.42,7.16,6.58,9.33,6.06,6.95,10.37,5.88,11.42,15.15,7.68,8.62,7.81,9.06],[5.59,3.74,2.77,4.05,3.89,13.64,6.14,5.33,6.9,8.18,3.29,2.74,7.0,7.97,6.53,4.36,2.74,2.64,5.46,5.07,8.07,6.11,5.12,6.11,12.62],[8.41,5.3,6.79,6.03,6.79,5.51,8.62,12.36,13.56,18.05,21.81,6.58,7.29,5.51,4.75,4.91,5.46,4.81,6.03,8.72,6.16,7.44],[5.28,5.12,3.71,7.03,7.0,6.22,7.44,5.36,4.55,6.56,4.83,3.16,4.81,2.59,4.78,2.8,7.26],[4.08,3.53,3.53,5.15,5.33,4.28,12.28,3.37,4.88,4.68,4.28,5.15,6.53,4.39,4.18,4.52,4.91,5.28,5.88],[4.05,5.04,4.08,3.45,3.87,7.37,6.45,5.72,3.08,3.84,4.08,4.26,4.41,4.1,3.11,3.58,6.06,5.28,3.66,3.45,6.71,4.05,4.41,5.12,5.77,7.26],[1.46,2.46,2.43,2.85,4.36,6.03,4.41,6.74,7.21,5.28,5.36,5.25,6.48,6.35,15.1,12.77,7.13,9.51,5.8,6.66,6.87,7.47,16.69,5.46,6.95,5.3,8.12,7.65,3.24,4.68],[5.77,5.72,3.84,5.43,5.51,4.44,5.33,5.62,5.93,5.93,2.85,4.96,2.01,6.3,3.68,4.57,10.24,5.77,7.26,5.64],[3.13,3.53,4.78,3.71,5.02,3.37,4.36,5.2,4.15,4.36,4.08,3.84,7.31,10.97,5.67],[3.34,4.44,5.04,4.31,4.81,2.98,3.81,4.99,2.9,3.63,7.0,3.81,5.72,5.8,5.62,4.08,4.65,4.96,7.92,6.45,4.08],[1.88,3.06,4.44,5.2,5.04,5.25,7.13,6.14,4.94,6.27,5.9],[3.6,4.41,5.56,3.58,4.49,4.18,4.23,4.26],[4.83,4.15,4.86,8.75,7.03,10.61,6.11,13.11],[4.39,4.47,3.42,3.45,5.07,7.13,2.98,4.41,3.27,3.06,4.47,2.95,4.6,5.62,8.72,4.68,2.56,2.93,6.06],[7.99,6.03,5.56,11.1,5.25],[12.59,7.24,4.1,11.83,20.72,18.23,11.65,27.09],[4.81,4.52,5.09,5.43,4.88,8.7,7.13,9.56],[3.32,3.29,3.11,3.11,3.34,7.71,6.79,7.13,7.13,4.91,10.58],[2.35,2.32,5.62,7.81,7.63,5.75,3.89,5.09,3.5,4.52,5.07],[3.45,4.05,5.41,6.77,6.61,6.11,8.07,12.56],[1.8,5.83,12.56],[4.62,5.41,6.69,6.77,5.04,3.53,4.47,5.69,5.69],[7.97,6.3,6.92,9.35,9.06],[4.65,8.88,5.98,13.58],[6.3,6.56,7.24,5.75,7.58,7.65,7.29],[6.74,3.58,5.28],[7.55,7.47,8.25,6.69,8.46,6.27],[6.95,8.2,10.08],[7.42,7.18,5.2,5.62,6.48],[3.0,2.56,3.0,4.88],[3.5,3.66,5.07,6.03,5.69],[6.14,5.3,5.38,8.02,7.94,8.28]] \ No newline at end of file diff --git a/src/js/components/SurahStream/index.tsx b/src/js/components/SurahStream/index.tsx index 39f5dcc..90af45b 100644 --- a/src/js/components/SurahStream/index.tsx +++ b/src/js/components/SurahStream/index.tsx @@ -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) {