diff --git a/.babelrc b/.babelrc deleted file mode 100644 index 7542c7c..0000000 --- a/.babelrc +++ /dev/null @@ -1,7 +0,0 @@ -{ -"presets": [ - "@babel/typescript", - "@babel/preset-env", - ["@babel/preset-react", {"runtime": "automatic"}] - ] -} diff --git a/.env.sample b/.env.sample deleted file mode 100644 index 4941fee..0000000 --- a/.env.sample +++ /dev/null @@ -1,5 +0,0 @@ -export DEPLOY_HOSTNAME= -export DEPLOY_USERNAME= -export DEPLOY_PATH= -export NODE_ENV= -export SASS_PATH="${SASS_PATH}:./src/css" diff --git a/.gitignore b/.gitignore index 3c15380..966f29e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,7 @@ -build/ -tmp/ +/build/ +/tmp/ +/rake/tasks/deploy.rake +/.gems/ +/crash.log node_modules/ -.gems/ -.dev/ -*.log -.env -.idea -*.conf -*.yml -*.mp3 -*.sh *.core diff --git a/README.md b/README.md index 40e7072..6bd21be 100644 --- a/README.md +++ b/README.md @@ -1,11 +1,11 @@ ## About This repository contains the source code of -[al-quran.reflectslight.io](https://al-quran.reflectslight.io), +[al-quran.reflectslight.io](https://al-quran.reflectslight.io) - a static website for reading (and listening to) The Noble Quran. After the website is built, the build directory consists of HTML, CSS, JavaScript and other static assets that can be hosted by a -regular web server (eg nginx, apache, etc). +standard web server (eg nginx, apache, ...). ## Stack @@ -18,28 +18,20 @@ the website can be built: There is a good chance there's a package available for tidy-html5 on your operating system of choice. -## Local development - -__1. Clone__ +## Development + # Clone repository git clone https://github.com/ReflectsLight/al-quran.git cd al-quran -__2. Install Ruby, NodeJS packages__ - + # Install Ruby, NodeJS packages bundle install npm i -__3. Build website__ - - # Build once - rake build - - # Build whenever a change is detected - rake build:watch - -__4. Start server on localhost__ + # Build website + rake nanoc:build + # Start web server rake server ## Thanks @@ -47,9 +39,14 @@ __4. Start server on localhost__ First and foremost, Alhamdulillah. * Thanks to the following graphic artists: - * [RefreshIcon](/src/js/components/Icon.tsx) - by - [Muhammad Haq](https://freeicons.io/profile/823). + - [RefreshIcon](/src/js/components/Icon.tsx) + by + [Muhammad Haq](https://freeicons.io/profile/823). * Thanks to the following translators: - * English (The Clear Quran) by Dr. Mustafa Khattab + - English (The Clear Quran) by Dr. Mustafa Khattab + +## License + +The "source code" is released under the terms of the GPL.
+See [./LICENSE](./LICENSE) for details. diff --git a/Rules b/Rules index 4b43015..855ad90 100644 --- a/Rules +++ b/Rules @@ -9,12 +9,12 @@ require "nanoc-tidy" locales = %w[ar en] slugs = Ryo.from( JSON.parse( - File.read(File.join(Dir.getwd, "src", "slugs.json")) + File.read(File.join(Dir.getwd, "src", "json", "slugs.json")) ) ) i18n = Ryo.from( JSON.parse( - File.read(File.join(Dir.getwd, "src", "i18n.json")) + File.read(File.join(Dir.getwd, "src", "json", "i18n.json")) ) ) diff --git a/bin/build-favicons b/bin/build-favicons deleted file mode 100755 index 08cf824..0000000 --- a/bin/build-favicons +++ /dev/null @@ -1,16 +0,0 @@ -#!/bin/sh -sizes="16x16 32x32 48x48 64x64 128x128 256x256" -for size in ${sizes}; do - convert src/favicon.svg \ - -resize ${size} \ - -background none \ - -fuzz 8% \ - -mattecolor "#FFFFFF" \ - -alpha set \ - -channel RGBA \ - -fill none \ - -opaque white \ - -gravity center \ - -extent ${size} \ - png32:src/favicon-${size}.png -done diff --git a/nanoc/lib/mixin/t.rb b/nanoc/lib/mixin/t.rb index e1861a3..4a1ce63 100644 --- a/nanoc/lib/mixin/t.rb +++ b/nanoc/lib/mixin/t.rb @@ -9,7 +9,7 @@ module Mixin::T end def i18n - path = File.join(Dir.getwd, "src", "i18n.json") + path = File.join(Dir.getwd, "src", "json", "i18n.json") json = File.binread(path) Ryo.from JSON.parse(json) end diff --git a/nanoc/rules/assets.rules b/nanoc/rules/assets.rules index 67edff6..eb70007 100644 --- a/nanoc/rules/assets.rules +++ b/nanoc/rules/assets.rules @@ -20,7 +20,7 @@ compile "/images/*.svg" do write("#{item.identifier}.gz") end -compile "/favicon*.png" do +compile "/images/*.png" do write(item.identifier.to_s) end diff --git a/nanoc/rules/index.rules b/nanoc/rules/index.rules index 0f40cc2..0dfd3bd 100644 --- a/nanoc/rules/index.rules +++ b/nanoc/rules/index.rules @@ -2,8 +2,7 @@ # frozen_string_literal: true ## -# Rules for the surah index available at // (eg /en/) and its -# dependencies. +# Rules for the surah index available at //. locales.each do |locale| compile "/html/index.html.erb", rep: "/#{locale}/surah/index" do @@ -14,17 +13,17 @@ locales.each do |locale| end end -compile "/js/pages/SurahIndex.tsx" do +compile "/js/main/surah-index.tsx" do filter :webpack, depend_on: ["/js/components", - "/js/lib/[!WebPackage]/", + "/js/lib/", "/js/hooks"] - write "/js/surah-index.js" + write "/js/main/surah-index.js" filter :gzip - write "/js/surah-index.js.gz" + write "/js/main/surah-index.js.gz" end compile "/js/loaders/SurahIndexLoader.ts" do - filter :webpack, depend_on: "/js/lib/WebPackage" + filter :webpack write "/js/loaders/surah-index-loader.js" end diff --git a/nanoc/rules/random.rules b/nanoc/rules/random.rules index 728449b..9186b9c 100644 --- a/nanoc/rules/random.rules +++ b/nanoc/rules/random.rules @@ -14,7 +14,7 @@ locales.each do |locale| end end -compile "/js/pages/Random.ts" do +compile "/js/main/random.ts" do filter(:webpack) - write("/js/random.js") + write("/js/main/random.js") end diff --git a/nanoc/rules/redirect.rules b/nanoc/rules/redirect.rules index 0eccf14..8273425 100644 --- a/nanoc/rules/redirect.rules +++ b/nanoc/rules/redirect.rules @@ -2,8 +2,8 @@ # frozen_string_literal: true ## -# Rules for a redirect from the root path to the surah index for a given locale -# (eg / -> /en/) +# Rules for a redirect from the root path to the surah index +# for a given locale (eg / -> /en/). compile "/html/redirect.html.erb" do filter(:tidy) @@ -11,7 +11,7 @@ compile "/html/redirect.html.erb" do write("/index.html") end -compile "/js/pages/Redirect.ts" do +compile "/js/main/redirect.ts" do filter(:webpack) - write("/js/redirect.js") + write("/js/main/redirect.js") end diff --git a/nanoc/rules/stream.rules b/nanoc/rules/stream.rules index 31efcb8..86d9c1a 100644 --- a/nanoc/rules/stream.rules +++ b/nanoc/rules/stream.rules @@ -2,8 +2,7 @@ # frozen_string_literal: true ## -# Rules for the surah stream available at /// (eg /ar/al-fatihah/) -# and its dependencies. +# Rules for the surah stream available at ///. compile "/*/*/surah.json" do write(item.identifier.to_s) @@ -36,17 +35,17 @@ Ryo.each(slugs) do |id, slug| end end -compile "/js/pages/SurahStream.tsx" do +compile "/js/main/surah-stream.tsx" do filter :webpack, depend_on: ["/js/components", "/js/lib/", "/js/hooks"], reject: proc { _1.include?("WebPackage") } - write "/js/surah-stream.js" + write "/js/main/surah-stream.js" filter :gzip - write "/js/surah-stream.js.gz" + write "/js/main/surah-stream.js.gz" end compile "/js/loaders/SurahStreamLoader.ts" do - filter :webpack, depend_on: "/js/lib/WebPackage" + filter :webpack write "/js/loaders/surah-stream-loader.js" end diff --git a/rake/tasks/deploy.rake b/rake/tasks/deploy.rake deleted file mode 100644 index 3a86a16..0000000 --- a/rake/tasks/deploy.rake +++ /dev/null @@ -1,27 +0,0 @@ -## -# frozen_string_literal: true - -desc "Configure environment for deployment" -task "deploy:env" do - ENV["buildenv"] = "production" - print "Set $NODE_ENV to 'production'", "\n" -end - -desc "Deploy the website" -task "deploy" => %i[deploy:env nanoc:clean nanoc:build] do - git_branch = `git branch --show-current`.chomp - if git_branch != "production" - warn "This task must be run on the 'production' branch." - exit(1) - end - print "Wait...", "\n" - sh( - "rsync", - "--delete", "-rvah", - "--chmod=Fu=r,Fg=r,Du=rx,Dg=rx", - "--rsync-path='/home/0x1eef/rsync.sh'", - "--exclude=audio/", - "build/al-quran/", - "0x1eef@al-quran.reflectslight.io:/mnt/www/al-quran.reflectslight.io/" - ) -end diff --git a/src/html/index.html.erb b/src/html/index.html.erb index 05e18ce..1576d65 100644 --- a/src/html/index.html.erb +++ b/src/html/index.html.erb @@ -30,8 +30,8 @@
- <%= inline_json("/i18n.json") %> - <%= inline_json("/surahs.json") %> + <%= inline_json("/json/i18n.json") %> + <%= inline_json("/json/surahs.json") %> diff --git a/src/html/partials/favicon.html.erb b/src/html/partials/favicon.html.erb index 3301c78..5f872dc 100644 --- a/src/html/partials/favicon.html.erb +++ b/src/html/partials/favicon.html.erb @@ -1,6 +1,6 @@ - - - - - - + + + + + + diff --git a/src/html/random.html.erb b/src/html/random.html.erb index f90d68e..5055821 100644 --- a/src/html/random.html.erb +++ b/src/html/random.html.erb @@ -5,7 +5,7 @@ <%= erb("partials/favicon.html.erb") %> - <%= inline_json("/slugs.json") %> - + <%= inline_json("/json/slugs.json") %> + diff --git a/src/html/redirect.html.erb b/src/html/redirect.html.erb index e1c952c..b3a4214 100644 --- a/src/html/redirect.html.erb +++ b/src/html/redirect.html.erb @@ -3,8 +3,10 @@ <%= t("en", "TheNobleQuran") %> + + <%= erb("partials/favicon.html.erb") %> - + diff --git a/src/html/stream.html.erb b/src/html/stream.html.erb index fc64d46..fb0e260 100644 --- a/src/html/stream.html.erb +++ b/src/html/stream.html.erb @@ -34,8 +34,8 @@ data-locale="<%= context.locale %>" data-surah-id="<%= context.surah.id %>"> - <%= inline_json("/i18n.json") %> - <%= inline_json("/recitations.json") %> + <%= inline_json("/json/i18n.json") %> + <%= inline_json("/json/recitations.json") %> diff --git a/src/favicon-128x128.png b/src/images/favicon-128x128.png similarity index 100% rename from src/favicon-128x128.png rename to src/images/favicon-128x128.png diff --git a/src/favicon-16x16.png b/src/images/favicon-16x16.png similarity index 100% rename from src/favicon-16x16.png rename to src/images/favicon-16x16.png diff --git a/src/favicon-256x256.png b/src/images/favicon-256x256.png similarity index 100% rename from src/favicon-256x256.png rename to src/images/favicon-256x256.png diff --git a/src/favicon-32x32.png b/src/images/favicon-32x32.png similarity index 100% rename from src/favicon-32x32.png rename to src/images/favicon-32x32.png diff --git a/src/favicon-48x48.png b/src/images/favicon-48x48.png similarity index 100% rename from src/favicon-48x48.png rename to src/images/favicon-48x48.png diff --git a/src/favicon-64x64.png b/src/images/favicon-64x64.png similarity index 100% rename from src/favicon-64x64.png rename to src/images/favicon-64x64.png diff --git a/src/favicon.svg b/src/images/favicon.svg similarity index 100% rename from src/favicon.svg rename to src/images/favicon.svg diff --git a/src/js/pages/SurahIndex.tsx b/src/js/components/SurahIndex.tsx similarity index 79% rename from src/js/pages/SurahIndex.tsx rename to src/js/components/SurahIndex.tsx index 1656f81..ea5529e 100644 --- a/src/js/pages/SurahIndex.tsx +++ b/src/js/components/SurahIndex.tsx @@ -1,14 +1,12 @@ -import React, { useRef, useState, useEffect } from "react"; -import ReactDOM from "react-dom/client"; -import classNames from "classnames"; - import * as Quran from "lib/Quran"; +import React, { useRef, useState, useEffect } from "react"; import { useTheme } from "hooks/useTheme"; import { ThemeSelect } from "components/ThemeSelect"; import { LanguageSelect } from "components/LanguageSelect"; -import { i18n, formatNumber, TFunction } from "lib/i18n"; +import { formatNumber, TFunction } from "lib/i18n"; import { RightArrow } from "components/Icon"; import { SurahIndexFilter } from "components/SurahIndexFilter"; +import classNames from "classnames"; interface Props { locale: Quran.Locale; @@ -16,7 +14,7 @@ interface Props { t: TFunction; } -function SurahIndex({ locale, surahs, t }: Props) { +export function SurahIndex({ locale, surahs, t }: Props) { const [theme, setTheme] = useTheme(); const [index, setIndex] = useState(surahs); const ref = useRef(); @@ -92,19 +90,3 @@ function SurahIndex({ locale, surahs, t }: Props) { ); } - -(function () { - const root: HTMLElement = document.querySelector(".root")!; - const locale = root.getAttribute("data-locale") as Quran.Locale; - const script: HTMLScriptElement = document.querySelector(".json.surahs")!; - const t = i18n(document.querySelector(".json.i18n")!.innerText); - const surahs: Quran.Surah[] = JSON.parse(script.innerText).map( - (el: Quran.JSON.Surah) => { - return Quran.Surah.fromJSON(locale, el); - }, - ); - - ReactDOM.createRoot(root).render( - , - ); -})(); diff --git a/src/js/pages/SurahStream.tsx b/src/js/components/SurahStream.tsx similarity index 82% rename from src/js/pages/SurahStream.tsx rename to src/js/components/SurahStream.tsx index c33cd18..6fed1ab 100644 --- a/src/js/pages/SurahStream.tsx +++ b/src/js/components/SurahStream.tsx @@ -1,7 +1,5 @@ +import * as Quran from "lib/Quran"; import React, { useState, useEffect, useRef } from "react"; -import ReactDOM from "react-dom/client"; -import classNames from "classnames"; - import { useTheme } from "hooks/useTheme"; import { Timer } from "components/Timer"; import { Stream } from "components/Stream"; @@ -9,8 +7,8 @@ import { ThemeSelect } from "components/ThemeSelect"; import { LanguageSelect } from "components/LanguageSelect"; import { AudioControl } from "components/AudioControl"; import { PlayIcon, PauseIcon, RefreshIcon, StalledIcon } from "components/Icon"; -import * as Quran from "lib/Quran"; -import { i18n, TFunction } from "lib/i18n"; +import classNames from "classnames"; +import { TFunction } from "lib/i18n"; interface Props { node: HTMLScriptElement; @@ -26,7 +24,7 @@ const getTimeSlots = (recitation: Quran.Recitation) => { return timeSlots; }; -function SurahStream({ node, recitations, locale, paused, t }: Props) { +export function SurahStream({ node, recitations, locale, paused, t }: Props) { const [stream, setStream] = useState([]); const [isPaused, setIsPaused] = useState(paused); const [soundOn, setSoundOn] = useState(false); @@ -148,27 +146,3 @@ function SurahStream({ node, recitations, locale, paused, t }: Props) { ); } - -(function () { - const root: HTMLElement = document.querySelector(".root")!; - const locale = root.getAttribute("data-locale") as Quran.Locale; - const node: HTMLScriptElement = document.querySelector("script.surah")!; - const toBoolean = (str: string | null): boolean => - str !== null && ["1", "t", "true", "yes"].includes(str); - const params = new URLSearchParams(location.search); - const paused = toBoolean(params.get("paused")); - const recitations = JSON.parse( - document.querySelector(".json.recitations")!.innerText, - ); - const t = i18n(document.querySelector(".json.i18n")!.innerText); - - ReactDOM.createRoot(root).render( - , - ); -})(); diff --git a/src/js/loaders/SurahIndexLoader.ts b/src/js/loaders/SurahIndexLoader.ts index 282d1d4..bb544cc 100644 --- a/src/js/loaders/SurahIndexLoader.ts +++ b/src/js/loaders/SurahIndexLoader.ts @@ -7,7 +7,7 @@ import postman, { item } from "postman"; const inlineStyle: HTMLStyleElement = document.querySelector(".css.postman")!; postman( - item.script("/js/surah-index.js"), + item.script("/js/main/surah-index.js"), item.css("/css/surah-index.css"), item.font("Kanit Regular", "url(/fonts/kanit-regular.ttf)"), item.font("Mada Regular", "url(/fonts/mada-regular.ttf"), diff --git a/src/js/loaders/SurahStreamLoader.ts b/src/js/loaders/SurahStreamLoader.ts index 3cb104b..3ada292 100644 --- a/src/js/loaders/SurahStreamLoader.ts +++ b/src/js/loaders/SurahStreamLoader.ts @@ -13,7 +13,7 @@ import * as Quran from "lib/Quran"; ); postman( - item.script("/js/surah-stream.js"), + item.script("/js/main/surah-stream.js"), item.css("/css/surah-stream.css"), item.font("Kanit Regular", "url(/fonts/kanit-regular.ttf)"), item.font("Mada Regular", "url(/fonts/mada-regular.ttf"), diff --git a/src/js/pages/Random.ts b/src/js/main/random.ts similarity index 100% rename from src/js/pages/Random.ts rename to src/js/main/random.ts diff --git a/src/js/pages/Redirect.ts b/src/js/main/redirect.ts similarity index 100% rename from src/js/pages/Redirect.ts rename to src/js/main/redirect.ts diff --git a/src/js/main/surah-index.tsx b/src/js/main/surah-index.tsx new file mode 100644 index 0000000..cf97453 --- /dev/null +++ b/src/js/main/surah-index.tsx @@ -0,0 +1,21 @@ +import * as Quran from "lib/Quran"; +import React from "react"; +import ReactDOM from "react-dom/client"; +import { i18n } from "lib/i18n"; +import { SurahIndex } from "components/SurahIndex"; + +(function () { + const root: HTMLElement = document.querySelector(".root")!; + const locale = root.getAttribute("data-locale") as Quran.Locale; + const script: HTMLScriptElement = document.querySelector(".json.surahs")!; + const t = i18n(document.querySelector(".json.i18n")!.innerText); + const surahs: Quran.Surah[] = JSON.parse(script.innerText).map( + (el: Quran.JSON.Surah) => { + return Quran.Surah.fromJSON(locale, el); + }, + ); + + ReactDOM.createRoot(root).render( + , + ); +})(); diff --git a/src/js/main/surah-stream.tsx b/src/js/main/surah-stream.tsx new file mode 100644 index 0000000..7856bf2 --- /dev/null +++ b/src/js/main/surah-stream.tsx @@ -0,0 +1,29 @@ +import * as Quran from "lib/Quran"; +import React from "react"; +import ReactDOM from "react-dom/client"; +import { i18n } from "lib/i18n"; +import { SurahStream } from "components/SurahStream"; + +(function () { + const root: HTMLElement = document.querySelector(".root")!; + const locale = root.getAttribute("data-locale") as Quran.Locale; + const node: HTMLScriptElement = document.querySelector("script.surah")!; + const toBoolean = (str: string | null): boolean => + str !== null && ["1", "t", "true", "yes"].includes(str); + const params = new URLSearchParams(location.search); + const paused = toBoolean(params.get("paused")); + const recitations = JSON.parse( + document.querySelector(".json.recitations")!.innerText, + ); + const t = i18n(document.querySelector(".json.i18n")!.innerText); + + ReactDOM.createRoot(root).render( + , + ); +})(); diff --git a/src/i18n.json b/src/json/i18n.json similarity index 100% rename from src/i18n.json rename to src/json/i18n.json diff --git a/src/recitations.json b/src/json/recitations.json similarity index 100% rename from src/recitations.json rename to src/json/recitations.json diff --git a/src/slugs.json b/src/json/slugs.json similarity index 100% rename from src/slugs.json rename to src/json/slugs.json diff --git a/src/surahs.json b/src/json/surahs.json similarity index 100% rename from src/surahs.json rename to src/json/surahs.json diff --git a/src/time_slots/1.json b/src/time_slots/1.json deleted file mode 100644 index cd672a8..0000000 --- a/src/time_slots/1.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.96],[2,6.58],[3,4.1],[4,4.34],[5,6.48],[6,5.07],[7,16.85]] \ No newline at end of file diff --git a/src/time_slots/10.json b/src/time_slots/10.json deleted file mode 100644 index b373c5b..0000000 --- a/src/time_slots/10.json +++ /dev/null @@ -1 +0,0 @@ -[[1,12.64],[2,32.24],[3,33.04],[4,33.65],[5,30.64],[6,17.08],[7,19.12],[8,10.11],[9,20.3],[10,19.49],[11,22.6],[12,30.82],[13,21.97],[14,12.83],[15,45.66],[16,22.15],[17,15.41],[18,37.02],[19,22.26],[20,24.97],[21,25.13],[22,47.65],[23,32.97],[24,61.94],[25,13.19],[26,17.42],[27,30.25],[28,22.7],[29,11.21],[30,16.51],[31,27.74],[32,11.78],[33,10.61],[34,17.35],[35,29.34],[36,16.82],[37,18.86],[38,17.06],[39,18.76],[40,11.7],[41,17.66],[42,11.91],[43,10.42],[44,11.55],[45,20.24],[46,15.65],[47,14.18],[48,7.78],[49,24.53],[50,11.42],[51,15.44],[52,12.04],[53,14.84],[54,19.49],[55,17.61],[56,5.51],[57,17.84],[58,10.84],[59,20.82],[60,19.3],[61,38.03],[62,11.02],[63,5.46],[64,14.34],[65,11.0],[66,25.31],[67,15.18],[68,23.48],[69,8.07],[70,13.53],[71,37.8],[72,14.55],[73,20.95],[74,23.85],[75,16.61],[76,11.89],[77,12.67],[78,17.89],[79,6.53],[80,12.38],[81,16.69],[82,7.73],[83,23.85],[84,15.05],[85,10.29],[86,5.75],[87,19.41],[88,30.01],[89,12.75],[90,35.81],[91,10.32],[92,14.24],[93,27.51],[94,24.82],[95,9.27],[96,6.97],[97,8.46],[98,22.44],[99,15.2],[100,11.7],[101,12.83],[102,16.98],[103,10.79],[104,26.41],[105,9.59],[106,14.32],[107,25.81],[108,23.72],[109,11.36]] \ No newline at end of file diff --git a/src/time_slots/100.json b/src/time_slots/100.json deleted file mode 100644 index 20dd4e6..0000000 --- a/src/time_slots/100.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.11],[2,2.82],[3,2.9],[4,3.13],[5,3.16],[6,5.59],[7,4.7],[8,4.75],[9,5.77],[10,3.24],[11,6.09]] \ No newline at end of file diff --git a/src/time_slots/101.json b/src/time_slots/101.json deleted file mode 100644 index 8e5dab4..0000000 --- a/src/time_slots/101.json +++ /dev/null @@ -1 +0,0 @@ -[[1,1.78],[2,1.75],[3,4.23],[4,5.98],[5,5.54],[6,5.02],[7,3.87],[8,4.36],[9,3.58],[10,3.58],[11,2.53]] \ No newline at end of file diff --git a/src/time_slots/102.json b/src/time_slots/102.json deleted file mode 100644 index 979df18..0000000 --- a/src/time_slots/102.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.08],[2,3.45],[3,3.55],[4,4.47],[5,4.75],[6,3.4],[7,5.3],[8,7.37]] \ No newline at end of file diff --git a/src/time_slots/103.json b/src/time_slots/103.json deleted file mode 100644 index 8a6f3a9..0000000 --- a/src/time_slots/103.json +++ /dev/null @@ -1 +0,0 @@ -[[1,1.75],[2,4.28],[3,10.24]] \ No newline at end of file diff --git a/src/time_slots/104.json b/src/time_slots/104.json deleted file mode 100644 index 1938391..0000000 --- a/src/time_slots/104.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.23],[2,4.47],[3,4.99],[4,5.38],[5,3.94],[6,3.29],[7,4.23],[8,3.87],[9,3.21]] \ No newline at end of file diff --git a/src/time_slots/105.json b/src/time_slots/105.json deleted file mode 100644 index 1a5c9aa..0000000 --- a/src/time_slots/105.json +++ /dev/null @@ -1 +0,0 @@ -[[1,6.24],[2,4.94],[3,5.12],[4,6.22],[5,4.47]] \ No newline at end of file diff --git a/src/time_slots/106.json b/src/time_slots/106.json deleted file mode 100644 index 807add1..0000000 --- a/src/time_slots/106.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.27],[2,6.09],[3,4.96],[4,9.93]] \ No newline at end of file diff --git a/src/time_slots/107.json b/src/time_slots/107.json deleted file mode 100644 index a939c24..0000000 --- a/src/time_slots/107.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.91],[2,5.02],[3,4.83],[4,3.55],[5,5.9],[6,4.13],[7,3.42]] \ No newline at end of file diff --git a/src/time_slots/108.json b/src/time_slots/108.json deleted file mode 100644 index 3f74873..0000000 --- a/src/time_slots/108.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.3],[2,3.27],[3,4.23]] \ No newline at end of file diff --git a/src/time_slots/109.json b/src/time_slots/109.json deleted file mode 100644 index dc4a2a2..0000000 --- a/src/time_slots/109.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.99],[2,4.13],[3,5.9],[4,4.96],[5,6.01],[6,4.21]] \ No newline at end of file diff --git a/src/time_slots/11.json b/src/time_slots/11.json deleted file mode 100644 index 247d1f1..0000000 --- a/src/time_slots/11.json +++ /dev/null @@ -1 +0,0 @@ -[[1,13.61],[2,10.87],[3,27.19],[4,7.26],[5,21.58],[6,18.81],[7,31.95],[8,22.23],[9,13.11],[10,16.8],[11,12.41],[12,28.63],[13,19.96],[14,19.25],[15,15.12],[16,16.35],[17,42.53],[18,25.39],[19,13.69],[20,24.35],[21,12.75],[22,7.16],[23,17.16],[24,15.57],[25,11.57],[26,10.79],[27,29.39],[28,22.31],[29,26.85],[30,11.86],[31,41.93],[32,14.39],[33,13.27],[34,17.27],[35,13.71],[36,15.18],[37,13.58],[38,18.63],[39,12.46],[40,26.8],[41,12.09],[42,17.37],[43,22.31],[44,20.3],[45,14.92],[46,19.67],[47,16.27],[48,23.41],[49,22.23],[50,15.91],[51,13.19],[52,20.01],[53,15.1],[54,20.79],[55,9.4],[56,21.71],[57,22.8],[58,16.43],[59,12.88],[60,17.87],[61,27.9],[62,23.07],[63,21.32],[64,19.3],[65,11.68],[66,19.88],[67,8.36],[68,11.68],[69,17.35],[70,19.28],[71,14.5],[72,12.85],[73,16.85],[74,11.96],[75,7.84],[76,17.27],[77,14.42],[78,29.52],[79,9.8],[80,9.72],[81,29.47],[82,16.93],[83,7.97],[84,28.87],[85,16.3],[86,12.54],[87,23.56],[88,34.66],[89,21.79],[90,10.66],[91,19.15],[92,18.16],[93,21.55],[94,20.53],[95,9.06],[96,8.07],[97,12.02],[98,10.87],[99,9.27],[100,11.57],[101,26.51],[102,14.55],[103,16.85],[104,7.29],[105,10.08],[106,9.8],[107,15.57],[108,20.51],[109,23.33],[110,18.47],[111,13.32],[112,13.19],[113,17.03],[114,17.29],[115,7.68],[116,26.17],[117,9.4],[118,13.17],[119,18.21],[120,20.04],[121,8.67],[122,7.92],[123,18.05]] \ No newline at end of file diff --git a/src/time_slots/110.json b/src/time_slots/110.json deleted file mode 100644 index 65facef..0000000 --- a/src/time_slots/110.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.33],[2,7.55],[3,8.99]] \ No newline at end of file diff --git a/src/time_slots/111.json b/src/time_slots/111.json deleted file mode 100644 index 3090623..0000000 --- a/src/time_slots/111.json +++ /dev/null @@ -1 +0,0 @@ -[[1,6.11],[2,5.62],[3,4.13],[4,4.75],[5,5.02]] \ No newline at end of file diff --git a/src/time_slots/112.json b/src/time_slots/112.json deleted file mode 100644 index 2075912..0000000 --- a/src/time_slots/112.json +++ /dev/null @@ -1 +0,0 @@ -[[1,2.66],[2,2.14],[3,2.93],[4,3.97]] \ No newline at end of file diff --git a/src/time_slots/113.json b/src/time_slots/113.json deleted file mode 100644 index c27bc3c..0000000 --- a/src/time_slots/113.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.42],[2,2.98],[3,4.55],[4,5.41],[5,4.6]] \ No newline at end of file diff --git a/src/time_slots/114.json b/src/time_slots/114.json deleted file mode 100644 index 131aadb..0000000 --- a/src/time_slots/114.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.08],[2,2.61],[3,2.82],[4,5.25],[5,5.25],[6,4.99]] \ No newline at end of file diff --git a/src/time_slots/12.json b/src/time_slots/12.json deleted file mode 100644 index f094cfe..0000000 --- a/src/time_slots/12.json +++ /dev/null @@ -1 +0,0 @@ -[[1,11.08],[2,9.74],[3,16.04],[4,16.12],[5,17.37],[6,31.56],[7,9.4],[8,15.57],[9,13.24],[10,16.51],[11,11.89],[12,9.06],[13,14.26],[14,10.68],[15,21.55],[16,9.98],[17,20.35],[18,21.76],[19,19.83],[20,10.74],[21,36.47],[22,12.93],[23,21.81],[24,22.39],[25,22.91],[26,18.23],[27,9.33],[28,15.54],[29,11.52],[30,19.15],[31,38.32],[32,22.94],[33,17.82],[34,11.34],[35,10.53],[36,31.48],[37,29.26],[38,29.62],[39,11.1],[40,49.89],[41,20.64],[42,17.74],[43,32.37],[44,10.66],[45,11.68],[46,29.39],[47,15.07],[48,14.84],[49,10.53],[50,22.7],[51,27.82],[52,12.28],[53,19.44],[54,14.08],[55,8.36],[56,19.17],[57,7.92],[58,10.14],[59,18.05],[60,7.81],[61,7.18],[62,17.27],[63,20.64],[64,17.32],[65,27.4],[66,25.68],[67,29.07],[68,28.08],[69,16.09],[70,16.27],[71,6.01],[72,11.05],[73,10.89],[74,9.43],[75,14.08],[76,38.09],[77,23.61],[78,18.18],[79,14.71],[80,33.96],[81,22.44],[82,13.69],[83,20.61],[84,13.09],[85,11.1],[86,12.36],[87,18.0],[88,24.48],[89,9.8],[90,23.8],[91,10.42],[92,9.67],[93,12.8],[94,14.42],[95,7.5],[96,21.42],[97,12.38],[98,9.27],[99,16.12],[100,42.27],[101,23.77],[102,15.23],[103,7.03],[104,8.83],[105,11.21],[106,7.47],[107,14.52],[108,16.72],[109,32.73],[110,22.86],[111,24.61]] \ No newline at end of file diff --git a/src/time_slots/13.json b/src/time_slots/13.json deleted file mode 100644 index 7bb2d27..0000000 --- a/src/time_slots/13.json +++ /dev/null @@ -1 +0,0 @@ -[[1,26.04],[2,29.88],[3,25.99],[4,42.97],[5,32.39],[6,22.49],[7,19.46],[8,14.65],[9,6.82],[10,17.01],[11,35.4],[12,11.02],[13,21.05],[14,25.76],[15,13.95],[16,46.63],[17,51.38],[18,28.97],[19,16.72],[20,8.65],[21,15.78],[22,27.43],[23,20.27],[24,7.42],[25,23.04],[26,17.08],[27,18.47],[28,14.39],[29,8.23],[30,30.43],[31,47.15],[32,14.05],[33,38.97],[34,13.11],[35,20.9],[36,26.46],[37,21.6],[38,23.28],[39,11.31],[40,14.21],[41,16.69],[42,16.88],[43,16.09]] \ No newline at end of file diff --git a/src/time_slots/14.json b/src/time_slots/14.json deleted file mode 100644 index bc7a16b..0000000 --- a/src/time_slots/14.json +++ /dev/null @@ -1 +0,0 @@ -[[1,19.93],[2,13.66],[3,19.41],[4,20.79],[5,23.43],[6,31.29],[7,13.61],[8,14.68],[9,47.23],[10,40.2],[11,30.67],[12,20.56],[13,21.08],[14,10.89],[15,5.83],[16,11.55],[17,18.16],[18,23.3],[19,14.0],[20,5.15],[21,38.03],[22,52.14],[23,19.8],[24,19.02],[25,15.39],[26,13.69],[27,19.96],[28,11.42],[29,6.4],[30,15.73],[31,22.33],[32,27.38],[33,12.8],[34,17.97],[35,13.58],[36,18.99],[37,33.25],[38,17.37],[39,13.45],[40,10.5],[41,8.88],[42,17.66],[43,11.73],[44,32.44],[45,15.65],[46,13.06],[47,13.3],[48,10.76],[49,7.65],[50,8.86],[51,10.19],[52,16.77]] \ No newline at end of file diff --git a/src/time_slots/15.json b/src/time_slots/15.json deleted file mode 100644 index ea8339e..0000000 --- a/src/time_slots/15.json +++ /dev/null @@ -1 +0,0 @@ -[[1,12.15],[2,6.84],[3,8.07],[4,9.87],[5,7.11],[6,10.68],[7,9.61],[8,11.52],[9,9.12],[10,7.37],[11,8.23],[12,5.64],[13,7.24],[14,10.61],[15,11.49],[16,10.45],[17,6.03],[18,7.73],[19,12.59],[20,8.2],[21,14.5],[22,17.27],[23,7.42],[24,8.91],[25,7.37],[26,9.87],[27,9.98],[28,13.45],[29,8.07],[30,5.64],[31,8.02],[32,7.76],[33,10.66],[34,5.07],[35,5.51],[36,6.58],[37,5.36],[38,4.47],[39,12.07],[40,4.88],[41,5.33],[42,9.93],[43,5.72],[44,8.52],[45,7.65],[46,4.49],[47,10.37],[48,9.53],[49,8.99],[50,5.25],[51,6.43],[52,9.8],[53,6.92],[54,9.93],[55,7.31],[56,11.26],[57,5.62],[58,9.27],[59,7.63],[60,7.78],[61,7.52],[62,6.35],[63,6.27],[64,6.58],[65,14.92],[66,12.72],[67,6.03],[68,7.76],[69,4.05],[70,6.35],[71,9.61],[72,6.19],[73,4.49],[74,10.27],[75,6.61],[76,5.33],[77,5.96],[78,5.88],[79,8.25],[80,5.9],[81,6.87],[82,6.32],[83,4.55],[84,6.61],[85,16.54],[86,5.62],[87,8.88],[88,15.23],[89,5.9],[90,6.97],[91,4.86],[92,5.3],[93,3.94],[94,5.59],[95,5.04],[96,9.12],[97,6.22],[98,6.64],[99,5.88]] \ No newline at end of file diff --git a/src/time_slots/16.json b/src/time_slots/16.json deleted file mode 100644 index 07ff2c4..0000000 --- a/src/time_slots/16.json +++ /dev/null @@ -1 +0,0 @@ -[[1,11.23],[2,21.42],[3,8.36],[4,9.12],[5,10.42],[6,8.41],[7,14.39],[8,11.1],[9,13.11],[10,15.26],[11,21.34],[12,18.16],[13,13.56],[14,30.9],[15,11.02],[16,6.66],[17,7.68],[18,10.37],[19,6.22],[20,10.08],[21,9.35],[22,15.57],[23,13.84],[24,11.57],[25,18.81],[26,24.01],[27,25.52],[28,25.63],[29,10.74],[30,23.56],[31,18.42],[32,15.54],[33,25.84],[34,11.08],[35,33.07],[36,30.07],[37,14.45],[38,20.4],[39,13.3],[40,12.88],[41,19.44],[42,7.5],[43,18.13],[44,16.8],[45,14.6],[46,8.07],[47,10.06],[48,18.0],[49,17.08],[50,9.2],[51,14.99],[52,10.97],[53,12.28],[54,12.77],[55,8.57],[56,15.44],[57,8.96],[58,10.84],[59,20.19],[60,13.51],[61,31.03],[62,18.44],[63,18.86],[64,16.4],[65,18.42],[66,19.93],[67,18.23],[68,12.96],[69,28.24],[70,22.83],[71,25.26],[72,26.2],[73,15.15],[74,11.96],[75,28.76],[76,29.26],[77,20.24],[78,18.44],[79,21.39],[80,33.1],[81,28.84],[82,7.84],[83,10.68],[84,14.81],[85,10.16],[86,27.48],[87,10.24],[88,13.66],[89,28.89],[90,21.94],[91,21.0],[92,36.05],[93,25.08],[94,20.82],[95,15.83],[96,18.31],[97,22.39],[98,9.72],[99,11.1],[100,11.36],[101,20.87],[102,14.05],[103,20.24],[104,11.94],[105,13.51],[106,29.36],[107,14.18],[108,17.19],[109,7.6],[110,18.57],[111,14.32],[112,31.53],[113,12.28],[114,15.52],[115,23.28],[116,22.83],[117,7.05],[118,18.16],[119,21.89],[120,12.36],[121,9.98],[122,11.0],[123,13.3],[124,19.17],[125,22.83],[126,13.82],[127,14.65],[128,9.64]] \ No newline at end of file diff --git a/src/time_slots/17.json b/src/time_slots/17.json deleted file mode 100644 index c74f567..0000000 --- a/src/time_slots/17.json +++ /dev/null @@ -1 +0,0 @@ -[[1,23.43],[2,15.15],[3,10.76],[4,18.23],[5,24.16],[6,14.76],[7,30.56],[8,13.04],[9,17.37],[10,9.72],[11,11.47],[12,32.29],[13,16.48],[14,7.29],[15,22.47],[16,18.73],[17,14.05],[18,20.17],[19,14.21],[20,20.74],[21,13.61],[22,9.09],[23,31.06],[24,11.39],[25,14.11],[26,9.35],[27,11.65],[28,14.58],[29,13.04],[30,15.28],[31,16.64],[32,11.62],[33,23.9],[34,16.14],[35,13.79],[36,13.51],[37,11.26],[38,8.07],[39,19.57],[40,16.35],[41,11.28],[42,12.62],[43,8.96],[44,25.7],[45,14.68],[46,23.22],[47,19.46],[48,10.06],[49,13.9],[50,4.75],[51,26.88],[52,11.62],[53,19.23],[54,14.79],[55,18.57],[56,12.88],[57,21.79],[58,19.17],[59,26.49],[60,29.86],[61,15.33],[62,16.48],[63,14.08],[64,22.07],[65,9.74],[66,13.71],[67,19.1],[68,14.71],[69,21.94],[70,24.08],[71,18.89],[72,11.47],[73,16.35],[74,11.94],[75,12.12],[76,13.95],[77,11.44],[78,13.4],[79,13.43],[80,16.27],[81,11.13],[82,15.05],[83,14.18],[84,10.79],[85,15.67],[86,16.04],[87,9.14],[88,19.41],[89,15.07],[90,8.99],[91,13.14],[92,14.29],[93,26.2],[94,17.32],[95,15.52],[96,13.82],[97,31.71],[98,21.26],[99,27.12],[100,19.62],[101,24.03],[102,20.74],[103,10.16],[104,15.36],[105,13.48],[106,13.19],[107,19.2],[108,10.0],[109,7.44],[110,22.05],[111,19.51]] \ No newline at end of file diff --git a/src/time_slots/18.json b/src/time_slots/18.json deleted file mode 100644 index ee4a0cb..0000000 --- a/src/time_slots/18.json +++ /dev/null @@ -1 +0,0 @@ -[[1,11.7],[2,16.88],[3,3.63],[4,7.0],[5,16.51],[6,12.25],[7,11.05],[8,8.05],[9,9.74],[10,15.49],[11,8.44],[12,11.62],[13,14.34],[14,21.71],[15,23.77],[16,20.27],[17,34.12],[18,30.54],[19,53.0],[20,16.25],[21,38.19],[22,45.43],[23,8.44],[24,19.54],[25,8.96],[26,22.96],[27,16.33],[28,29.62],[29,39.37],[30,11.65],[31,38.77],[32,16.95],[33,13.11],[34,14.84],[35,14.11],[36,15.23],[37,18.44],[38,9.87],[39,17.79],[40,17.48],[41,8.7],[42,21.11],[43,11.05],[44,11.39],[45,27.09],[46,14.81],[47,11.23],[48,15.86],[49,28.92],[50,30.25],[51,14.5],[52,14.42],[53,12.83],[54,15.57],[55,22.57],[56,23.12],[57,32.0],[58,18.6],[59,10.71],[60,13.74],[61,10.79],[62,13.9],[63,20.17],[64,9.46],[65,14.05],[66,10.95],[67,6.24],[68,6.87],[69,12.09],[70,11.86],[71,17.32],[72,8.02],[73,9.06],[74,19.02],[75,8.23],[76,12.54],[77,29.6],[78,11.86],[79,19.02],[80,12.8],[81,11.78],[82,39.94],[83,9.25],[84,10.61],[85,2.19],[86,23.67],[87,13.09],[88,13.61],[89,3.58],[90,13.11],[91,5.56],[92,3.47],[93,11.99],[94,16.59],[95,12.98],[96,21.55],[97,8.65],[98,15.57],[99,11.49],[100,7.34],[101,11.94],[102,21.08],[103,6.19],[104,11.28],[105,16.61],[106,12.54],[107,11.42],[108,5.93],[109,15.83],[110,30.9]] \ No newline at end of file diff --git a/src/time_slots/19.json b/src/time_slots/19.json deleted file mode 100644 index 1410236..0000000 --- a/src/time_slots/19.json +++ /dev/null @@ -1 +0,0 @@ -[[1,11.86],[2,5.59],[3,6.48],[4,15.6],[5,14.94],[6,8.02],[7,13.98],[8,14.34],[9,13.17],[10,15.54],[11,14.18],[12,9.12],[13,7.68],[14,8.59],[15,8.49],[16,11.02],[17,14.5],[18,11.1],[19,10.08],[20,11.31],[21,19.28],[22,7.05],[23,15.49],[24,10.81],[25,11.26],[26,21.71],[27,10.92],[28,11.78],[29,8.88],[30,10.11],[31,11.57],[32,8.8],[33,8.78],[34,8.05],[35,17.19],[36,9.93],[37,11.42],[38,12.23],[39,11.57],[40,8.8],[41,8.62],[42,12.2],[43,15.18],[44,10.87],[45,13.61],[46,14.52],[47,10.19],[48,16.56],[49,14.99],[50,9.33],[51,11.23],[52,8.88],[53,7.68],[54,11.13],[55,10.32],[56,8.96],[57,3.87],[58,38.45],[59,11.42],[60,14.0],[61,13.74],[62,12.15],[63,9.17],[64,15.78],[65,12.72],[66,7.44],[67,9.33],[68,12.54],[69,11.42],[70,7.37],[71,10.06],[72,8.57],[73,19.3],[74,9.77],[75,24.76],[76,22.21],[77,9.98],[78,6.79],[79,7.92],[80,5.28],[81,7.71],[82,8.83],[83,10.16],[84,7.26],[85,6.32],[86,6.3],[87,8.23],[88,4.7],[89,3.76],[90,10.79],[91,4.65],[92,6.82],[93,10.76],[94,4.68],[95,6.37],[96,9.93],[97,11.7],[98,11.94]] \ No newline at end of file diff --git a/src/time_slots/2.json b/src/time_slots/2.json deleted file mode 100644 index 5301ab0..0000000 --- a/src/time_slots/2.json +++ /dev/null @@ -1 +0,0 @@ -[[1,9.09],[2,11.99],[3,17.19],[4,20.3],[5,14.0],[6,16.35],[7,16.72],[8,15.62],[9,15.49],[10,18.0],[11,13.64],[12,11.62],[13,29.94],[14,22.36],[15,10.76],[16,17.27],[17,23.22],[18,9.72],[19,30.59],[20,35.94],[21,16.56],[22,34.32],[23,27.01],[24,18.57],[25,44.41],[26,50.89],[27,26.49],[28,20.04],[29,23.59],[30,33.67],[31,24.42],[32,14.86],[33,32.99],[34,17.74],[35,21.45],[36,25.0],[37,16.48],[38,21.32],[39,14.99],[40,20.69],[41,25.23],[42,10.55],[43,9.17],[44,17.5],[45,13.71],[46,12.75],[47,16.72],[48,20.87],[49,27.69],[50,15.41],[51,17.42],[52,10.92],[53,9.69],[54,35.21],[55,18.44],[56,10.53],[57,29.02],[58,24.45],[59,21.29],[60,32.08],[61,79.8],[62,35.32],[63,20.48],[64,17.27],[65,14.32],[66,12.75],[67,25.36],[68,23.82],[69,21.89],[70,19.62],[71,28.06],[72,13.95],[73,15.49],[74,46.0],[75,21.45],[76,34.72],[77,10.27],[78,14.0],[79,30.46],[80,28.87],[81,18.7],[82,15.36],[83,47.7],[84,20.48],[85,74.81],[86,16.95],[87,38.77],[88,12.64],[89,31.61],[90,35.21],[91,38.95],[92,16.22],[93,39.6],[94,20.4],[95,13.37],[96,31.27],[97,20.82],[98,18.39],[99,15.96],[100,14.0],[101,27.32],[102,86.05],[103,14.42],[104,17.08],[105,28.45],[106,20.77],[107,17.5],[108,21.47],[109,36.49],[110,23.35],[111,21.47],[112,18.63],[113,37.17],[114,35.74],[115,15.36],[116,14.58],[117,14.71],[118,28.37],[119,14.26],[120,33.52],[121,22.18],[122,15.99],[123,18.63],[124,24.14],[125,31.32],[126,32.68],[127,17.29],[128,22.91],[129,21.76],[130,20.48],[131,10.29],[132,20.61],[133,32.26],[134,15.6],[135,15.39],[136,38.16],[137,23.64],[138,10.68],[139,19.23],[140,36.6],[141,14.5],[142,23.72],[143,53.08],[144,37.93],[145,36.86],[146,19.46],[147,7.13],[148,20.3],[149,17.68],[150,35.55],[151,22.88],[152,8.44],[153,13.82],[154,16.17],[155,18.34],[156,15.1],[157,12.85],[158,24.63],[159,23.88],[160,14.97],[161,17.27],[162,9.64],[163,11.26],[164,52.32],[165,32.5],[166,12.64],[167,24.97],[168,20.74],[169,14.42],[170,23.9],[171,21.5],[172,16.33],[173,28.6],[174,34.87],[175,15.57],[176,16.25],[177,66.8],[178,40.78],[179,9.8],[180,16.4],[181,16.48],[182,16.69],[183,14.94],[184,37.56],[185,48.9],[186,20.85],[187,74.66],[188,21.08],[189,29.54],[190,13.98],[191,30.67],[192,6.84],[193,14.32],[194,23.12],[195,15.26],[196,71.16],[197,34.14],[198,33.12],[199,12.9],[200,24.69],[201,16.27],[202,10.63],[203,29.75],[204,16.51],[205,14.76],[206,13.04],[207,14.58],[208,19.93],[209,14.08],[210,19.17],[211,22.8],[212,23.51],[213,55.61],[214,37.43],[215,30.07],[216,26.17],[217,66.9],[218,19.49],[219,33.75],[220,32.21],[221,50.36],[222,31.66],[223,21.68],[224,17.01],[225,16.69],[226,16.4],[227,7.31],[228,51.67],[229,54.65],[230,34.17],[231,55.38],[232,39.97],[233,74.81],[234,33.8],[235,59.25],[236,29.57],[237,44.98],[238,10.4],[239,16.27],[240,32.08],[241,8.49],[242,8.75],[243,26.44],[244,9.8],[245,20.09],[246,57.16],[247,45.82],[248,38.95],[249,67.71],[250,19.75],[251,32.94],[252,11.0],[253,56.01],[254,26.75],[255,53.13],[256,26.54],[257,33.46],[258,42.79],[259,69.69],[260,40.99],[261,28.0],[262,26.33],[263,17.76],[264,48.01],[265,36.0],[266,48.01],[267,38.82],[268,19.23],[269,19.38],[270,19.07],[271,23.75],[272,33.57],[273,37.38],[274,24.37],[275,50.55],[276,12.43],[277,20.45],[278,14.99],[279,17.76],[280,15.8],[281,15.62],[282,154.98],[283,38.45],[284,31.01],[285,33.07],[286,55.72]] \ No newline at end of file diff --git a/src/time_slots/20.json b/src/time_slots/20.json deleted file mode 100644 index d0ecb66..0000000 --- a/src/time_slots/20.json +++ /dev/null @@ -1 +0,0 @@ -[[1,1.99],[2,6.79],[3,4.62],[4,8.72],[5,3.79],[6,9.48],[7,8.12],[8,9.61],[9,4.02],[10,19.41],[11,6.16],[12,10.61],[13,5.25],[14,12.25],[15,11.36],[16,9.14],[17,4.52],[18,11.73],[19,3.76],[20,6.43],[21,7.26],[22,11.91],[23,4.47],[24,5.41],[25,3.87],[26,3.76],[27,4.88],[28,2.82],[29,4.47],[30,2.46],[31,3.63],[32,3.97],[33,3.81],[34,3.0],[35,5.04],[36,5.2],[37,6.4],[38,7.37],[39,23.09],[40,37.04],[41,3.03],[42,8.28],[43,6.65],[44,7.94],[45,12.04],[46,8.59],[47,24.01],[48,10.5],[49,4.49],[50,8.86],[51,5.07],[52,9.61],[53,22.7],[54,10.06],[55,10.4],[56,7.34],[57,8.1],[58,16.59],[59,8.44],[60,7.26],[61,15.7],[62,8.75],[63,16.59],[64,10.74],[65,14.55],[66,12.38],[67,5.69],[68,6.4],[69,14.5],[70,10.97],[71,33.67],[72,20.92],[73,17.71],[74,12.46],[75,11.76],[76,16.56],[77,17.53],[78,9.82],[79,5.59],[80,20.01],[81,17.29],[82,10.81],[83,6.9],[84,9.61],[85,10.37],[86,28.19],[87,21.6],[88,13.32],[89,10.81],[90,19.93],[91,9.3],[92,6.43],[93,4.94],[94,20.3],[95,4.7],[96,15.93],[97,32.6],[98,13.66],[99,13.95],[100,7.99],[101,9.3],[102,9.43],[103,6.82],[104,11.34],[105,8.1],[106,4.86],[107,6.9],[108,14.42],[109,11.47],[110,9.61],[111,9.72],[112,11.62],[113,17.29],[114,18.29],[115,11.78],[116,13.01],[117,16.43],[118,6.84],[119,6.5],[120,14.08],[121,20.19],[122,8.02],[123,21.97],[124,14.86],[125,10.16],[126,10.53],[127,14.21],[128,19.07],[129,11.26],[130,22.54],[131,22.15],[132,13.84],[133,13.11],[134,26.57],[135,14.26]] \ No newline at end of file diff --git a/src/time_slots/21.json b/src/time_slots/21.json deleted file mode 100644 index fb77ee0..0000000 --- a/src/time_slots/21.json +++ /dev/null @@ -1 +0,0 @@ -[[1,10.61],[2,12.02],[3,21.47],[4,10.48],[5,17.42],[6,11.99],[7,16.46],[8,10.21],[9,12.77],[10,11.86],[11,12.96],[12,10.14],[13,12.83],[14,8.54],[15,9.59],[16,8.83],[17,13.14],[18,13.69],[19,14.84],[20,6.84],[21,8.52],[22,14.39],[23,6.9],[24,24.03],[25,19.49],[26,10.27],[27,8.57],[28,14.16],[29,17.06],[30,22.52],[31,14.99],[32,11.99],[33,12.96],[34,10.11],[35,16.04],[36,18.96],[37,10.79],[38,8.83],[39,16.54],[40,13.11],[41,14.73],[42,15.73],[43,17.27],[44,25.34],[45,14.76],[46,14.45],[47,21.89],[48,11.65],[49,9.82],[50,11.08],[51,11.7],[52,11.47],[53,7.13],[54,10.92],[55,8.07],[56,13.82],[57,10.24],[58,9.2],[59,10.66],[60,8.59],[61,8.88],[62,10.53],[63,10.14],[64,11.0],[65,11.6],[66,10.42],[67,8.93],[68,11.21],[69,10.29],[70,7.18],[71,9.56],[72,12.28],[73,20.98],[74,22.07],[75,8.39],[76,12.67],[77,15.91],[78,14.84],[79,21.26],[80,12.59],[81,16.48],[82,13.64],[83,11.99],[84,19.38],[85,9.14],[86,9.51],[87,23.98],[88,11.23],[89,13.64],[90,25.29],[91,15.67],[92,12.93],[93,9.77],[94,14.0],[95,9.2],[96,13.35],[97,19.15],[98,12.51],[99,12.33],[100,6.9],[101,11.6],[102,9.85],[103,14.94],[104,22.67],[105,12.25],[106,7.24],[107,7.97],[108,16.9],[109,16.25],[110,8.33],[111,8.05],[112,12.3]] \ No newline at end of file diff --git a/src/time_slots/22.json b/src/time_slots/22.json deleted file mode 100644 index c6f06b0..0000000 --- a/src/time_slots/22.json +++ /dev/null @@ -1 +0,0 @@ -[[1,12.51],[2,23.56],[3,12.64],[4,12.93],[5,93.6],[6,13.9],[7,11.73],[8,13.06],[9,15.86],[10,10.61],[11,27.64],[12,13.14],[13,11.47],[14,19.3],[15,27.48],[16,12.9],[17,25.94],[18,40.96],[19,17.37],[20,5.85],[21,4.55],[22,14.68],[23,24.27],[24,9.72],[25,29.57],[26,22.57],[27,15.28],[28,25.99],[29,12.15],[30,23.17],[31,22.99],[32,11.18],[33,14.47],[34,27.51],[35,19.64],[36,36.65],[37,24.11],[38,14.34],[39,12.8],[40,45.48],[41,19.54],[42,11.08],[43,5.77],[44,13.09],[45,20.32],[46,25.16],[47,16.8],[48,13.35],[49,11.42],[50,11.34],[51,12.41],[52,33.23],[53,21.05],[54,23.33],[55,17.48],[56,15.26],[57,11.31],[58,20.11],[59,11.49],[60,18.16],[61,15.96],[62,17.03],[63,17.84],[64,12.33],[65,24.32],[66,13.24],[67,18.83],[68,7.84],[69,10.53],[70,17.48],[71,18.73],[72,36.31],[73,33.15],[74,9.85],[75,14.89],[76,10.74],[77,13.37],[78,49.35]] \ No newline at end of file diff --git a/src/time_slots/23.json b/src/time_slots/23.json deleted file mode 100644 index adaad50..0000000 --- a/src/time_slots/23.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.96],[2,5.33],[3,4.88],[4,5.28],[5,5.3],[6,11.96],[7,10.4],[8,6.9],[9,6.77],[10,4.99],[11,7.63],[12,9.56],[13,8.46],[14,30.28],[15,7.08],[16,7.13],[17,12.67],[18,18.21],[19,17.14],[20,12.72],[21,17.27],[22,5.43],[23,15.8],[24,32.65],[25,9.77],[26,5.51],[27,36.81],[28,12.83],[29,10.61],[30,8.07],[31,7.21],[32,12.67],[33,27.51],[34,8.93],[35,11.76],[36,4.86],[37,8.8],[38,8.99],[39,4.78],[40,6.03],[41,11.18],[42,7.86],[43,6.92],[44,22.62],[45,10.45],[46,7.76],[47,9.38],[48,5.41],[49,7.13],[50,15.15],[51,12.85],[52,11.91],[53,11.57],[54,5.09],[55,9.06],[56,7.05],[57,7.26],[58,5.96],[59,6.03],[60,11.94],[61,8.18],[62,13.06],[63,12.49],[64,10.97],[65,7.63],[66,11.39],[67,6.27],[68,11.31],[69,7.11],[70,12.28],[71,20.09],[72,10.19],[73,7.42],[74,9.93],[75,11.52],[76,9.9],[77,13.45],[78,12.46],[79,7.18],[80,10.5],[81,5.36],[82,12.17],[83,14.6],[84,8.99],[85,6.56],[86,7.16],[87,6.32],[88,12.77],[89,8.23],[90,7.11],[91,22.0],[92,8.12],[93,6.95],[94,5.98],[95,9.4],[96,9.2],[97,6.77],[98,5.12],[99,9.95],[100,21.92],[101,12.33],[102,8.93],[103,13.77],[104,8.02],[105,10.14],[106,12.17],[107,8.86],[108,5.54],[109,17.95],[110,13.77],[111,11.62],[112,5.69],[113,10.27],[114,9.35],[115,11.52],[116,11.02],[117,18.99],[118,8.33]] \ No newline at end of file diff --git a/src/time_slots/24.json b/src/time_slots/24.json deleted file mode 100644 index f2a694c..0000000 --- a/src/time_slots/24.json +++ /dev/null @@ -1 +0,0 @@ -[[1,14.84],[2,31.48],[3,20.27],[4,25.21],[5,11.26],[6,22.28],[7,9.74],[8,13.17],[9,10.4],[10,11.1],[11,27.48],[12,17.29],[13,18.47],[14,15.7],[15,19.8],[16,16.17],[17,11.34],[18,8.07],[19,20.17],[20,10.29],[21,40.28],[22,28.08],[23,15.6],[24,11.73],[25,12.83],[26,26.62],[27,21.55],[28,19.91],[29,17.11],[30,17.66],[31,105.56],[32,22.0],[33,56.56],[34,17.32],[35,58.57],[36,13.82],[37,20.43],[38,15.23],[39,27.77],[40,33.07],[41,22.13],[42,7.18],[43,41.4],[44,11.18],[45,34.01],[46,15.12],[47,18.94],[48,11.47],[49,7.26],[50,15.62],[51,18.39],[52,12.25],[53,18.08],[54,22.7],[55,44.9],[56,8.99],[57,12.8],[58,59.9],[59,19.41],[60,29.36],[61,84.19],[62,45.17],[63,30.69],[64,23.12]] \ No newline at end of file diff --git a/src/time_slots/25.json b/src/time_slots/25.json deleted file mode 100644 index bcfd811..0000000 --- a/src/time_slots/25.json +++ /dev/null @@ -1 +0,0 @@ -[[1,9.93],[2,18.63],[3,22.73],[4,19.91],[5,11.21],[6,11.89],[7,16.01],[8,17.87],[9,10.14],[10,18.39],[11,10.16],[12,11.47],[13,10.95],[14,9.67],[15,14.81],[16,11.31],[17,18.57],[18,23.61],[19,18.99],[20,27.19],[21,22.94],[22,13.32],[23,12.15],[24,10.14],[25,11.99],[26,12.02],[27,10.68],[28,7.24],[29,13.11],[30,10.68],[31,15.12],[32,19.02],[33,8.96],[34,14.37],[35,10.66],[36,12.3],[37,17.87],[38,10.16],[39,8.88],[40,16.9],[41,11.13],[42,18.26],[43,10.29],[44,14.42],[45,15.73],[46,7.05],[47,12.56],[48,17.16],[49,13.58],[50,11.55],[51,7.11],[52,8.99],[53,18.39],[54,13.17],[55,14.55],[56,7.71],[57,14.03],[58,12.83],[59,18.0],[60,14.0],[61,13.4],[62,12.8],[63,14.08],[64,7.65],[65,12.62],[66,7.76],[67,12.41],[68,20.98],[69,8.72],[70,20.19],[71,9.12],[72,8.78],[73,12.05],[74,21.96],[75,12.8],[76,7.31],[77,11.96]] \ No newline at end of file diff --git a/src/time_slots/26.json b/src/time_slots/26.json deleted file mode 100644 index 20a5a43..0000000 --- a/src/time_slots/26.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.59],[2,5.38],[3,7.42],[4,12.77],[5,11.21],[6,10.92],[7,10.53],[8,9.06],[9,5.72],[10,7.73],[11,5.8],[12,7.99],[13,9.12],[14,7.5],[15,10.14],[16,8.67],[17,7.0],[18,10.06],[19,8.96],[20,10.32],[21,12.02],[22,10.29],[23,4.81],[24,11.15],[25,5.8],[26,6.97],[27,8.62],[28,10.89],[29,8.7],[30,5.04],[31,6.84],[32,6.82],[33,7.97],[34,7.76],[35,9.4],[36,7.92],[37,4.36],[38,6.27],[39,7.21],[40,7.71],[41,13.58],[42,6.14],[43,9.14],[44,11.36],[45,7.47],[46,4.21],[47,6.58],[48,3.71],[49,27.4],[50,8.7],[51,13.14],[52,10.55],[53,6.74],[54,8.86],[55,6.09],[56,4.96],[57,6.66],[58,5.17],[59,7.99],[60,5.22],[61,13.17],[62,6.3],[63,14.84],[64,4.65],[65,7.89],[66,4.68],[67,9.61],[68,5.33],[69,4.86],[70,6.27],[71,7.6],[72,4.75],[73,5.3],[74,8.65],[75,6.58],[76,6.4],[77,7.81],[78,4.34],[79,5.41],[80,4.65],[81,5.04],[82,9.12],[83,7.63],[84,5.88],[85,6.3],[86,9.2],[87,4.52],[88,5.96],[89,5.9],[90,5.43],[91,4.86],[92,6.09],[93,8.52],[94,5.04],[95,4.34],[96,5.69],[97,7.18],[98,5.07],[99,6.43],[100,3.89],[101,3.6],[102,7.24],[103,9.82],[104,5.93],[105,5.02],[106,6.84],[107,4.57],[108,4.47],[109,10.5],[110,4.1],[111,7.63],[112,5.67],[113,6.32],[114,4.94],[115,4.7],[116,8.49],[117,4.47],[118,9.59],[119,6.92],[120,4.83],[121,8.52],[122,5.28],[123,4.08],[124,6.35],[125,4.28],[126,4.21],[127,10.03],[128,6.56],[129,5.85],[130,5.75],[131,4.1],[132,6.37],[133,4.88],[134,3.92],[135,7.73],[136,10.27],[137,6.5],[138,3.58],[139,12.38],[140,5.88],[141,4.0],[142,6.77],[143,4.39],[144,4.18],[145,10.79],[146,6.16],[147,4.99],[148,6.43],[149,6.56],[150,4.28],[151,5.51],[152,6.58],[153,7.86],[154,12.77],[155,10.87],[156,9.35],[157,5.09],[158,12.72],[159,6.74],[160,4.96],[161,6.37],[162,4.41],[163,4.34],[164,9.98],[165,4.86],[166,11.55],[167,8.93],[168,5.8],[169,6.11],[170,5.64],[171,5.46],[172,4.13],[173,9.93],[174,9.25],[175,5.46],[176,5.49],[177,6.19],[178,4.47],[179,4.41],[180,10.5],[181,6.4],[182,5.43],[183,11.44],[184,6.22],[185,8.05],[186,10.81],[187,11.62],[188,5.38],[189,11.28],[190,9.59],[191,6.24],[192,6.24],[193,4.21],[194,5.8],[195,5.36],[196,5.49],[197,13.35],[198,6.06],[199,7.18],[200,6.06],[201,7.24],[202,7.37],[203,5.43],[204,4.73],[205,5.46],[206,8.67],[207,6.61],[208,8.88],[209,4.88],[210,5.3],[211,6.16],[212,5.51],[213,9.01],[214,5.36],[215,6.58],[216,9.74],[217,5.12],[218,4.83],[219,4.08],[220,5.15],[221,7.29],[222,5.67],[223,5.64],[224,6.82],[225,7.52],[226,6.24],[227,26.44]] \ No newline at end of file diff --git a/src/time_slots/27.json b/src/time_slots/27.json deleted file mode 100644 index 2105ce5..0000000 --- a/src/time_slots/27.json +++ /dev/null @@ -1 +0,0 @@ -[[1,12.75],[2,5.07],[3,12.02],[4,13.11],[5,12.02],[6,8.54],[7,22.0],[8,16.56],[9,9.33],[10,26.67],[11,13.27],[12,22.41],[13,13.4],[14,15.93],[15,18.83],[16,21.6],[17,11.21],[18,25.97],[19,30.01],[20,12.43],[21,15.28],[22,15.93],[23,13.09],[24,17.42],[25,13.92],[26,9.22],[27,8.05],[28,12.54],[29,11.49],[30,11.36],[31,6.66],[32,13.74],[33,14.03],[34,17.66],[35,12.56],[36,24.11],[37,18.7],[38,12.3],[39,15.88],[40,41.82],[41,13.14],[42,19.07],[43,11.73],[44,32.97],[45,13.09],[46,14.05],[47,15.15],[48,10.11],[49,19.2],[50,10.32],[51,12.38],[52,15.62],[53,7.29],[54,11.15],[55,17.71],[56,18.52],[57,9.74],[58,9.46],[59,15.52],[60,30.54],[61,24.48],[62,18.96],[63,20.48],[64,22.02],[65,13.24],[66,11.36],[67,14.21],[68,14.68],[69,8.15],[70,9.43],[71,7.89],[72,8.91],[73,10.11],[74,9.06],[75,12.77],[76,14.32],[77,6.3],[78,8.23],[79,6.32],[80,10.81],[81,14.5],[82,18.08],[83,13.06],[84,16.09],[85,8.65],[86,16.72],[87,16.43],[88,19.96],[89,12.07],[90,13.04],[91,15.6],[92,15.1],[93,14.08]] \ No newline at end of file diff --git a/src/time_slots/28.json b/src/time_slots/28.json deleted file mode 100644 index 996addc..0000000 --- a/src/time_slots/28.json +++ /dev/null @@ -1 +0,0 @@ -[[1,7.52],[2,4.73],[3,9.56],[4,22.47],[5,14.18],[6,11.83],[7,25.73],[8,17.79],[9,18.91],[10,18.1],[11,11.13],[12,17.66],[13,19.41],[14,13.74],[15,40.44],[16,12.17],[17,9.53],[18,19.57],[19,32.1],[20,19.51],[21,12.15],[22,13.84],[23,28.45],[24,15.26],[25,27.14],[26,11.57],[27,30.75],[28,13.51],[29,31.16],[30,20.04],[31,24.14],[32,24.97],[33,9.14],[34,16.25],[35,18.6],[36,22.52],[37,18.89],[38,29.34],[39,13.69],[40,12.43],[41,11.21],[42,11.91],[43,18.57],[44,13.24],[45,24.14],[46,23.46],[47,25.26],[48,30.67],[49,14.26],[50,23.98],[51,7.52],[52,9.14],[53,18.0],[54,16.48],[55,15.86],[56,14.65],[57,25.65],[58,18.76],[59,23.41],[60,19.17],[61,18.29],[62,10.89],[63,23.61],[64,15.31],[65,8.36],[66,11.15],[67,12.38],[68,15.7],[69,8.05],[70,14.26],[71,20.43],[72,23.07],[73,15.57],[74,12.36],[75,22.6],[76,32.0],[77,30.2],[78,30.28],[79,21.71],[80,16.82],[81,18.89],[82,33.46],[83,16.22],[84,22.28],[85,22.65],[86,17.68],[87,17.63],[88,19.02]] \ No newline at end of file diff --git a/src/time_slots/29.json b/src/time_slots/29.json deleted file mode 100644 index 3843578..0000000 --- a/src/time_slots/29.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.99],[2,13.01],[3,14.42],[4,12.04],[5,14.81],[6,13.95],[7,16.61],[8,24.11],[9,9.85],[10,34.19],[11,9.95],[12,24.45],[13,17.24],[14,18.0],[15,11.78],[16,14.05],[17,29.26],[18,13.58],[19,13.04],[20,21.52],[21,12.7],[22,18.94],[23,18.05],[24,24.03],[25,30.77],[26,15.02],[27,23.75],[28,15.6],[29,28.37],[30,7.89],[31,19.64],[32,18.05],[33,27.09],[34,16.35],[35,10.61],[36,15.73],[37,10.16],[38,21.89],[39,16.74],[40,34.01],[41,24.66],[42,15.31],[43,12.49],[44,13.51],[45,26.64],[46,32.99],[47,27.74],[48,15.28],[49,16.59],[50,20.06],[51,20.38],[52,23.14],[53,20.24],[54,11.28],[55,14.42],[56,12.43],[57,10.34],[58,23.3],[59,7.16],[60,17.06],[61,17.01],[62,14.89],[63,27.87],[64,16.48],[65,14.29],[66,10.24],[67,18.73],[68,18.02],[69,13.01]] \ No newline at end of file diff --git a/src/time_slots/3.json b/src/time_slots/3.json deleted file mode 100644 index e1f253f..0000000 --- a/src/time_slots/3.json +++ /dev/null @@ -1 +0,0 @@ -[[1,7.39],[2,8.46],[3,12.51],[4,23.9],[5,10.4],[6,14.73],[7,56.16],[8,14.65],[9,14.52],[10,20.72],[11,19.33],[12,12.02],[13,37.75],[14,35.5],[15,36.36],[16,17.84],[17,14.34],[18,23.95],[19,31.97],[20,35.97],[21,25.05],[22,15.02],[23,21.29],[24,20.56],[25,15.44],[26,32.39],[27,24.66],[28,31.63],[29,21.94],[30,31.24],[31,17.5],[32,12.17],[33,13.69],[34,10.06],[35,19.96],[36,34.46],[37,41.4],[38,17.89],[39,28.81],[40,18.05],[41,24.32],[42,16.67],[43,9.77],[44,24.74],[45,25.55],[46,8.78],[47,25.0],[48,8.88],[49,55.54],[50,22.31],[51,11.36],[52,25.63],[53,13.17],[54,6.84],[55,32.99],[56,16.3],[57,15.18],[58,7.78],[59,15.88],[60,7.31],[61,40.96],[62,15.15],[63,8.05],[64,37.93],[65,20.61],[66,24.71],[67,16.04],[68,15.57],[69,14.94],[70,10.19],[71,12.64],[72,19.75],[73,33.67],[74,9.82],[75,37.43],[76,10.0],[77,31.22],[78,26.8],[79,31.58],[80,17.95],[81,40.52],[82,8.36],[83,15.31],[84,37.85],[85,12.72],[86,22.47],[87,14.89],[88,9.93],[89,11.21],[90,18.76],[91,25.13],[92,17.24],[93,28.37],[94,11.57],[95,12.33],[96,12.8],[97,28.97],[98,12.72],[99,22.57],[100,17.66],[101,20.58],[102,15.41],[103,45.48],[104,19.17],[105,16.98],[106,20.35],[107,10.48],[108,12.51],[109,10.87],[110,28.08],[111,14.37],[112,40.44],[113,19.46],[114,18.78],[115,14.21],[116,22.36],[117,26.12],[118,32.31],[119,35.89],[120,22.0],[121,12.23],[122,16.22],[123,12.15],[124,16.72],[125,19.41],[126,17.24],[127,12.09],[128,11.26],[129,17.66],[130,15.83],[131,7.08],[132,7.21],[133,14.6],[134,18.36],[135,22.07],[136,19.93],[137,12.49],[138,8.62],[139,10.45],[140,27.06],[141,8.15],[142,13.66],[143,13.74],[144,30.82],[145,24.35],[146,23.33],[147,21.63],[148,12.83],[149,16.56],[150,6.69],[151,19.7],[152,47.57],[153,32.29],[154,82.26],[155,21.29],[156,42.5],[157,17.14],[158,7.86],[159,31.45],[160,20.61],[161,20.14],[162,15.46],[163,10.61],[164,28.73],[165,24.74],[166,11.28],[167,34.9],[168,17.27],[169,15.49],[170,19.88],[171,13.11],[172,18.13],[173,19.2],[174,19.25],[175,15.62],[176,22.57],[177,11.99],[178,21.45],[179,37.17],[180,31.84],[181,25.21],[182,10.06],[183,33.75],[184,15.62],[185,27.43],[186,28.66],[187,24.61],[188,22.2],[189,10.84],[190,13.09],[191,25.18],[192,14.68],[193,25.63],[194,15.7],[195,54.05],[196,7.81],[197,10.19],[198,21.89],[199,33.12],[200,13.17]] \ No newline at end of file diff --git a/src/time_slots/30.json b/src/time_slots/30.json deleted file mode 100644 index 6a737d2..0000000 --- a/src/time_slots/30.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.15],[2,3.5],[3,8.93],[4,14.55],[5,12.17],[6,11.57],[7,10.97],[8,29.47],[9,41.25],[10,17.55],[11,9.95],[12,6.66],[13,14.37],[14,7.58],[15,11.47],[16,14.68],[17,6.87],[18,9.04],[19,14.65],[20,16.77],[21,26.41],[22,17.97],[23,19.28],[24,25.86],[25,19.49],[26,8.12],[27,19.72],[28,35.13],[29,18.68],[30,26.1],[31,10.24],[32,12.98],[33,21.66],[34,9.04],[35,10.97],[36,18.73],[37,17.87],[38,17.11],[39,25.73],[40,29.2],[41,14.81],[42,13.48],[43,14.94],[44,11.26],[45,13.06],[46,22.1],[47,23.07],[48,31.16],[49,10.81],[50,19.59],[51,11.34],[52,13.09],[53,15.93],[54,28.16],[55,13.4],[56,21.24],[57,11.49],[58,23.07],[59,8.41],[60,12.17]] \ No newline at end of file diff --git a/src/time_slots/31.json b/src/time_slots/31.json deleted file mode 100644 index 45aa231..0000000 --- a/src/time_slots/31.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.02],[2,5.36],[3,5.25],[4,11.81],[5,10.21],[6,20.95],[7,19.83],[8,11.05],[9,9.74],[10,36.81],[11,16.35],[12,21.16],[13,14.11],[14,20.82],[15,33.02],[16,24.01],[17,17.37],[18,15.54],[19,13.71],[20,28.92],[21,22.31],[22,17.27],[23,18.78],[24,10.0],[25,18.21],[26,11.31],[27,23.41],[28,13.71],[29,25.57],[30,15.93],[31,20.06],[32,26.83],[33,33.67],[34,30.51]] \ No newline at end of file diff --git a/src/time_slots/32.json b/src/time_slots/32.json deleted file mode 100644 index f2f6317..0000000 --- a/src/time_slots/32.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.62],[2,7.92],[3,19.75],[4,26.28],[5,16.77],[6,6.9],[7,10.37],[8,10.27],[9,14.84],[10,16.27],[11,11.1],[12,18.7],[13,17.79],[14,16.56],[15,17.35],[16,15.78],[17,15.83],[18,10.37],[19,13.77],[20,27.56],[21,11.73],[22,15.7],[23,18.13],[24,14.79],[25,10.84],[26,19.15],[27,19.28],[28,8.39],[29,11.39],[30,9.56]] \ No newline at end of file diff --git a/src/time_slots/33.json b/src/time_slots/33.json deleted file mode 100644 index 40a20c3..0000000 --- a/src/time_slots/33.json +++ /dev/null @@ -1 +0,0 @@ -[[1,16.46],[2,11.99],[3,7.13],[4,36.26],[5,37.43],[6,40.59],[7,19.51],[8,10.74],[9,25.1],[10,20.17],[11,9.3],[12,15.88],[13,29.68],[14,15.65],[15,14.0],[16,14.81],[17,21.34],[18,18.16],[19,42.11],[20,27.69],[21,16.09],[22,24.01],[23,19.25],[24,18.94],[25,17.48],[26,19.38],[27,17.19],[28,23.88],[29,19.02],[30,22.52],[31,18.6],[32,23.9],[33,30.09],[34,14.92],[35,62.33],[36,24.27],[37,50.26],[38,21.45],[39,16.12],[40,21.08],[41,8.07],[42,5.02],[43,17.61],[44,11.39],[45,14.13],[46,7.89],[47,8.86],[48,14.26],[49,33.15],[50,74.4],[51,41.35],[52,25.52],[53,81.19],[54,10.5],[55,43.49],[56,17.84],[57,15.75],[58,14.55],[59,28.29],[60,21.42],[61,8.46],[62,12.15],[63,15.05],[64,7.24],[65,9.51],[66,12.85],[67,14.29],[68,10.16],[69,18.68],[70,9.53],[71,15.39],[72,23.56],[73,20.87]] \ No newline at end of file diff --git a/src/time_slots/34.json b/src/time_slots/34.json deleted file mode 100644 index a519a12..0000000 --- a/src/time_slots/34.json +++ /dev/null @@ -1 +0,0 @@ -[[1,15.1],[2,16.85],[3,31.11],[4,13.95],[5,12.62],[6,15.36],[7,17.4],[8,15.78],[9,28.81],[10,13.66],[11,13.35],[12,28.26],[13,23.59],[14,28.21],[15,23.25],[16,21.21],[17,9.59],[18,19.02],[19,23.35],[20,12.09],[21,19.85],[22,23.82],[23,22.6],[24,18.52],[25,10.0],[26,11.15],[27,13.58],[28,16.85],[29,7.86],[30,10.71],[31,35.13],[32,17.29],[33,37.54],[34,18.16],[35,10.14],[36,14.21],[37,30.3],[38,11.83],[39,24.22],[40,15.67],[41,15.05],[42,19.59],[43,41.82],[44,15.31],[45,14.45],[46,28.03],[47,13.9],[48,7.97],[49,7.63],[50,18.18],[51,9.85],[52,10.71],[53,9.98],[54,15.88]] \ No newline at end of file diff --git a/src/time_slots/35.json b/src/time_slots/35.json deleted file mode 100644 index 53723fe..0000000 --- a/src/time_slots/35.json +++ /dev/null @@ -1 +0,0 @@ -[[1,27.22],[2,16.69],[3,25.0],[4,11.52],[5,17.74],[6,16.17],[7,16.77],[8,30.88],[9,20.98],[10,25.73],[11,36.15],[12,36.7],[13,29.39],[14,20.43],[15,14.42],[16,7.18],[17,5.07],[18,37.88],[19,5.04],[20,4.23],[21,3.6],[22,19.04],[23,4.28],[24,14.92],[25,16.4],[26,7.16],[27,29.0],[28,24.53],[29,19.7],[30,12.51],[31,18.68],[32,25.6],[33,16.38],[34,13.82],[35,15.62],[36,18.13],[37,30.9],[38,13.19],[39,24.45],[40,32.6],[41,21.63],[42,23.8],[43,30.56],[44,30.62],[45,30.04]] \ No newline at end of file diff --git a/src/time_slots/36.json b/src/time_slots/36.json deleted file mode 100644 index f0e4b1b..0000000 --- a/src/time_slots/36.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.41],[2,4.86],[3,4.88],[4,5.36],[5,5.38],[6,11.65],[7,8.7],[8,13.35],[9,14.0],[10,11.55],[11,15.75],[12,18.47],[13,10.74],[14,18.36],[15,16.64],[16,8.78],[17,6.79],[18,16.95],[19,13.79],[20,12.41],[21,8.31],[22,8.72],[23,17.45],[24,7.16],[25,6.53],[26,7.78],[27,7.44],[28,17.55],[29,10.08],[30,12.77],[31,11.44],[32,7.81],[33,13.45],[34,13.32],[35,9.74],[36,15.91],[37,10.32],[38,9.51],[39,9.22],[40,18.52],[41,9.95],[42,7.76],[43,9.82],[44,7.6],[45,11.02],[46,12.12],[47,26.15],[48,8.8],[49,11.34],[50,11.28],[51,10.66],[52,14.97],[53,12.41],[54,13.22],[55,9.12],[56,8.65],[57,7.84],[58,6.37],[59,5.15],[60,13.9],[61,6.82],[62,10.11],[63,8.18],[64,6.69],[65,15.46],[66,12.98],[67,13.77],[68,8.39],[69,14.11],[70,9.48],[71,14.32],[72,8.65],[73,7.37],[74,9.82],[75,9.8],[76,11.94],[77,13.56],[78,11.31],[79,12.72],[80,13.22],[81,16.3],[82,14.84],[83,11.99]] \ No newline at end of file diff --git a/src/time_slots/37.json b/src/time_slots/37.json deleted file mode 100644 index 7692cbf..0000000 --- a/src/time_slots/37.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.28],[2,2.72],[3,3.27],[4,3.45],[5,7.34],[6,8.39],[7,5.64],[8,8.91],[9,5.38],[10,7.84],[11,12.38],[12,3.92],[13,4.36],[14,5.36],[15,6.95],[16,9.69],[17,4.99],[18,4.7],[19,9.2],[20,6.64],[21,7.63],[22,8.18],[23,6.69],[24,5.9],[25,3.76],[26,3.81],[27,7.21],[28,7.05],[29,5.3],[30,10.14],[31,8.2],[32,6.09],[33,6.48],[34,5.38],[35,10.11],[36,9.2],[37,7.16],[38,6.82],[39,6.09],[40,4.88],[41,5.62],[42,4.49],[43,4.0],[44,4.31],[45,6.4],[46,5.22],[47,6.95],[48,5.28],[49,5.09],[50,6.97],[51,7.42],[52,5.38],[53,8.28],[54,4.39],[55,5.22],[56,4.65],[57,6.03],[58,3.0],[59,6.16],[60,4.65],[61,5.02],[62,5.9],[63,5.38],[64,6.61],[65,5.69],[66,7.03],[67,6.43],[68,5.36],[69,7.78],[70,4.86],[71,5.69],[72,4.96],[73,6.09],[74,4.73],[75,6.48],[76,5.93],[77,5.64],[78,3.94],[79,5.41],[80,4.26],[81,4.23],[82,4.18],[83,5.02],[84,5.09],[85,6.03],[86,5.41],[87,5.07],[88,4.49],[89,3.6],[90,3.89],[91,7.6],[92,3.84],[93,4.75],[94,4.81],[95,3.97],[96,4.75],[97,6.32],[98,6.77],[99,5.9],[100,3.94],[101,4.05],[102,25.1],[103,5.88],[104,5.49],[105,7.65],[106,5.07],[107,3.76],[108,4.21],[109,3.68],[110,3.92],[111,4.86],[112,6.58],[113,13.43],[114,5.64],[115,6.45],[116,5.2],[117,5.07],[118,4.88],[119,4.13],[120,4.34],[121,4.65],[122,4.65],[123,4.65],[124,5.04],[125,6.64],[126,8.2],[127,6.14],[128,4.86],[129,4.21],[130,4.73],[131,5.46],[132,4.31],[133,4.91],[134,5.59],[135,4.73],[136,5.36],[137,6.58],[138,5.46],[139,4.52],[140,4.55],[141,5.07],[142,4.94],[143,6.64],[144,6.09],[145,6.3],[146,6.82],[147,6.84],[148,5.51],[149,6.43],[150,8.05],[151,7.68],[152,5.56],[153,4.62],[154,4.13],[155,3.27],[156,4.68],[157,7.0],[158,12.83],[159,5.38],[160,4.88],[161,4.44],[162,5.3],[163,4.68],[164,8.39],[165,7.26],[166,4.6],[167,4.23],[168,6.95],[169,5.64],[170,4.86],[171,7.16],[172,5.15],[173,6.53],[174,3.97],[175,5.07],[176,4.47],[177,7.76],[178,4.31],[179,3.84],[180,6.82],[181,4.34],[182,5.15]] \ No newline at end of file diff --git a/src/time_slots/38.json b/src/time_slots/38.json deleted file mode 100644 index 1fd4cd9..0000000 --- a/src/time_slots/38.json +++ /dev/null @@ -1 +0,0 @@ -[[1,7.55],[2,6.77],[3,10.68],[4,15.83],[5,10.11],[6,15.02],[7,9.82],[8,15.91],[9,9.27],[10,11.52],[11,7.92],[12,10.24],[13,10.37],[14,7.58],[15,13.9],[16,8.88],[17,12.33],[18,9.35],[19,7.37],[20,8.36],[21,7.11],[22,24.69],[23,20.32],[24,39.0],[25,11.26],[26,32.1],[27,18.23],[28,14.32],[29,14.18],[30,11.36],[31,7.16],[32,12.96],[33,8.54],[34,12.43],[35,14.6],[36,8.88],[37,8.02],[38,5.51],[39,7.58],[40,7.0],[41,13.11],[42,8.39],[43,13.01],[44,15.41],[45,11.21],[46,8.31],[47,7.68],[48,9.06],[49,8.25],[50,7.68],[51,11.55],[52,5.72],[53,5.62],[54,6.97],[55,6.45],[56,6.19],[57,7.21],[58,5.9],[59,10.55],[60,11.47],[61,11.21],[62,10.37],[63,6.97],[64,7.34],[65,11.94],[66,8.12],[67,3.63],[68,3.94],[69,8.39],[70,11.36],[71,11.13],[72,9.12],[73,6.53],[74,7.73],[75,13.43],[76,10.48],[77,5.02],[78,6.22],[79,6.66],[80,5.09],[81,4.13],[82,6.69],[83,5.9],[84,5.2],[85,9.3],[86,10.48],[87,5.25],[88,5.98]] \ No newline at end of file diff --git a/src/time_slots/39.json b/src/time_slots/39.json deleted file mode 100644 index c858f42..0000000 --- a/src/time_slots/39.json +++ /dev/null @@ -1 +0,0 @@ -[[1,7.31],[2,12.49],[3,35.11],[4,17.5],[5,26.64],[6,41.33],[7,38.24],[8,38.16],[9,28.32],[10,23.01],[11,9.25],[12,5.75],[13,8.88],[14,4.78],[15,20.51],[16,16.85],[17,14.79],[18,18.05],[19,10.14],[20,21.21],[21,35.29],[22,22.41],[23,35.76],[24,15.2],[25,9.51],[26,13.19],[27,11.81],[28,8.1],[29,21.37],[30,6.74],[31,9.4],[32,15.18],[33,10.29],[34,10.74],[35,13.04],[36,15.18],[37,11.81],[38,38.19],[39,9.72],[40,9.85],[41,23.43],[42,28.71],[43,14.6],[44,11.6],[45,19.12],[46,17.24],[47,24.87],[48,10.5],[49,24.63],[50,11.0],[51,18.68],[52,19.02],[53,22.47],[54,13.95],[55,17.84],[56,15.36],[57,8.65],[58,10.37],[59,11.47],[60,15.75],[61,12.2],[62,9.43],[63,15.15],[64,12.38],[65,15.1],[66,5.8],[67,22.07],[68,22.1],[69,19.7],[70,9.51],[71,46.18],[72,11.05],[73,23.82],[74,19.51],[75,21.0]] \ No newline at end of file diff --git a/src/time_slots/4.json b/src/time_slots/4.json deleted file mode 100644 index af5dfbd..0000000 --- a/src/time_slots/4.json +++ /dev/null @@ -1 +0,0 @@ -[[1,36.26],[2,20.61],[3,27.79],[4,20.04],[5,18.52],[6,49.53],[7,27.04],[8,14.34],[9,16.25],[10,15.57],[11,81.66],[12,92.6],[13,20.19],[14,15.73],[15,27.77],[16,17.58],[17,24.61],[18,26.51],[19,46.0],[20,23.8],[21,12.64],[22,20.27],[23,73.9],[24,52.74],[25,73.87],[26,15.78],[27,14.08],[28,8.83],[29,26.88],[30,13.58],[31,15.7],[32,30.15],[33,24.19],[34,52.64],[35,24.74],[36,34.25],[37,20.22],[38,23.43],[39,16.56],[40,15.15],[41,16.07],[42,14.16],[43,60.0],[44,14.68],[45,13.14],[46,43.13],[47,34.35],[48,20.19],[49,14.68],[50,10.5],[51,22.41],[52,11.83],[53,10.32],[54,22.28],[55,12.72],[56,24.89],[57,28.42],[58,29.99],[59,33.57],[60,38.64],[61,15.23],[62,23.12],[63,17.27],[64,27.79],[65,20.32],[66,28.68],[67,8.83],[68,6.58],[69,25.18],[70,7.92],[71,12.3],[72,18.39],[73,20.74],[74,22.62],[75,36.81],[76,27.06],[77,56.27],[78,43.55],[79,25.23],[80,14.58],[81,28.37],[82,16.74],[83,31.16],[84,11.62],[85,23.69],[86,17.55],[87,18.7],[88,21.94],[89,33.38],[90,32.73],[91,42.68],[92,70.5],[93,23.98],[94,46.73],[95,40.1],[96,10.45],[97,34.56],[98,14.52],[99,10.5],[100,28.5],[101,23.17],[102,77.9],[103,24.92],[104,25.08],[105,21.37],[106,10.53],[107,14.68],[108,19.04],[109,23.75],[110,13.53],[111,13.4],[112,17.08],[113,39.81],[114,27.95],[115,22.15],[116,20.48],[117,15.33],[118,11.18],[119,33.25],[120,8.99],[121,9.95],[122,25.86],[123,22.15],[124,18.13],[125,20.04],[126,11.81],[127,55.51],[128,35.58],[129,27.4],[130,12.93],[131,30.09],[132,9.38],[133,14.42],[134,16.48],[135,43.89],[136,36.44],[137,19.93],[138,7.89],[139,20.06],[140,37.17],[141,42.24],[142,21.76],[143,22.94],[144,22.83],[145,11.42],[146,20.9],[147,12.72],[148,14.94],[149,15.2],[150,26.46],[151,12.09],[152,19.38],[153,43.36],[154,22.36],[155,28.63],[156,7.92],[157,35.19],[158,9.61],[159,15.05],[160,16.98],[161,18.99],[162,37.38],[163,44.98],[164,17.45],[165,20.22],[166,18.96],[167,12.96],[168,13.27],[169,14.29],[170,27.87],[171,63.24],[172,26.72],[173,35.58],[174,16.54],[175,22.23],[176,61.6]] \ No newline at end of file diff --git a/src/time_slots/40.json b/src/time_slots/40.json deleted file mode 100644 index 54a595b..0000000 --- a/src/time_slots/40.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.28],[2,7.16],[3,13.66],[4,12.88],[5,25.29],[6,11.62],[7,33.23],[8,20.85],[9,14.99],[10,16.51],[11,16.54],[12,17.92],[13,16.25],[14,8.41],[15,15.99],[16,18.16],[17,14.21],[18,16.25],[19,7.94],[20,17.74],[21,28.94],[22,18.44],[23,8.75],[24,9.25],[25,23.85],[26,18.81],[27,13.22],[28,40.78],[29,28.06],[30,11.57],[31,14.16],[32,7.81],[33,13.69],[34,32.0],[35,25.21],[36,10.03],[37,25.47],[38,9.12],[39,12.28],[40,25.81],[41,11.39],[42,14.26],[43,22.65],[44,16.25],[45,11.0],[46,16.95],[47,25.84],[48,13.06],[49,13.17],[50,19.23],[51,12.75],[52,11.86],[53,11.15],[54,5.12],[55,13.95],[56,26.07],[57,13.22],[58,17.01],[59,12.51],[60,17.01],[61,21.05],[62,13.51],[63,8.52],[64,29.54],[65,16.43],[66,20.87],[67,42.63],[68,14.6],[69,10.81],[70,12.33],[71,7.78],[72,6.06],[73,7.26],[74,17.06],[75,11.7],[76,10.42],[77,17.97],[78,34.87],[79,10.45],[80,14.16],[81,8.65],[82,26.59],[83,18.78],[84,14.79],[85,18.89]] \ No newline at end of file diff --git a/src/time_slots/41.json b/src/time_slots/41.json deleted file mode 100644 index b2f7a54..0000000 --- a/src/time_slots/41.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.71],[2,6.16],[3,10.21],[4,9.01],[5,27.17],[6,25.63],[7,9.27],[8,10.06],[9,16.61],[10,22.18],[11,20.98],[12,25.5],[13,11.0],[14,28.08],[15,25.76],[16,24.37],[17,15.2],[18,6.87],[19,9.35],[20,16.09],[21,21.86],[22,33.46],[23,13.53],[24,12.3],[25,28.19],[26,11.44],[27,14.11],[28,20.06],[29,19.2],[30,24.32],[31,19.3],[32,4.7],[33,14.92],[34,17.84],[35,14.18],[36,14.34],[37,21.5],[38,13.53],[39,28.53],[40,29.78],[41,11.96],[42,12.54],[43,15.86],[44,38.61],[45,18.63],[46,14.89],[47,30.35],[48,12.67],[49,12.41],[50,41.2],[51,15.46],[52,14.73],[53,20.82],[54,14.92]] \ No newline at end of file diff --git a/src/time_slots/42.json b/src/time_slots/42.json deleted file mode 100644 index 25a0000..0000000 --- a/src/time_slots/42.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.26],[2,12.09],[3,10.87],[4,8.65],[5,25.18],[6,17.03],[7,26.46],[8,22.67],[9,20.35],[10,16.77],[11,22.99],[12,15.86],[13,43.18],[14,31.87],[15,39.94],[16,19.67],[17,14.39],[18,23.93],[19,11.6],[20,19.8],[21,21.6],[22,26.25],[23,31.97],[24,24.11],[25,12.28],[26,15.99],[27,20.17],[28,12.77],[29,17.76],[30,12.09],[31,13.22],[32,6.69],[33,15.23],[34,7.05],[35,10.19],[36,20.06],[37,10.84],[38,13.64],[39,7.81],[40,16.56],[41,9.35],[42,13.51],[43,7.58],[44,18.68],[45,31.97],[46,17.35],[47,21.0],[48,32.68],[49,18.83],[50,15.26],[51,24.01],[52,30.43],[53,13.45]] \ No newline at end of file diff --git a/src/time_slots/43.json b/src/time_slots/43.json deleted file mode 100644 index f299da4..0000000 --- a/src/time_slots/43.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.57],[2,3.53],[3,8.49],[4,8.99],[5,9.74],[6,7.08],[7,8.25],[8,9.53],[9,13.22],[10,11.28],[11,16.64],[12,10.87],[13,19.15],[14,7.11],[15,10.45],[16,8.15],[17,12.98],[18,8.07],[19,15.8],[20,14.08],[21,10.06],[22,17.61],[23,28.97],[24,17.92],[25,8.99],[26,12.9],[27,5.88],[28,9.17],[29,15.02],[30,11.23],[31,9.82],[32,28.97],[33,20.66],[34,6.97],[35,14.16],[36,10.4],[37,10.0],[38,13.32],[39,9.35],[40,11.18],[41,8.41],[42,9.01],[43,9.25],[44,7.24],[45,13.84],[46,13.61],[47,11.15],[48,14.29],[49,11.83],[50,8.15],[51,15.54],[52,8.75],[53,14.11],[54,10.16],[55,10.06],[56,6.56],[57,8.39],[58,13.27],[59,12.25],[60,11.02],[61,12.96],[62,8.78],[63,18.39],[64,10.24],[65,10.71],[66,10.95],[67,10.95],[68,8.49],[69,6.87],[70,7.34],[71,19.33],[72,9.01],[73,8.18],[74,7.76],[75,5.98],[76,7.21],[77,10.11],[78,9.3],[79,7.21],[80,11.89],[81,8.12],[82,8.67],[83,9.8],[84,11.44],[85,14.32],[86,12.75],[87,10.79],[88,10.16],[89,8.78]] \ No newline at end of file diff --git a/src/time_slots/44.json b/src/time_slots/44.json deleted file mode 100644 index 1c8cff3..0000000 --- a/src/time_slots/44.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.36],[2,3.55],[3,12.15],[4,5.67],[5,8.12],[6,7.42],[7,11.31],[8,12.49],[9,4.68],[10,7.11],[11,5.62],[12,6.79],[13,8.54],[14,7.18],[15,10.03],[16,8.78],[17,10.58],[18,9.48],[19,10.53],[20,7.63],[21,4.62],[22,9.9],[23,7.0],[24,8.2],[25,6.14],[26,4.47],[27,5.46],[28,5.77],[29,9.85],[30,8.7],[31,8.31],[32,6.77],[33,8.88],[34,6.74],[35,8.33],[36,9.43],[37,15.05],[38,9.38],[39,11.28],[40,6.61],[41,9.48],[42,8.23],[43,4.28],[44,2.82],[45,3.92],[46,2.69],[47,6.14],[48,6.56],[49,5.59],[50,6.82],[51,5.67],[52,4.49],[53,9.33],[54,5.72],[55,5.88],[56,9.77],[57,6.61],[58,8.1],[59,4.99]] \ No newline at end of file diff --git a/src/time_slots/45.json b/src/time_slots/45.json deleted file mode 100644 index acaeb84..0000000 --- a/src/time_slots/45.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.09],[2,7.18],[3,7.65],[4,12.72],[5,24.92],[6,13.35],[7,4.73],[8,13.94],[9,71.57],[10,18.96],[11,10.42],[12,14.13],[13,16.04],[14,14.0],[15,12.02],[16,18.44],[17,26.15],[18,14.92],[19,19.07],[20,9.87],[21,20.14],[22,13.71],[23,25.6],[24,21.66],[25,21.24],[26,17.19],[27,12.41],[28,16.35],[29,14.89],[30,14.65],[31,14.05],[32,20.69],[33,10.11],[34,15.12],[35,18.21],[36,8.65],[37,9.64]] \ No newline at end of file diff --git a/src/time_slots/46.json b/src/time_slots/46.json deleted file mode 100644 index b19da00..0000000 --- a/src/time_slots/46.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.83],[2,6.69],[3,18.44],[4,28.71],[5,18.36],[6,11.34],[7,15.15],[8,23.88],[9,20.61],[10,25.18],[11,22.86],[12,19.17],[13,12.04],[14,12.43],[15,51.83],[16,20.32],[17,30.67],[18,19.72],[19,11.55],[20,31.22],[21,24.4],[22,14.34],[23,15.83],[24,19.75],[25,16.17],[26,40.46],[27,11.13],[28,16.98],[29,21.26],[30,20.9],[31,14.99],[32,18.34],[33,23.35],[34,17.01],[35,26.98]] \ No newline at end of file diff --git a/src/time_slots/47.json b/src/time_slots/47.json deleted file mode 100644 index 1207a2e..0000000 --- a/src/time_slots/47.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.02],[2,17.97],[3,17.66],[4,42.21],[5,3.87],[6,5.09],[7,12.75],[8,6.71],[9,8.84],[10,16.56],[11,10.79],[12,25.7],[13,15.23],[14,16.46],[15,48.43],[16,26.25],[17,7.11],[18,17.37],[19,17.82],[20,27.59],[21,13.37],[22,10.89],[23,10.37],[24,7.97],[25,15.31],[26,15.18],[27,9.51],[28,13.64],[29,10.27],[30,17.19],[31,11.76],[32,20.95],[33,13.61],[34,14.39],[35,12.96],[36,16.17],[37,8.23],[38,39.0]] \ No newline at end of file diff --git a/src/time_slots/48.json b/src/time_slots/48.json deleted file mode 100644 index ecdba06..0000000 --- a/src/time_slots/48.json +++ /dev/null @@ -1 +0,0 @@ -[[1,6.58],[2,15.8],[3,5.33],[4,23.75],[5,23.38],[6,33.85],[7,9.43],[8,9.17],[9,12.8],[10,26.59],[11,37.02],[12,22.23],[13,11.86],[14,17.29],[15,33.96],[16,31.53],[17,28.0],[18,18.86],[19,10.0],[20,23.25],[21,13.74],[22,12.62],[23,11.36],[24,18.81],[25,45.77],[26,32.57],[27,31.61],[28,15.15],[29,67.84]] \ No newline at end of file diff --git a/src/time_slots/49.json b/src/time_slots/49.json deleted file mode 100644 index 90b8fbe..0000000 --- a/src/time_slots/49.json +++ /dev/null @@ -1 +0,0 @@ -[[1,16.67],[2,24.63],[3,21.52],[4,11.02],[5,11.78],[6,24.01],[7,33.38],[8,7.18],[9,38.64],[10,12.98],[11,49.29],[12,34.69],[13,29.31],[14,29.47],[15,23.75],[16,14.58],[17,19.38],[18,12.09]] \ No newline at end of file diff --git a/src/time_slots/5.json b/src/time_slots/5.json deleted file mode 100644 index 6ea5597..0000000 --- a/src/time_slots/5.json +++ /dev/null @@ -1 +0,0 @@ -[[1,28.03],[2,68.99],[3,80.3],[4,39.73],[5,56.01],[6,93.81],[7,24.5],[8,35.24],[9,13.69],[10,14.55],[11,27.61],[12,67.76],[13,44.12],[14,33.99],[15,30.2],[16,22.62],[17,44.36],[18,46.34],[19,39.16],[20,27.32],[21,18.81],[22,23.46],[23,29.23],[24,24.37],[25,14.5],[26,16.35],[27,27.43],[28,21.66],[29,17.68],[30,10.19],[31,27.09],[32,51.72],[33,42.27],[34,14.81],[35,16.8],[36,24.37],[37,15.46],[38,19.2],[39,15.57],[40,23.04],[41,75.31],[42,35.66],[43,20.58],[44,54.65],[45,41.17],[46,32.13],[47,20.11],[48,67.68],[49,37.17],[50,11.94],[51,30.22],[52,30.22],[53,21.29],[54,44.17],[55,16.2],[56,12.33],[57,27.72],[58,15.44],[59,23.51],[60,31.74],[61,16.46],[62,12.98],[63,14.81],[64,52.9],[65,15.96],[66,26.88],[67,23.07],[68,30.59],[69,19.59],[70,23.69],[71,22.13],[72,34.19],[73,24.32],[74,9.2],[75,25.86],[76,14.34],[77,23.28],[78,16.82],[79,11.73],[80,17.89],[81,19.33],[82,34.22],[83,21.68],[84,14.63],[85,18.08],[86,11.34],[87,18.34],[88,14.94],[89,49.14],[90,19.3],[91,24.11],[92,15.93],[93,24.37],[94,28.13],[95,61.39],[96,19.88],[97,26.17],[98,10.55],[99,10.89],[100,16.88],[101,24.24],[102,8.62],[103,23.54],[104,24.03],[105,22.83],[106,53.37],[107,35.11],[108,24.5],[109,16.09],[110,62.17],[111,15.15],[112,24.22],[113,16.46],[114,28.0],[115,20.11],[116,40.65],[117,30.85],[118,12.8],[119,27.22],[120,13.27]] \ No newline at end of file diff --git a/src/time_slots/50.json b/src/time_slots/50.json deleted file mode 100644 index 80cba22..0000000 --- a/src/time_slots/50.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.31],[2,14.37],[3,9.14],[4,8.93],[5,10.37],[6,14.73],[7,13.01],[8,6.79],[9,14.89],[10,6.66],[11,10.21],[12,8.05],[13,5.75],[14,10.45],[15,10.0],[16,13.22],[17,8.25],[18,7.47],[19,9.33],[20,5.43],[21,9.3],[22,12.56],[23,5.22],[24,6.16],[25,5.88],[26,9.48],[27,11.68],[28,8.39],[29,8.83],[30,8.39],[31,6.69],[32,6.64],[33,8.72],[34,6.45],[35,8.59],[36,14.68],[37,10.81],[38,12.83],[39,10.95],[40,6.56],[41,7.5],[42,8.67],[43,6.97],[44,9.8],[45,15.75]] \ No newline at end of file diff --git a/src/time_slots/51.json b/src/time_slots/51.json deleted file mode 100644 index a1450a4..0000000 --- a/src/time_slots/51.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.16],[2,3.16],[3,3.0],[4,3.42],[5,4.21],[6,3.53],[7,4.52],[8,4.52],[9,3.19],[10,3.06],[11,5.33],[12,4.26],[13,4.41],[14,8.2],[15,6.64],[16,10.74],[17,5.98],[18,4.83],[19,8.02],[20,5.07],[21,6.4],[22,5.98],[23,13.3],[24,6.37],[25,11.23],[26,8.36],[27,5.98],[28,9.98],[29,11.02],[30,8.39],[31,5.36],[32,9.67],[33,5.93],[34,5.72],[35,6.48],[36,7.0],[37,9.38],[38,9.17],[39,6.79],[40,8.1],[41,6.74],[42,8.18],[43,6.5],[44,8.93],[45,8.02],[46,8.8],[47,9.09],[48,5.72],[49,8.41],[50,8.54],[51,11.0],[52,12.51],[53,6.53],[54,6.3],[55,6.69],[56,6.95],[57,9.87],[58,6.4],[59,10.29],[60,8.05]] \ No newline at end of file diff --git a/src/time_slots/52.json b/src/time_slots/52.json deleted file mode 100644 index c81e0ba..0000000 --- a/src/time_slots/52.json +++ /dev/null @@ -1 +0,0 @@ -[[1,2.35],[2,3.5],[3,4.18],[4,3.03],[5,3.29],[6,2.93],[7,4.15],[8,3.19],[9,4.39],[10,3.47],[11,5.46],[12,5.02],[13,6.3],[14,7.99],[15,7.16],[16,13.51],[17,7.18],[18,10.4],[19,7.16],[20,9.74],[21,24.08],[22,8.91],[23,8.75],[24,8.93],[25,7.37],[26,8.15],[27,6.69],[28,9.2],[29,9.14],[30,7.5],[31,8.31],[32,9.09],[33,5.85],[34,7.92],[35,6.35],[36,6.35],[37,8.15],[38,11.1],[39,4.52],[40,8.23],[41,5.54],[42,7.52],[43,10.76],[44,10.71],[45,7.5],[46,8.52],[47,10.92],[48,10.5],[49,7.52]] \ No newline at end of file diff --git a/src/time_slots/53.json b/src/time_slots/53.json deleted file mode 100644 index 1caf411..0000000 --- a/src/time_slots/53.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.13],[2,4.28],[3,4.0],[4,4.34],[5,3.63],[6,3.97],[7,3.5],[8,3.53],[9,4.52],[10,7.0],[11,4.15],[12,4.34],[13,4.39],[14,4.1],[15,4.34],[16,4.05],[17,3.92],[18,5.46],[19,4.18],[20,3.87],[21,4.7],[22,5.43],[23,33.41],[24,4.52],[25,4.39],[26,17.24],[27,12.64],[28,13.37],[29,10.29],[30,14.92],[31,15.1],[32,34.56],[33,4.0],[34,4.05],[35,5.38],[36,5.02],[37,3.92],[38,5.41],[39,5.98],[40,3.5],[41,6.19],[42,5.02],[43,4.68],[44,4.78],[45,7.18],[46,4.18],[47,4.18],[48,4.49],[49,4.21],[50,5.67],[51,3.89],[52,8.72],[53,3.08],[54,3.37],[55,6.3],[56,5.54],[57,2.9],[58,5.15],[59,4.86],[60,4.34],[61,3.34],[62,4.18]] \ No newline at end of file diff --git a/src/time_slots/54.json b/src/time_slots/54.json deleted file mode 100644 index 0d60fff..0000000 --- a/src/time_slots/54.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.51],[2,8.28],[3,10.48],[4,9.59],[5,6.48],[6,8.72],[7,11.13],[8,8.41],[9,11.49],[10,7.71],[11,9.61],[12,9.98],[13,6.11],[14,6.53],[15,7.44],[16,3.94],[17,6.82],[18,6.45],[19,11.1],[20,8.96],[21,3.92],[22,7.71],[23,3.71],[24,13.09],[25,7.81],[26,5.38],[27,8.07],[28,10.24],[29,4.94],[30,3.94],[31,11.05],[32,7.11],[33,4.91],[34,11.76],[35,6.9],[36,6.45],[37,10.11],[38,6.48],[39,3.47],[40,7.24],[41,5.59],[42,9.06],[43,10.68],[44,5.59],[45,4.55],[46,6.06],[47,5.62],[48,7.58],[49,5.8],[50,9.53],[51,7.21],[52,4.41],[53,5.17],[54,6.11],[55,6.35]] \ No newline at end of file diff --git a/src/time_slots/55.json b/src/time_slots/55.json deleted file mode 100644 index 68dc858..0000000 --- a/src/time_slots/55.json +++ /dev/null @@ -1 +0,0 @@ -[[1,2.53],[2,3.27],[3,3.53],[4,3.42],[5,4.68],[6,4.99],[7,6.71],[8,4.34],[9,6.84],[10,4.88],[11,6.9],[12,4.86],[13,7.24],[14,7.65],[15,7.55],[16,7.63],[17,6.09],[18,7.18],[19,4.44],[20,5.04],[21,7.58],[22,5.41],[23,7.11],[24,7.13],[25,7.68],[26,4.02],[27,6.37],[28,7.42],[29,8.67],[30,7.18],[31,5.28],[32,7.37],[33,20.69],[34,6.64],[35,11.18],[36,6.66],[37,9.01],[38,6.84],[39,10.87],[40,7.84],[41,9.25],[42,6.45],[43,6.64],[44,5.56],[45,6.95],[46,5.85],[47,6.56],[48,4.39],[49,6.53],[50,4.05],[51,6.84],[52,5.69],[53,6.66],[54,11.55],[55,6.58],[56,12.41],[57,6.74],[58,5.62],[59,6.58],[60,5.54],[61,6.32],[62,4.26],[63,6.71],[64,5.12],[65,6.43],[66,4.44],[67,7.13],[68,6.82],[69,6.74],[70,4.34],[71,6.9],[72,5.64],[73,6.79],[74,8.31],[75,6.37],[76,7.6],[77,6.27],[78,6.61]] \ No newline at end of file diff --git a/src/time_slots/56.json b/src/time_slots/56.json deleted file mode 100644 index a83b0c1..0000000 --- a/src/time_slots/56.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.37],[2,3.68],[3,2.85],[4,3.63],[5,3.13],[6,5.33],[7,4.41],[8,6.27],[9,6.11],[10,4.0],[11,4.49],[12,4.39],[13,3.79],[14,3.94],[15,3.42],[16,5.49],[17,6.3],[18,7.34],[19,5.83],[20,5.46],[21,5.12],[22,2.74],[23,4.47],[24,5.85],[25,6.79],[26,4.99],[27,6.74],[28,3.5],[29,4.02],[30,3.5],[31,4.36],[32,3.58],[33,4.78],[34,3.11],[35,8.25],[36,3.94],[37,2.69],[38,3.06],[39,3.97],[40,4.0],[41,6.27],[42,3.97],[43,4.83],[44,4.05],[45,5.88],[46,6.19],[47,11.96],[48,4.68],[49,4.96],[50,6.95],[51,9.77],[52,5.67],[53,4.0],[54,4.21],[55,3.63],[56,3.97],[57,5.2],[58,4.0],[59,7.21],[60,7.42],[61,10.45],[62,7.94],[63,4.39],[64,7.11],[65,7.99],[66,3.55],[67,3.37],[68,6.4],[69,8.49],[70,8.93],[71,5.51],[72,8.02],[73,7.24],[74,4.6],[75,6.58],[76,6.66],[77,5.62],[78,4.44],[79,5.04],[80,5.2],[81,6.32],[82,5.59],[83,5.43],[84,5.85],[85,7.44],[86,6.06],[87,7.03],[88,6.9],[89,6.95],[90,6.61],[91,4.96],[92,10.74],[93,3.68],[94,2.43],[95,5.07],[96,5.15]] \ No newline at end of file diff --git a/src/time_slots/57.json b/src/time_slots/57.json deleted file mode 100644 index c6e038e..0000000 --- a/src/time_slots/57.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.54],[2,10.42],[3,9.72],[4,32.55],[5,8.52],[6,11.6],[7,19.85],[8,17.24],[9,19.51],[10,38.97],[11,13.24],[12,24.71],[13,34.27],[14,27.64],[15,15.78],[16,30.51],[17,15.02],[18,15.1],[19,26.44],[20,48.3],[21,28.06],[22,20.22],[23,14.47],[24,14.86],[25,37.85],[26,20.82],[27,56.53],[28,22.96],[29,23.09]] \ No newline at end of file diff --git a/src/time_slots/58.json b/src/time_slots/58.json deleted file mode 100644 index 57b91b1..0000000 --- a/src/time_slots/58.json +++ /dev/null @@ -1 +0,0 @@ -[[1,19.36],[2,32.6],[3,25.91],[4,33.33],[5,23.98],[6,18.44],[7,43.02],[8,45.61],[9,26.12],[10,21.08],[11,31.63],[12,23.51],[13,26.64],[14,17.16],[15,12.36],[16,12.56],[17,18.1],[18,20.87],[19,18.73],[20,12.88],[21,10.92],[22,65.46]] \ No newline at end of file diff --git a/src/time_slots/59.json b/src/time_slots/59.json deleted file mode 100644 index b83e71c..0000000 --- a/src/time_slots/59.json +++ /dev/null @@ -1 +0,0 @@ -[[1,9.4],[2,46.18],[3,16.9],[4,15.8],[5,16.25],[6,28.71],[7,42.97],[8,25.36],[9,40.8],[10,26.91],[11,37.51],[12,19.7],[13,15.2],[14,28.0],[15,11.7],[16,19.33],[17,13.98],[18,19.83],[19,13.9],[20,15.12],[21,22.44],[22,13.32],[23,21.66],[24,20.24]] \ No newline at end of file diff --git a/src/time_slots/6.json b/src/time_slots/6.json deleted file mode 100644 index 664e031..0000000 --- a/src/time_slots/6.json +++ /dev/null @@ -1 +0,0 @@ -[[1,17.5],[2,18.29],[3,11.47],[4,11.36],[5,14.99],[6,38.14],[7,17.87],[8,16.38],[9,10.24],[10,13.32],[11,9.46],[12,24.48],[13,9.61],[14,22.26],[15,9.48],[16,9.77],[17,18.0],[18,8.23],[19,41.51],[20,18.39],[21,13.48],[22,16.95],[23,13.84],[24,11.6],[25,37.8],[26,12.51],[27,16.04],[28,14.34],[29,8.49],[30,18.44],[31,30.35],[32,17.24],[33,18.26],[34,24.74],[35,32.1],[36,13.84],[37,18.57],[38,26.67],[39,21.97],[40,14.52],[41,12.43],[42,17.45],[43,16.17],[44,26.46],[45,9.33],[46,21.76],[47,11.81],[48,14.6],[49,9.64],[50,29.54],[51,17.97],[52,28.79],[53,22.13],[54,29.86],[55,8.57],[56,21.26],[57,20.92],[58,14.18],[59,30.8],[60,26.8],[61,18.39],[62,12.83],[63,19.44],[64,11.62],[65,28.19],[66,9.14],[67,6.69],[68,23.95],[69,13.37],[70,47.33],[71,43.13],[72,9.77],[73,27.43],[74,16.54],[75,10.76],[76,18.44],[77,24.19],[78,22.75],[79,13.27],[80,34.27],[81,25.13],[82,14.63],[83,20.51],[84,25.26],[85,9.06],[86,11.0],[87,14.92],[88,14.03],[89,21.76],[90,17.37],[91,47.78],[92,24.66],[93,50.39],[94,35.84],[95,18.1],[96,13.24],[97,15.8],[98,18.29],[99,61.0],[100,18.83],[101,17.29],[102,15.44],[103,8.91],[104,18.99],[105,10.79],[106,12.04],[107,17.92],[108,26.57],[109,25.5],[110,16.2],[111,26.1],[112,24.22],[113,14.79],[114,25.42],[115,12.98],[116,16.3],[117,9.64],[118,11.81],[119,29.02],[120,13.04],[121,24.79],[122,24.42],[123,16.2],[124,32.73],[125,31.16],[126,11.44],[127,9.95],[128,43.36],[129,9.27],[130,37.38],[131,10.61],[132,11.89],[133,20.82],[134,10.11],[135,19.88],[136,38.56],[137,24.92],[138,34.27],[139,27.92],[140,21.86],[141,44.25],[142,18.99],[143,29.99],[144,43.86],[145,40.18],[146,30.54],[147,13.56],[148,41.3],[149,10.0],[150,30.48],[151,44.38],[152,32.89],[153,20.56],[154,20.92],[155,11.86],[156,18.94],[157,41.06],[158,39.84],[159,21.55],[160,19.57],[161,19.38],[162,9.95],[163,7.81],[164,29.47],[165,25.84]] \ No newline at end of file diff --git a/src/time_slots/60.json b/src/time_slots/60.json deleted file mode 100644 index e95c7d6..0000000 --- a/src/time_slots/60.json +++ /dev/null @@ -1 +0,0 @@ -[[1,65.83],[2,18.96],[3,17.45],[4,67.45],[5,15.33],[6,19.15],[7,16.95],[8,22.8],[9,26.75],[10,74.32],[11,26.02],[12,49.61],[13,18.83]] \ No newline at end of file diff --git a/src/time_slots/61.json b/src/time_slots/61.json deleted file mode 100644 index 1303983..0000000 --- a/src/time_slots/61.json +++ /dev/null @@ -1 +0,0 @@ -[[1,9.67],[2,9.33],[3,8.46],[4,14.58],[5,24.87],[6,36.73],[7,16.22],[8,13.35],[9,14.79],[10,13.32],[11,17.63],[12,19.2],[13,10.87],[14,42.71]] \ No newline at end of file diff --git a/src/time_slots/62.json b/src/time_slots/62.json deleted file mode 100644 index e561eb3..0000000 --- a/src/time_slots/62.json +++ /dev/null @@ -1 +0,0 @@ -[[1,11.34],[2,23.01],[3,9.95],[4,10.87],[5,22.94],[6,18.86],[7,13.04],[8,18.44],[9,22.52],[10,14.81],[11,22.47]] \ No newline at end of file diff --git a/src/time_slots/63.json b/src/time_slots/63.json deleted file mode 100644 index 343d51c..0000000 --- a/src/time_slots/63.json +++ /dev/null @@ -1 +0,0 @@ -[[1,20.27],[2,14.29],[3,10.63],[4,26.67],[5,14.73],[6,16.54],[7,22.44],[8,21.94],[9,20.22],[10,24.29],[11,14.08]] \ No newline at end of file diff --git a/src/time_slots/64.json b/src/time_slots/64.json deleted file mode 100644 index ada86b1..0000000 --- a/src/time_slots/64.json +++ /dev/null @@ -1 +0,0 @@ -[[1,13.58],[2,13.17],[3,10.81],[4,13.61],[5,12.56],[6,20.72],[7,19.28],[8,13.58],[9,31.84],[10,14.97],[11,16.95],[12,12.36],[13,9.64],[14,21.68],[15,12.04],[16,18.49],[17,12.3],[18,6.4]] \ No newline at end of file diff --git a/src/time_slots/65.json b/src/time_slots/65.json deleted file mode 100644 index 659cc54..0000000 --- a/src/time_slots/65.json +++ /dev/null @@ -1 +0,0 @@ -[[1,45.35],[2,33.04],[3,17.97],[4,30.09],[5,15.6],[6,42.11],[7,26.31],[8,15.33],[9,7.21],[10,16.01],[11,35.6],[12,26.64]] \ No newline at end of file diff --git a/src/time_slots/66.json b/src/time_slots/66.json deleted file mode 100644 index 5aaad39..0000000 --- a/src/time_slots/66.json +++ /dev/null @@ -1 +0,0 @@ -[[1,15.91],[2,10.66],[3,28.94],[4,22.8],[5,27.77],[6,28.71],[7,11.91],[8,49.21],[9,15.65],[10,28.42],[11,21.32],[12,18.81]] \ No newline at end of file diff --git a/src/time_slots/67.json b/src/time_slots/67.json deleted file mode 100644 index fa1ec1c..0000000 --- a/src/time_slots/67.json +++ /dev/null @@ -1 +0,0 @@ -[[1,8.39],[2,11.26],[3,16.3],[4,9.9],[5,15.23],[6,8.39],[7,8.33],[8,14.68],[9,16.74],[10,9.9],[11,7.18],[12,11.02],[13,9.8],[14,5.98],[15,12.56],[16,10.45],[17,13.04],[18,7.37],[19,18.31],[20,14.5],[21,11.7],[22,14.45],[23,13.37],[24,7.0],[25,6.61],[26,9.95],[27,15.26],[28,13.45],[29,12.46],[30,15.18]] \ No newline at end of file diff --git a/src/time_slots/68.json b/src/time_slots/68.json deleted file mode 100644 index 9792a0e..0000000 --- a/src/time_slots/68.json +++ /dev/null @@ -1 +0,0 @@ -[[1,7.94],[2,5.38],[3,5.49],[4,4.81],[5,4.0],[6,3.29],[7,10.45],[8,3.71],[9,4.1],[10,5.36],[11,7.71],[12,6.09],[13,4.41],[14,4.78],[15,8.67],[16,4.73],[17,13.3],[18,2.85],[19,10.16],[20,3.32],[21,3.4],[22,6.74],[23,5.12],[24,6.74],[25,4.91],[26,9.74],[27,3.32],[28,6.74],[29,8.7],[30,6.37],[31,7.86],[32,13.09],[33,9.64],[34,7.55],[35,4.75],[36,3.92],[37,4.75],[38,5.17],[39,11.39],[40,4.86],[41,11.02],[42,9.77],[43,12.88],[44,10.32],[45,5.51],[46,8.02],[47,5.04],[48,9.93],[49,12.33],[50,6.53],[51,14.86],[52,5.9]] \ No newline at end of file diff --git a/src/time_slots/69.json b/src/time_slots/69.json deleted file mode 100644 index b906a0e..0000000 --- a/src/time_slots/69.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.89],[2,4.39],[3,6.61],[4,5.33],[5,5.75],[6,8.33],[7,17.29],[8,4.96],[9,8.93],[10,6.35],[11,7.08],[12,8.05],[13,5.54],[14,7.24],[15,4.52],[16,7.18],[17,11.89],[18,7.52],[19,10.81],[20,6.56],[21,3.76],[22,3.68],[23,2.98],[24,9.82],[25,11.21],[26,3.45],[27,4.52],[28,5.09],[29,3.81],[30,3.13],[31,4.18],[32,8.67],[33,6.69],[34,5.54],[35,4.86],[36,5.02],[37,5.72],[38,5.04],[39,3.27],[40,5.67],[41,7.11],[42,8.05],[43,4.41],[44,5.62],[45,4.02],[46,5.02],[47,6.56],[48,5.46],[49,7.31],[50,5.25],[51,4.08],[52,4.86]] \ No newline at end of file diff --git a/src/time_slots/7.json b/src/time_slots/7.json deleted file mode 100644 index 136085c..0000000 --- a/src/time_slots/7.json +++ /dev/null @@ -1 +0,0 @@ -[[1,12.41],[2,13.37],[3,18.91],[4,12.83],[5,15.57],[6,9.2],[7,9.8],[8,11.52],[9,14.68],[10,11.86],[11,19.17],[12,14.65],[13,10.97],[14,6.92],[15,4.57],[16,9.12],[17,17.71],[18,13.95],[19,17.14],[20,25.86],[21,6.92],[22,31.79],[23,12.8],[24,11.55],[25,7.86],[26,22.41],[27,33.62],[28,22.36],[29,15.62],[30,18.18],[31,15.86],[32,25.34],[33,26.8],[34,13.66],[35,19.23],[36,13.17],[37,40.91],[38,45.01],[39,14.58],[40,25.31],[41,12.96],[42,16.8],[43,45.09],[44,27.27],[45,11.39],[46,22.73],[47,13.66],[48,18.1],[49,18.78],[50,21.68],[51,22.54],[52,12.07],[53,40.2],[54,36.68],[55,9.93],[56,15.78],[57,38.16],[58,17.89],[59,19.8],[60,11.13],[61,10.27],[62,10.08],[63,16.69],[64,16.2],[65,13.53],[66,15.46],[67,11.36],[68,7.26],[69,32.39],[70,18.81],[71,34.66],[72,16.14],[73,35.13],[74,28.55],[75,24.08],[76,11.08],[77,15.05],[78,7.63],[79,14.99],[80,13.48],[81,17.08],[82,17.29],[83,9.38],[84,10.24],[85,38.61],[86,26.72],[87,22.02],[88,22.78],[89,37.9],[90,12.3],[91,7.21],[92,13.74],[93,15.02],[94,19.88],[95,25.26],[96,20.98],[97,11.96],[98,10.5],[99,10.03],[100,19.83],[101,25.44],[102,10.63],[103,18.57],[104,9.56],[105,20.24],[106,11.91],[107,6.82],[108,7.81],[109,7.99],[110,8.18],[111,8.78],[112,4.62],[113,12.09],[114,5.85],[115,13.84],[116,14.29],[117,11.76],[118,5.98],[119,5.41],[120,5.25],[121,7.55],[122,4.15],[123,18.89],[124,12.64],[125,8.8],[126,21.58],[127,24.06],[128,19.02],[129,20.98],[130,12.8],[131,27.43],[132,10.89],[133,18.39],[134,24.22],[135,13.56],[136,15.26],[137,34.3],[138,27.87],[139,13.4],[140,9.67],[141,27.59],[142,29.1],[143,50.52],[144,16.72],[145,24.29],[146,36.7],[147,17.11],[148,23.46],[149,19.28],[150,44.77],[151,11.15],[152,17.08],[153,15.36],[154,16.25],[155,48.22],[156,37.36],[157,59.48],[158,38.14],[159,11.62],[160,54.73],[161,23.54],[162,18.47],[163,31.82],[164,21.45],[165,21.37],[166,10.95],[167,23.09],[168,18.96],[169,43.31],[170,12.15],[171,24.89],[172,30.56],[173,21.63],[174,8.25],[175,17.27],[176,35.06],[177,13.61],[178,12.72],[179,31.11],[180,17.84],[181,10.06],[182,10.48],[183,5.25],[184,12.72],[185,23.54],[186,11.1],[187,41.77],[188,28.11],[189,33.7],[190,16.67],[191,7.39],[192,9.98],[193,15.39],[194,17.16],[195,28.0],[196,10.08],[197,12.7],[198,12.41],[199,7.65],[200,14.18],[201,12.85],[202,7.76],[203,25.6],[204,9.38],[205,16.35],[206,12.8]] \ No newline at end of file diff --git a/src/time_slots/70.json b/src/time_slots/70.json deleted file mode 100644 index d388e0b..0000000 --- a/src/time_slots/70.json +++ /dev/null @@ -1 +0,0 @@ -[[1,6.16],[2,4.23],[3,3.5],[4,11.21],[5,3.4],[6,4.23],[7,2.66],[8,5.22],[9,3.76],[10,4.44],[11,10.97],[12,3.32],[13,4.02],[14,6.45],[15,4.18],[16,2.98],[17,3.79],[18,2.61],[19,4.78],[20,3.68],[21,3.92],[22,2.61],[23,5.98],[24,6.3],[25,4.96],[26,4.81],[27,6.14],[28,4.99],[29,5.07],[30,10.63],[31,8.31],[32,6.37],[33,6.35],[34,5.72],[35,5.72],[36,5.41],[37,4.31],[38,7.55],[39,7.47],[40,9.53],[41,8.41],[42,8.44],[43,10.19],[44,10.5]] \ No newline at end of file diff --git a/src/time_slots/71.json b/src/time_slots/71.json deleted file mode 100644 index 9b116f2..0000000 --- a/src/time_slots/71.json +++ /dev/null @@ -1 +0,0 @@ -[[1,14.0],[2,5.96],[3,5.46],[4,20.35],[5,7.03],[6,6.58],[7,19.75],[8,4.88],[9,8.33],[10,7.65],[11,6.32],[12,11.42],[13,4.94],[14,3.53],[15,7.63],[16,7.86],[17,5.49],[18,7.0],[19,4.7],[20,5.02],[21,13.43],[22,4.34],[23,15.12],[24,8.91],[25,15.28],[26,8.05],[27,11.52],[28,16.3]] \ No newline at end of file diff --git a/src/time_slots/72.json b/src/time_slots/72.json deleted file mode 100644 index 4d0b554..0000000 --- a/src/time_slots/72.json +++ /dev/null @@ -1 +0,0 @@ -[[1,13.24],[2,10.27],[3,9.12],[4,7.08],[5,10.95],[6,12.43],[7,9.3],[8,11.44],[9,13.56],[10,12.7],[11,11.13],[12,11.13],[13,16.04],[14,13.19],[15,6.37],[16,9.69],[17,11.34],[18,7.73],[19,10.32],[20,9.56],[21,7.76],[22,11.42],[23,18.1],[24,12.3],[25,10.92],[26,7.55],[27,12.07],[28,13.22]] \ No newline at end of file diff --git a/src/time_slots/73.json b/src/time_slots/73.json deleted file mode 100644 index 653c7f9..0000000 --- a/src/time_slots/73.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.33],[2,3.63],[3,4.99],[4,5.54],[5,5.98],[6,7.94],[7,5.9],[8,6.27],[9,8.59],[10,7.34],[11,7.84],[12,6.53],[13,6.19],[14,9.09],[15,14.84],[16,7.68],[17,8.88],[18,9.51],[19,10.14],[20,82.26]] \ No newline at end of file diff --git a/src/time_slots/74.json b/src/time_slots/74.json deleted file mode 100644 index da0388f..0000000 --- a/src/time_slots/74.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.08],[2,2.04],[3,2.43],[4,2.93],[5,2.64],[6,3.66],[7,2.51],[8,4.05],[9,5.17],[10,4.52],[11,4.1],[12,4.65],[13,2.61],[14,3.71],[15,4.39],[16,6.69],[17,3.45],[18,4.44],[19,2.74],[20,3.5],[21,2.4],[22,2.87],[23,3.71],[24,6.53],[25,4.6],[26,2.56],[27,3.81],[28,3.03],[29,2.98],[30,3.27],[31,67.58],[32,2.32],[33,2.72],[34,3.5],[35,3.4],[36,2.61],[37,8.46],[38,4.91],[39,4.41],[40,6.01],[41,2.51],[42,3.08],[43,4.44],[44,3.68],[45,6.3],[46,4.73],[47,4.26],[48,6.19],[49,4.7],[50,4.99],[51,3.27],[52,8.36],[53,4.6],[54,4.52],[55,3.79],[56,12.09]] \ No newline at end of file diff --git a/src/time_slots/75.json b/src/time_slots/75.json deleted file mode 100644 index 5982a8e..0000000 --- a/src/time_slots/75.json +++ /dev/null @@ -1 +0,0 @@ -[[1,5.04],[2,5.36],[3,6.16],[4,6.37],[5,5.59],[6,4.02],[7,3.24],[8,2.04],[9,3.34],[10,5.83],[11,2.51],[12,4.78],[13,7.39],[14,5.49],[15,3.37],[16,5.25],[17,5.25],[18,5.02],[19,4.94],[20,5.02],[21,2.95],[22,5.09],[23,3.66],[24,4.83],[25,5.77],[26,5.3],[27,3.87],[28,4.68],[29,3.71],[30,4.99],[31,3.87],[32,3.87],[33,5.69],[34,2.87],[35,4.05],[36,5.64],[37,6.48],[38,5.2],[39,6.22],[40,8.2]] \ No newline at end of file diff --git a/src/time_slots/76.json b/src/time_slots/76.json deleted file mode 100644 index 9a705b2..0000000 --- a/src/time_slots/76.json +++ /dev/null @@ -1 +0,0 @@ -[[1,9.93],[2,13.11],[3,9.56],[4,9.72],[5,9.72],[6,8.18],[7,8.83],[8,8.96],[9,11.78],[10,7.73],[11,9.56],[12,6.71],[13,10.89],[14,8.44],[15,11.42],[16,7.39],[17,8.25],[18,6.4],[19,12.43],[20,8.28],[21,18.0],[22,9.48],[23,7.13],[24,7.81],[25,5.49],[26,7.44],[27,12.75],[28,12.38],[29,10.32],[30,12.64],[31,10.68]] \ No newline at end of file diff --git a/src/time_slots/77.json b/src/time_slots/77.json deleted file mode 100644 index 33537f9..0000000 --- a/src/time_slots/77.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.47],[2,3.24],[3,3.47],[4,2.85],[5,3.08],[6,2.82],[7,4.28],[8,3.21],[9,3.66],[10,3.11],[11,3.13],[12,3.34],[13,2.32],[14,5.12],[15,5.07],[16,3.47],[17,4.52],[18,4.26],[19,5.09],[20,7.16],[21,4.57],[22,3.13],[23,3.94],[24,5.02],[25,3.4],[26,4.49],[27,10.89],[28,5.02],[29,7.97],[30,6.69],[31,4.78],[32,6.09],[33,4.13],[34,4.81],[35,4.78],[36,4.08],[37,4.75],[38,6.14],[39,5.64],[40,4.78],[41,6.16],[42,3.97],[43,7.44],[44,4.83],[45,4.62],[46,6.45],[47,4.88],[48,5.17],[49,4.83],[50,5.67]] \ No newline at end of file diff --git a/src/time_slots/78.json b/src/time_slots/78.json deleted file mode 100644 index 0c6afee..0000000 --- a/src/time_slots/78.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.47],[2,3.32],[3,3.84],[4,3.29],[5,3.74],[6,3.76],[7,2.77],[8,3.29],[9,4.0],[10,3.42],[11,3.94],[12,4.94],[13,4.36],[14,7.37],[15,4.1],[16,3.5],[17,4.6],[18,6.06],[19,5.38],[20,4.91],[21,4.81],[22,3.08],[23,4.91],[24,5.64],[25,4.0],[26,3.74],[27,5.28],[28,4.78],[29,4.81],[30,5.93],[31,5.02],[32,4.36],[33,2.95],[34,3.08],[35,5.96],[36,7.21],[37,10.03],[38,13.98],[39,9.2],[40,18.47]] \ No newline at end of file diff --git a/src/time_slots/79.json b/src/time_slots/79.json deleted file mode 100644 index fd7c35a..0000000 --- a/src/time_slots/79.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.87],[2,3.4],[3,3.08],[4,3.0],[5,3.21],[6,3.11],[7,2.72],[8,4.78],[9,2.98],[10,6.48],[11,4.75],[12,4.99],[13,4.7],[14,3.42],[15,3.76],[16,6.9],[17,4.96],[18,6.14],[19,3.84],[20,3.97],[21,2.27],[22,3.32],[23,2.32],[24,3.68],[25,6.01],[26,6.01],[27,8.41],[28,4.05],[29,4.78],[30,4.36],[31,5.96],[32,3.08],[33,4.05],[34,8.25],[35,5.41],[36,4.23],[37,3.4],[38,3.74],[39,4.62],[40,7.81],[41,4.68],[42,5.17],[43,4.18],[44,3.66],[45,7.5],[46,9.74]] \ No newline at end of file diff --git a/src/time_slots/8.json b/src/time_slots/8.json deleted file mode 100644 index aefdf8c..0000000 --- a/src/time_slots/8.json +++ /dev/null @@ -1 +0,0 @@ -[[1,23.46],[2,21.16],[3,9.8],[4,16.2],[5,13.61],[6,13.35],[7,29.65],[8,8.99],[9,15.36],[10,20.69],[11,32.99],[12,25.97],[13,19.91],[14,8.57],[15,14.86],[16,29.54],[17,26.12],[18,7.44],[19,27.66],[20,15.26],[21,9.59],[22,14.11],[23,13.48],[24,28.0],[25,19.15],[26,26.64],[27,16.9],[28,18.52],[29,24.03],[30,19.96],[31,21.6],[32,20.53],[33,16.51],[34,25.84],[35,16.67],[36,29.96],[37,22.75],[38,18.76],[39,19.12],[40,13.74],[41,46.18],[42,40.23],[43,23.43],[44,23.09],[45,16.51],[46,15.28],[47,21.26],[48,40.93],[49,21.71],[50,16.69],[51,11.26],[52,21.84],[53,19.15],[54,23.95],[55,12.38],[56,12.98],[57,12.49],[58,20.22],[59,11.08],[60,35.68],[61,14.5],[62,15.52],[63,22.57],[64,9.77],[65,34.32],[66,35.19],[67,20.53],[68,11.26],[69,15.15],[70,30.85],[71,14.11],[72,56.53],[73,16.9],[74,24.01],[75,25.97]] \ No newline at end of file diff --git a/src/time_slots/80.json b/src/time_slots/80.json deleted file mode 100644 index d36cb95..0000000 --- a/src/time_slots/80.json +++ /dev/null @@ -1 +0,0 @@ -[[1,2.9],[2,3.94],[3,4.68],[4,4.65],[5,3.06],[6,3.37],[7,3.89],[8,5.56],[9,1.99],[10,3.47],[11,4.44],[12,3.27],[13,3.37],[14,3.45],[15,2.22],[16,2.51],[17,4.55],[18,3.27],[19,4.55],[20,3.71],[21,4.18],[22,4.96],[23,4.94],[24,5.75],[25,4.65],[26,4.05],[27,4.0],[28,3.08],[29,3.27],[30,3.16],[31,3.5],[32,4.21],[33,4.96],[34,4.41],[35,3.11],[36,3.4],[37,7.76],[38,4.65],[39,3.81],[40,4.91],[41,2.8],[42,5.56]] \ No newline at end of file diff --git a/src/time_slots/81.json b/src/time_slots/81.json deleted file mode 100644 index ddd066a..0000000 --- a/src/time_slots/81.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.13],[2,4.15],[3,3.21],[4,3.55],[5,3.03],[6,3.58],[7,4.0],[8,3.37],[9,4.18],[10,3.19],[11,4.65],[12,3.37],[13,4.02],[14,5.88],[15,4.31],[16,3.21],[17,2.98],[18,3.13],[19,5.09],[20,5.12],[21,3.66],[22,3.84],[23,4.99],[24,3.6],[25,4.52],[26,2.9],[27,4.94],[28,7.0],[29,10.21]] \ No newline at end of file diff --git a/src/time_slots/82.json b/src/time_slots/82.json deleted file mode 100644 index ab9b441..0000000 --- a/src/time_slots/82.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.83],[2,3.76],[3,3.34],[4,3.4],[5,5.88],[6,7.86],[7,5.28],[8,6.9],[9,4.78],[10,4.57],[11,3.29],[12,3.58],[13,4.34],[14,4.73],[15,3.58],[16,4.86],[17,4.96],[18,6.01],[19,9.64]] \ No newline at end of file diff --git a/src/time_slots/83.json b/src/time_slots/83.json deleted file mode 100644 index a1a8338..0000000 --- a/src/time_slots/83.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.68],[2,6.16],[3,6.01],[4,7.52],[5,2.56],[6,5.88],[7,7.6],[8,4.65],[9,3.47],[10,4.99],[11,4.99],[12,6.84],[13,7.65],[14,7.86],[15,7.73],[16,4.88],[17,7.05],[18,7.05],[19,5.17],[20,3.03],[21,3.45],[22,4.15],[23,4.47],[24,4.65],[25,4.34],[26,8.2],[27,3.94],[28,4.81],[29,8.12],[30,4.49],[31,7.39],[32,9.95],[33,5.69],[34,6.45],[35,5.56],[36,5.59]] \ No newline at end of file diff --git a/src/time_slots/84.json b/src/time_slots/84.json deleted file mode 100644 index 8d35713..0000000 --- a/src/time_slots/84.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.02],[2,3.71],[3,2.56],[4,4.0],[5,3.76],[6,10.06],[7,5.49],[8,5.46],[9,5.17],[10,6.19],[11,3.42],[12,2.19],[13,5.46],[14,4.81],[15,5.88],[16,3.74],[17,2.19],[18,2.9],[19,4.36],[20,3.94],[21,5.83],[22,4.1],[23,3.84],[24,4.41],[25,9.14]] \ No newline at end of file diff --git a/src/time_slots/85.json b/src/time_slots/85.json deleted file mode 100644 index 97d95a7..0000000 --- a/src/time_slots/85.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.88],[2,2.9],[3,3.47],[4,3.58],[5,3.94],[6,3.45],[7,6.22],[8,8.7],[9,10.16],[10,13.74],[11,14.84],[12,4.21],[13,4.39],[14,3.58],[15,2.74],[16,3.4],[17,3.71],[18,2.93],[19,4.18],[20,5.83],[21,3.89],[22,3.66]] \ No newline at end of file diff --git a/src/time_slots/86.json b/src/time_slots/86.json deleted file mode 100644 index 1ab2b98..0000000 --- a/src/time_slots/86.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.58],[2,3.79],[3,2.69],[4,5.72],[5,5.09],[6,4.62],[7,5.36],[8,4.54],[9,2.95],[10,5.28],[11,4.31],[12,2.98],[13,3.76],[14,2.64],[15,3.84],[16,2.43],[17,5.33]] \ No newline at end of file diff --git a/src/time_slots/87.json b/src/time_slots/87.json deleted file mode 100644 index c4af181..0000000 --- a/src/time_slots/87.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.37],[2,2.93],[3,2.85],[4,3.74],[5,4.0],[6,3.4],[7,8.05],[8,3.03],[9,3.92],[10,3.42],[11,3.32],[12,4.0],[13,4.88],[14,3.34],[15,3.92],[16,4.78],[17,4.02],[18,4.23],[19,3.79]] \ No newline at end of file diff --git a/src/time_slots/88.json b/src/time_slots/88.json deleted file mode 100644 index 035b637..0000000 --- a/src/time_slots/88.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.92],[2,4.0],[3,2.74],[4,3.03],[5,3.47],[6,5.67],[7,5.04],[8,4.34],[9,2.77],[10,3.11],[11,3.53],[12,3.37],[13,3.68],[14,3.29],[15,3.11],[16,3.34],[17,5.77],[18,3.81],[19,3.4],[20,3.42],[21,5.41],[22,3.6],[23,3.84],[24,4.88],[25,4.23],[26,4.41]] \ No newline at end of file diff --git a/src/time_slots/89.json b/src/time_slots/89.json deleted file mode 100644 index b57b83a..0000000 --- a/src/time_slots/89.json +++ /dev/null @@ -1 +0,0 @@ -[[1,1.72],[2,2.4],[3,2.77],[4,2.85],[5,4.23],[6,5.12],[7,3.06],[8,5.28],[9,5.56],[10,3.58],[11,4.13],[12,3.74],[13,5.15],[14,4.39],[15,12.96],[16,10.92],[17,5.38],[18,6.22],[19,4.94],[20,4.78],[21,6.69],[22,6.11],[23,13.01],[24,5.67],[25,6.11],[26,4.6],[27,6.45],[28,6.64],[29,3.29],[30,3.11]] \ No newline at end of file diff --git a/src/time_slots/9.json b/src/time_slots/9.json deleted file mode 100644 index cf855e5..0000000 --- a/src/time_slots/9.json +++ /dev/null @@ -1 +0,0 @@ -[[1,13.66],[2,16.2],[3,38.37],[4,27.12],[5,30.41],[6,20.11],[7,25.86],[8,20.53],[9,17.5],[10,13.74],[11,17.58],[12,22.54],[13,28.42],[14,15.52],[15,14.55],[16,29.49],[17,24.53],[18,29.78],[19,30.17],[20,24.53],[21,14.79],[22,13.22],[23,28.16],[24,51.88],[25,30.35],[26,22.73],[27,14.86],[28,34.77],[29,30.67],[30,27.04],[31,33.8],[32,17.06],[33,14.84],[34,36.13],[35,22.05],[36,48.69],[37,40.23],[38,29.88],[39,20.51],[40,49.08],[41,22.78],[42,29.28],[43,13.37],[44,20.64],[45,18.16],[46,19.02],[47,24.63],[48,16.2],[49,18.68],[50,18.52],[51,14.18],[52,27.43],[53,13.01],[54,27.01],[55,20.35],[56,13.61],[57,11.34],[58,15.54],[59,29.26],[60,30.43],[61,29.83],[62,15.1],[63,19.44],[64,19.83],[65,19.02],[66,20.19],[67,26.96],[68,21.5],[69,44.75],[70,33.33],[71,36.05],[72,29.34],[73,16.95],[74,50.49],[75,15.65],[76,13.17],[77,17.95],[78,14.68],[79,26.02],[80,27.61],[81,32.89],[82,13.09],[83,31.22],[84,21.5],[85,21.11],[86,24.45],[87,11.94],[88,20.43],[89,15.41],[90,20.01],[91,28.16],[92,23.04],[93,21.68],[94,32.76],[95,23.48],[96,13.82],[97,19.88],[98,22.39],[99,31.63],[100,35.3],[101,45.79],[102,20.43],[103,19.72],[104,18.36],[105,21.97],[106,15.33],[107,32.57],[108,25.16],[109,26.85],[110,17.84],[111,46.32],[112,30.41],[113,23.09],[114,34.22],[115,21.24],[116,19.07],[117,32.73],[118,35.81],[119,10.42],[120,58.2],[121,26.75],[122,31.06],[123,23.61],[124,27.74],[125,15.65],[126,22.44],[127,27.32],[128,20.19],[129,18.89]] \ No newline at end of file diff --git a/src/time_slots/90.json b/src/time_slots/90.json deleted file mode 100644 index 9d4e2af..0000000 --- a/src/time_slots/90.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.15],[2,4.28],[3,3.6],[4,4.75],[5,5.07],[6,4.28],[7,5.02],[8,4.26],[9,3.84],[10,3.94],[11,3.11],[12,4.65],[13,1.91],[14,5.83],[15,3.55],[16,4.13],[17,10.61],[18,4.65],[19,7.34],[20,4.18]] \ No newline at end of file diff --git a/src/time_slots/91.json b/src/time_slots/91.json deleted file mode 100644 index 0c0cd74..0000000 --- a/src/time_slots/91.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.37],[2,2.98],[3,4.02],[4,3.45],[5,4.26],[6,3.32],[7,4.21],[8,4.99],[9,3.89],[10,4.1],[11,4.05],[12,3.6],[13,7.13],[14,10.74],[15,3.6]] \ No newline at end of file diff --git a/src/time_slots/92.json b/src/time_slots/92.json deleted file mode 100644 index da08b9c..0000000 --- a/src/time_slots/92.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.32],[2,3.6],[3,4.44],[4,3.42],[5,3.71],[6,2.87],[7,3.55],[8,4.44],[9,2.95],[10,3.74],[11,5.96],[12,3.53],[13,5.2],[14,5.09],[15,5.59],[16,3.68],[17,3.55],[18,4.65],[19,6.61],[20,5.46],[21,2.35]] \ No newline at end of file diff --git a/src/time_slots/93.json b/src/time_slots/93.json deleted file mode 100644 index e476d86..0000000 --- a/src/time_slots/93.json +++ /dev/null @@ -1 +0,0 @@ -[[1,1.62],[2,2.82],[3,4.15],[4,5.12],[5,4.81],[6,4.65],[7,5.54],[8,5.62],[9,4.83],[10,4.68],[11,4.78]] \ No newline at end of file diff --git a/src/time_slots/94.json b/src/time_slots/94.json deleted file mode 100644 index 0ce4e20..0000000 --- a/src/time_slots/94.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.14],[2,3.66],[3,4.52],[4,3.34],[5,3.79],[6,3.74],[7,3.4],[8,3.21]] \ No newline at end of file diff --git a/src/time_slots/95.json b/src/time_slots/95.json deleted file mode 100644 index 54b377a..0000000 --- a/src/time_slots/95.json +++ /dev/null @@ -1 +0,0 @@ -[[1,3.19],[2,2.61],[3,3.79],[4,6.4],[5,5.22],[6,8.86],[7,4.41],[8,4.99]] \ No newline at end of file diff --git a/src/time_slots/96.json b/src/time_slots/96.json deleted file mode 100644 index e44febc..0000000 --- a/src/time_slots/96.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.47],[2,3.76],[3,3.58],[4,3.37],[5,4.62],[6,5.72],[7,2.8],[8,4.18],[9,3.08],[10,2.82],[11,4.41],[12,2.87],[13,4.57],[14,5.04],[15,6.92],[16,4.73],[17,2.56],[18,2.82],[19,4.83]] \ No newline at end of file diff --git a/src/time_slots/97.json b/src/time_slots/97.json deleted file mode 100644 index 3d25e6f..0000000 --- a/src/time_slots/97.json +++ /dev/null @@ -1 +0,0 @@ -[[1,6.69],[2,4.88],[3,5.02],[4,9.93],[5,4.57]] \ No newline at end of file diff --git a/src/time_slots/98.json b/src/time_slots/98.json deleted file mode 100644 index 334721f..0000000 --- a/src/time_slots/98.json +++ /dev/null @@ -1 +0,0 @@ -[[1,11.83],[2,6.58],[3,3.92],[4,10.53],[5,18.18],[6,16.25],[7,9.43],[8,22.39]] \ No newline at end of file diff --git a/src/time_slots/99.json b/src/time_slots/99.json deleted file mode 100644 index 4d3f176..0000000 --- a/src/time_slots/99.json +++ /dev/null @@ -1 +0,0 @@ -[[1,4.55],[2,4.13],[3,4.1],[4,4.65],[5,3.92],[6,7.55],[7,6.16],[8,6.61]] \ No newline at end of file