From b97a1d8770a73b6716350466734db9796a8d8f8a Mon Sep 17 00:00:00 2001 From: albertlast Date: Wed, 20 Dec 2023 09:16:07 +0100 Subject: [PATCH 01/22] Vue3 Nuxt3 first step Not fully working --- pvtools/.gitignore | 24 + pvtools/README.md | 112 +- pvtools/app.vue | 4 + pvtools/components/BarChart.vue | 117 +- pvtools/components/Chart.vue | 148 +- pvtools/components/FAQ.vue | 261 +- .../{functions => composables}/ImportTest.csv | 0 pvtools/composables/SLP.js | 448 + .../{functions => composables}/SLP.test.js | 0 pvtools/composables/calcHeatpump.js | 147 + .../calcHeatpump.test.js | 0 .../{functions => composables}/calcProfile.js | 0 .../convertConsumptionUploads.test.js | 0 .../composables/convertConsumptionUploads.ts | 87 + .../createRegression.js | 0 .../energyFlow.test.js | 0 pvtools/composables/energyFlow.ts | 623 + .../integration.test.js | 0 pvtools/composables/regression.js | 7142 ++ .../regressiondb.csv | 0 .../seriescalc.json | 0 .../seriescalc2.json | 0 pvtools/nuxt.config.ts | 5 + pvtools/package-lock.json | 22027 ++--- pvtools/package.json | 40 +- .../pages/{impress/index.vue => impress.vue} | 0 pvtools/pages/index2.vue | 1277 + pvtools/public/favicon.ico | Bin 0 -> 4286 bytes pvtools/server/tsconfig.json | 3 + pvtools/tsconfig.json | 4 + {pvtools => pvtoolsOld}/.editorconfig | 0 {pvtools => pvtoolsOld}/Dockerfile | 0 pvtoolsOld/README.md | 93 + pvtoolsOld/components/BarChart.vue | 106 + pvtoolsOld/components/Chart.vue | 127 + pvtoolsOld/components/FAQ.vue | 150 + .../components/NuxtLogo.vue | 0 .../components/Tutorial.vue | 6 - pvtoolsOld/functions/ImportTest.csv | 8761 ++ {pvtools => pvtoolsOld}/functions/SLP.js | 0 pvtoolsOld/functions/SLP.test.js | 47 + .../functions/calcHeatpump.js | 0 pvtoolsOld/functions/calcHeatpump.test.js | 119 + pvtoolsOld/functions/calcProfile.js | 77 + .../functions/convertConsumptionUploads.js | 0 .../convertConsumptionUploads.test.js | 22 + pvtoolsOld/functions/createRegression.js | 34 + .../functions/energyFlow.js | 0 pvtoolsOld/functions/energyFlow.test.js | 528 + pvtoolsOld/functions/integration.test.js | 150 + .../functions/regression.json | 0 pvtoolsOld/functions/regressiondb.csv | 71 + pvtoolsOld/functions/seriescalc.json | 79201 ++++++++++++++++ pvtoolsOld/functions/seriescalc2.json | 79201 ++++++++++++++++ {pvtools => pvtoolsOld}/jest.config.js | 0 {pvtools => pvtoolsOld}/nuxt.config.js | 0 pvtoolsOld/package-lock.json | 17306 ++++ pvtoolsOld/package.json | 36 + .../pages/consumptionProfiles/index.vue | 0 pvtoolsOld/pages/impress/index.vue | 767 + {pvtools => pvtoolsOld}/pages/index.vue | 1061 +- {pvtools => pvtoolsOld}/plugins/icons.js | 0 .../static/btn_support_LG.gif | Bin .../static/consumptionProfiles.png | Bin {pvtools => pvtoolsOld}/static/favicon.ico | Bin {pvtools => pvtoolsOld}/store/README.md | 0 {pvtools => pvtoolsOld}/store/data.js | 0 67 files changed, 204998 insertions(+), 15334 deletions(-) create mode 100644 pvtools/.gitignore create mode 100644 pvtools/app.vue rename pvtools/{functions => composables}/ImportTest.csv (100%) create mode 100644 pvtools/composables/SLP.js rename pvtools/{functions => composables}/SLP.test.js (100%) create mode 100644 pvtools/composables/calcHeatpump.js rename pvtools/{functions => composables}/calcHeatpump.test.js (100%) rename pvtools/{functions => composables}/calcProfile.js (100%) rename pvtools/{functions => composables}/convertConsumptionUploads.test.js (100%) create mode 100644 pvtools/composables/convertConsumptionUploads.ts rename pvtools/{functions => composables}/createRegression.js (100%) rename pvtools/{functions => composables}/energyFlow.test.js (100%) create mode 100644 pvtools/composables/energyFlow.ts rename pvtools/{functions => composables}/integration.test.js (100%) create mode 100644 pvtools/composables/regression.js rename pvtools/{functions => composables}/regressiondb.csv (100%) rename pvtools/{functions => composables}/seriescalc.json (100%) rename pvtools/{functions => composables}/seriescalc2.json (100%) create mode 100644 pvtools/nuxt.config.ts rename pvtools/pages/{impress/index.vue => impress.vue} (100%) create mode 100644 pvtools/pages/index2.vue create mode 100644 pvtools/public/favicon.ico create mode 100644 pvtools/server/tsconfig.json create mode 100644 pvtools/tsconfig.json rename {pvtools => pvtoolsOld}/.editorconfig (100%) rename {pvtools => pvtoolsOld}/Dockerfile (100%) create mode 100644 pvtoolsOld/README.md create mode 100644 pvtoolsOld/components/BarChart.vue create mode 100644 pvtoolsOld/components/Chart.vue create mode 100644 pvtoolsOld/components/FAQ.vue rename {pvtools => pvtoolsOld}/components/NuxtLogo.vue (100%) rename {pvtools => pvtoolsOld}/components/Tutorial.vue (99%) create mode 100644 pvtoolsOld/functions/ImportTest.csv rename {pvtools => pvtoolsOld}/functions/SLP.js (100%) create mode 100644 pvtoolsOld/functions/SLP.test.js rename {pvtools => pvtoolsOld}/functions/calcHeatpump.js (100%) create mode 100644 pvtoolsOld/functions/calcHeatpump.test.js create mode 100644 pvtoolsOld/functions/calcProfile.js rename {pvtools => pvtoolsOld}/functions/convertConsumptionUploads.js (100%) create mode 100644 pvtoolsOld/functions/convertConsumptionUploads.test.js create mode 100644 pvtoolsOld/functions/createRegression.js rename {pvtools => pvtoolsOld}/functions/energyFlow.js (100%) create mode 100644 pvtoolsOld/functions/energyFlow.test.js create mode 100644 pvtoolsOld/functions/integration.test.js rename {pvtools => pvtoolsOld}/functions/regression.json (100%) create mode 100644 pvtoolsOld/functions/regressiondb.csv create mode 100644 pvtoolsOld/functions/seriescalc.json create mode 100644 pvtoolsOld/functions/seriescalc2.json rename {pvtools => pvtoolsOld}/jest.config.js (100%) rename {pvtools => pvtoolsOld}/nuxt.config.js (100%) create mode 100644 pvtoolsOld/package-lock.json create mode 100644 pvtoolsOld/package.json rename {pvtools => pvtoolsOld}/pages/consumptionProfiles/index.vue (100%) create mode 100644 pvtoolsOld/pages/impress/index.vue rename {pvtools => pvtoolsOld}/pages/index.vue (54%) rename {pvtools => pvtoolsOld}/plugins/icons.js (100%) rename {pvtools => pvtoolsOld}/static/btn_support_LG.gif (100%) rename {pvtools => pvtoolsOld}/static/consumptionProfiles.png (100%) rename {pvtools => pvtoolsOld}/static/favicon.ico (100%) rename {pvtools => pvtoolsOld}/store/README.md (100%) rename {pvtools => pvtoolsOld}/store/data.js (100%) diff --git a/pvtools/.gitignore b/pvtools/.gitignore new file mode 100644 index 0000000..4a7f73a --- /dev/null +++ b/pvtools/.gitignore @@ -0,0 +1,24 @@ +# Nuxt dev/build outputs +.output +.data +.nuxt +.nitro +.cache +dist + +# Node dependencies +node_modules + +# Logs +logs +*.log + +# Misc +.DS_Store +.fleet +.idea + +# Local env files +.env +.env.* +!.env.example diff --git a/pvtools/README.md b/pvtools/README.md index f55ff35..f5db2a2 100644 --- a/pvtools/README.md +++ b/pvtools/README.md @@ -1,93 +1,75 @@ -# pvtools +# Nuxt 3 Minimal Starter -## Requirements +Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more. -- Node.js >= 20 -- NPM +## Setup -## Build Setup +Make sure to install the dependencies: ```bash -# install dependencies -$ npm install +# npm +npm install -# serve with hot reload at localhost:3000 -$ npm run dev +# pnpm +pnpm install -# build for production and launch server -$ npm run build -$ npm run start +# yarn +yarn install -# generate static project -$ npm run generate +# bun +bun install ``` -For detailed explanation on how things work, check out the [documentation](https://nuxtjs.org). +## Development Server -## Enviroment variables +Start the development server on `http://localhost:3000`: -| Variable | Description | Default if not set | -| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | -| APP_URL | Domain name and Port that is used to access the API backend when NODE_ENV='production' | localhost:8082 | -| NODE_ENV | Using the value 'production' changes the API backend URL to https://APP_URL. Attention: in production mode 'https' is always set as protocol | (not set) | -| GOOGLE_ANALYTICS_ID | Google Analytics ID that is embeded in the UI | (not set) | - -## Docker ```bash -# Build image with defaults -$ docker build --tag pvtools-frontend:latest . - -# Build image for production with custom settings -$ docker build --build-arg APP_URL=backend.exmaple.com:8443 --build-arg NODE_ENV=production --build-arg GOOGLE_ANALYTICS_ID=example123 --tag pvtools-frontend:latest . - -# Run image -$ docker run --publish 8080:8080 pvtools-frontend:latest -``` - -## Special Directories - -You can create the following extra directories, some of which have special behaviors. Only `pages` is required; you can delete them if you don't want to use their functionality. - -### `assets` - -The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts. - -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/assets). +# npm +npm run dev -### `components` +# pnpm +pnpm run dev -The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components. +# yarn +yarn dev -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/components). - -### `layouts` - -Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop. - -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/layouts). - -### `pages` +# bun +bun run dev +``` -This directory contains your application views and routes. Nuxt will read all the `*.vue` files inside this directory and setup Vue Router automatically. +## Production -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/get-started/routing). +Build the application for production: -### `plugins` +```bash +# npm +npm run build -The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use `Vue.use()`, you should create a file in `plugins/` and add its path to plugins in `nuxt.config.js`. +# pnpm +pnpm run build -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/plugins). +# yarn +yarn build -### `static` +# bun +bun run build +``` -This directory contains your static files. Each file inside this directory is mapped to `/`. +Locally preview production build: -Example: `/static/robots.txt` is mapped as `/robots.txt`. +```bash +# npm +npm run preview -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/static). +# pnpm +pnpm run preview -### `store` +# yarn +yarn preview -This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex. +# bun +bun run preview +``` -More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/store). +Check out the [deployment documentation](https://nuxt.com/docs/getting-started/deployment) for more information. diff --git a/pvtools/app.vue b/pvtools/app.vue new file mode 100644 index 0000000..1031539 --- /dev/null +++ b/pvtools/app.vue @@ -0,0 +1,4 @@ +import FAQ from './components/FAQ.vue'; + diff --git a/pvtools/components/BarChart.vue b/pvtools/components/BarChart.vue index 5a771d8..5e1f3c9 100644 --- a/pvtools/components/BarChart.vue +++ b/pvtools/components/BarChart.vue @@ -12,8 +12,8 @@ /> - diff --git a/pvtools/components/Chart.vue b/pvtools/components/Chart.vue index b9d753f..fca8153 100644 --- a/pvtools/components/Chart.vue +++ b/pvtools/components/Chart.vue @@ -9,8 +9,8 @@ /> - diff --git a/pvtools/components/FAQ.vue b/pvtools/components/FAQ.vue index 1ad3396..0399f07 100644 --- a/pvtools/components/FAQ.vue +++ b/pvtools/components/FAQ.vue @@ -1,150 +1,135 @@ - diff --git a/pvtools/functions/ImportTest.csv b/pvtools/composables/ImportTest.csv similarity index 100% rename from pvtools/functions/ImportTest.csv rename to pvtools/composables/ImportTest.csv diff --git a/pvtools/composables/SLP.js b/pvtools/composables/SLP.js new file mode 100644 index 0000000..5560091 --- /dev/null +++ b/pvtools/composables/SLP.js @@ -0,0 +1,448 @@ +/** + * "Standardlastprofil berechnung nach BDEW" + * weekdays = weekDays (mon - fri) + * sat = saturday + * sun = sunday and free days + * default = if sat/sun/weekdays not set, default will be used + * + * till = FIRST day this season will change. 03/21 means, this will used until 03/20 (Bug?) + */ + +export const SLPH0 = [ + { + till: '03/21', + + profileDays: { + sat: { + 0: 74.75, + 1: 57.075, + 2: 43.55, + 3: 40.125, + 4: 38.675, + 5: 39.05, + 6: 48.3, + 7: 73.425, + 8: 110.55, + 9: 138.575, + 10: 146.6, + 11: 152.7, + 12: 163.9, + 13: 167.9, + 14: 156.575, + 15: 145.65, + 16: 142.25, + 17: 168.85, + 18: 205.875, + 19: 212.2, + 20: 185.05, + 21: 139.925, + 22: 125, + 23: 109.95, + }, + sun: { + 0: 79.2, + 1: 61.075, + 2: 46.725, + 3: 41.975, + 4: 39.15, + 5: 38.425, + 6: 40.125, + 7: 46.025, + 8: 75.85, + 9: 127.25, + 10: 166.275, + 11: 196.525, + 12: 209.625, + 13: 183.625, + 14: 143.625, + 15: 120.35, + 16: 107.725, + 17: 117.8, + 18: 149.75, + 19: 173.15, + 20: 167.825, + 21: 139.9, + 22: 121.2, + 23: 92.325, + }, + weekdays: { + 0: 64.55, + 1: 45.4, + 2: 39.975, + 3: 38.7, + 4: 38.7, + 5: 42.925, + 6: 76.15, + 7: 123.575, + 8: 134.525, + 9: 126.125, + 10: 117.05, + 11: 116.875, + 12: 127.375, + 13: 132.175, + 14: 118.675, + 15: 106.9, + 16: 103.35, + 17: 120.55, + 18: 157.025, + 19: 185.175, + 20: 175.925, + 21: 146.575, + 22: 123.55, + 23: 94.1, + }, + }, + }, + { + till: '05/15', + profileDays: { + sat: { + 0: 81.875, + 1: 60.25, + 2: 47.925, + 3: 44.175, + 4: 43.15, + 5: 44.125, + 6: 53.375, + 7: 83.05, + 8: 121.975, + 9: 146.425, + 10: 160.35, + 11: 169.95, + 12: 179.1, + 13: 180.55, + 14: 165.25, + 15: 151.15, + 16: 145.7, + 17: 154.8, + 18: 177.025, + 19: 196.8, + 20: 187.875, + 21: 154.4, + 22: 139, + 23: 125.45, + }, + sun: { + 0: 85.525, + 1: 67.4, + 2: 50.95, + 3: 45.1, + 4: 43.175, + 5: 43.275, + 6: 44.275, + 7: 58.05, + 8: 98.125, + 9: 149.125, + 10: 180.5, + 11: 199.975, + 12: 211.125, + 13: 180.7, + 14: 141.225, + 15: 124.975, + 16: 109.8, + 17: 108.225, + 18: 130.05, + 19: 157.175, + 20: 158.7, + 21: 145.6, + 22: 133.875, + 23: 102.925, + }, + weekdays: { + 0: 74.1, + 1: 51.675, + 2: 45.1, + 3: 43.1, + 4: 43.65, + 5: 48.45, + 6: 80.225, + 7: 123.9, + 8: 137.075, + 9: 136.575, + 10: 133.075, + 11: 131.6, + 12: 145.225, + 13: 150.025, + 14: 130.725, + 15: 116.525, + 16: 106.775, + 17: 111.75, + 18: 136.725, + 19: 167.125, + 20: 171.8, + 21: 158.25, + 22: 142.975, + 23: 109.4, + }, + }, + }, + { + till: '09/15', + profileDays: { + sat: { + 0: 91.1, + 1: 69.125, + 2: 53.975, + 3: 50.25, + 4: 50.275, + 5: 51.025, + 6: 58.925, + 7: 84.575, + 8: 119.825, + 9: 150.35, + 10: 164.025, + 11: 168.625, + 12: 180.05, + 13: 179.7, + 14: 161.55, + 15: 149.425, + 16: 145.65, + 17: 146.45, + 18: 161.5, + 19: 178.525, + 20: 176.85, + 21: 157.975, + 22: 149.225, + 23: 134.025, + }, + sun: { + 0: 92.525, + 1: 71.65, + 2: 56.35, + 3: 51.225, + 4: 49.975, + 5: 49.175, + 6: 49.675, + 7: 62.825, + 8: 99.775, + 9: 149.825, + 10: 181.825, + 11: 200.95, + 12: 211.925, + 13: 186.2, + 14: 149.5, + 15: 129.575, + 16: 111.075, + 17: 107.475, + 18: 121.225, + 19: 146, + 20: 160.25, + 21: 152.8, + 22: 143.725, + 23: 118.475, + }, + weekdays: { + 0: 82.125, + 1: 57.325, + 2: 50.8, + 3: 47.3, + 4: 47.75, + 5: 54.9, + 6: 86.025, + 7: 124.95, + 8: 139.125, + 9: 144.7, + 10: 140.275, + 11: 139.875, + 12: 153.85, + 13: 157.275, + 14: 136.35, + 15: 121.275, + 16: 114.775, + 17: 119.375, + 18: 136.35, + 19: 160.375, + 20: 168.65, + 21: 159.4, + 22: 149.275, + 23: 121.875, + }, + }, + }, + { + till: '11/01', + profileDays: { + sat: { + 0: 81.875, + 1: 60.25, + 2: 47.925, + 3: 44.175, + 4: 43.15, + 5: 44.125, + 6: 53.375, + 7: 83.05, + 8: 121.975, + 9: 146.425, + 10: 160.35, + 11: 169.95, + 12: 179.1, + 13: 180.55, + 14: 165.25, + 15: 151.15, + 16: 145.7, + 17: 154.8, + 18: 177.025, + 19: 196.8, + 20: 187.875, + 21: 154.4, + 22: 139, + 23: 125.45, + }, + sun: { + 0: 85.525, + 1: 67.4, + 2: 50.95, + 3: 45.1, + 4: 43.175, + 5: 43.275, + 6: 44.275, + 7: 58.05, + 8: 98.125, + 9: 149.125, + 10: 180.5, + 11: 199.975, + 12: 211.125, + 13: 180.7, + 14: 141.225, + 15: 124.975, + 16: 109.8, + 17: 108.225, + 18: 130.05, + 19: 157.175, + 20: 158.7, + 21: 145.6, + 22: 133.875, + 23: 102.925, + }, + weekdays: { + 0: 74.1, + 1: 51.675, + 2: 45.1, + 3: 43.1, + 4: 43.65, + 5: 48.45, + 6: 80.225, + 7: 123.9, + 8: 137.075, + 9: 136.575, + 10: 133.075, + 11: 131.6, + 12: 145.225, + 13: 150.025, + 14: 130.725, + 15: 116.525, + 16: 106.775, + 17: 111.75, + 18: 136.725, + 19: 167.125, + 20: 171.8, + 21: 158.25, + 22: 142.975, + 23: 109.4, + }, + }, + }, + { + till: '12/31', + last: true, + profileDays: { + sat: { + 0: 74.75, + 1: 57.075, + 2: 43.55, + 3: 40.125, + 4: 38.675, + 5: 39.05, + 6: 48.3, + 7: 73.425, + 8: 110.55, + 9: 138.575, + 10: 146.6, + 11: 152.7, + 12: 163.9, + 13: 167.9, + 14: 156.575, + 15: 145.65, + 16: 142.25, + 17: 168.85, + 18: 205.875, + 19: 212.2, + 20: 185.05, + 21: 139.925, + 22: 125, + 23: 109.95, + }, + sun: { + 0: 79.2, + 1: 61.075, + 2: 46.725, + 3: 41.975, + 4: 39.15, + 5: 38.425, + 6: 40.125, + 7: 46.025, + 8: 75.85, + 9: 127.25, + 10: 166.275, + 11: 196.525, + 12: 209.625, + 13: 183.625, + 14: 143.625, + 15: 120.35, + 16: 107.725, + 17: 117.8, + 18: 149.75, + 19: 173.15, + 20: 167.825, + 21: 139.9, + 22: 121.2, + 23: 92.325, + }, + weekdays: { + 0: 64.55, + 1: 45.4, + 2: 39.975, + 3: 38.7, + 4: 38.7, + 5: 42.925, + 6: 76.15, + 7: 123.575, + 8: 134.525, + 9: 126.125, + 10: 117.05, + 11: 116.875, + 12: 127.375, + 13: 132.175, + 14: 118.675, + 15: 106.9, + 16: 103.35, + 17: 120.55, + 18: 157.025, + 19: 185.175, + 20: 175.925, + 21: 146.575, + 22: 123.55, + 23: 94.1, + }, + }, + }, +] + +export const factorFunction = (day, val) => { + const a4 = -0.000000000392 + const a3 = 0.00000032 + const a2 = -0.0000702 + const a1 = 0.0021 + const a0 = 1.24 + + return ( + (a4 * Math.pow(day, 4) + + a3 * Math.pow(day, 3) + + a2 * Math.pow(day, 2) + + a1 * day + + a0) * + val + ) +} + +export const PROFILEBASE = 1000 diff --git a/pvtools/functions/SLP.test.js b/pvtools/composables/SLP.test.js similarity index 100% rename from pvtools/functions/SLP.test.js rename to pvtools/composables/SLP.test.js diff --git a/pvtools/composables/calcHeatpump.js b/pvtools/composables/calcHeatpump.js new file mode 100644 index 0000000..4aba25c --- /dev/null +++ b/pvtools/composables/calcHeatpump.js @@ -0,0 +1,147 @@ +/** + * Calculate heating curve + * @param {Object} + * @param {Number} maxHeatTemp max temperature to calc + * @param {Number} minHeatTemp Optional: min temperature to calc + * @param {Array[Array]} tempMap Array of arrays with tempratures [ [0 , 40], [10 , 30] ] | First Value: outside, temprature, second value: water temprature + * @return {Object} {'-25': 55, '-24': 54,5, ... '15': 35} minHeatTemp -25, maxHeatTemp 15 + */ + +export const calcHeatingTempMap = ({ + maxHeatTemp = null, + minHeatTemp = -25, + tempMap, +}) => { + if (!maxHeatTemp) throw new Error('maxHeatTemp not given') + if (!tempMap) throw new Error('tempMap is not given') + if (!Array.isArray(tempMap)) throw new Error('tempMap is not an array') + if (tempMap.length == 0) + throw new Error('tempMap length must be greater then 0') + if (!Array.isArray(tempMap[0])) + throw new Error('tempMap elements must be also an array') + if (!(tempMap[0].length == 2)) + throw new Error( + 'tempMap elements must be also an array with the length of 2' + ) + + const temps = tempMap.sort((a, b) => a[0] - b[0]) + + const newTempMap = temps.reduce((prev, curr, i, arr) => { + const currTemp = curr[0] + const nextTemp = arr.length > i + 1 ? arr[i + 1][0] : null + const prevTemp = i > 0 && arr.length > i ? arr[i - 1][0] : null + const currTargetTemp = curr[1] + const nextTargetTemp = arr.length - 1 > i ? arr[i + 1][1] : null + const prevTargetTemp = i > 0 && arr.length > i ? arr[i - 1][1] : null + const factor = + prevTemp == null + ? (nextTargetTemp - currTargetTemp) / (nextTemp - currTemp) + : (currTargetTemp - prevTargetTemp) / (currTemp - prevTemp) + + // console.log({currTemp,nextTemp,prevTemp,currTargetTemp,nextTargetTemp, prevTargetTemp, factor}) + + if (i == 0) { + for (let i = minHeatTemp; i <= currTemp; i++) { + prev[i] = (i - currTemp) * factor + currTargetTemp + } + } else if (nextTemp && prevTemp) { + for (let i = prevTemp + 1; i <= currTemp; i++) { + prev[i] = (i - currTemp) * factor + currTargetTemp + } + } else if (!nextTemp) { + for (let i = prevTemp + 1; i <= maxHeatTemp; i++) { + prev[i] = (i - currTemp) * factor + currTargetTemp + } + } + return prev + }, {}) + + return newTempMap +} + +export const calcHeatEfficiencyMap = ({ + maxHeatTemp, + minHeatTemp, + maxTargetTemp, + minTargetTemp, + efficiencyMap, +}) => { + if (!maxHeatTemp) throw new Error('maxHeatTemp not given') + if (!minHeatTemp) throw new Error('minHeatTemp not given') + if (!maxTargetTemp) throw new Error('maxTargetTemp not given') + if (!minTargetTemp) throw new Error('minTargetTemp not given') + if (!efficiencyMap) throw new Error('efficiencyMap is not given') + if (!Array.isArray(efficiencyMap)) + throw new Error('efficiencyMap is not an array') + + const sameTemp = efficiencyMap + .filter((val, i, arr) => arr.filter((v) => v[0] == val[0]).length > 1) + .sort((a, b) => a[1] - b[1]) + const sameHeatTemp = efficiencyMap + .filter((val, i, arr) => arr.filter((v) => v[1] == val[1]).length > 1) + .sort((a, b) => a[0] - b[0]) + + if (sameTemp.length < 2) + throw new Error( + 'efficiencyMap need two efficiency values with same temprature' + ) + if (sameHeatTemp.length < 2) + throw new Error( + 'efficiencyMap need two efficiency values with same heat temprature' + ) + + const tempBase = sameTemp[0][0] + const tempBaseEfficiency = sameTemp[0][2] + const tempBaseEfficiencyHigh = sameTemp[1][2] + const tempTargetBase = sameTemp[0][1] + const tempTargetBaseHigh = sameTemp[1][1] + const efficiencyPerTemp = + (sameHeatTemp[sameTemp.length - 1][2] - sameHeatTemp[0][2]) / + (sameHeatTemp[sameTemp.length - 1][0] - sameHeatTemp[0][0]) + const efficiencyPerTargetTemp = + (sameTemp[0][2] - sameTemp[sameTemp.length - 1][2]) / + (sameTemp[sameTemp.length - 1][1] - sameTemp[0][1]) + + // console.log({ + // tempBase, + // tempBaseEfficiency, + // tempTargetBase, + // tempTargetBaseHigh, + // tempBaseEfficiencyHigh, + // efficiencyPerTemp, + // efficiencyPerTargetTemp, + // sameTemp, + // sameHeatTemp + // }) + + let tempTargetBaseMap = {} + for (let i = minHeatTemp; i <= maxHeatTemp; i++) { + tempTargetBaseMap[i] = + (i - tempBase) * efficiencyPerTemp + tempBaseEfficiency + } + + let newEfficiencyMap = Object.keys(tempTargetBaseMap).reduce((prev, curr) => { + for (let temp = minTargetTemp; temp <= maxTargetTemp; temp++) { + let efficiencyLow = + tempBaseEfficiency + (curr - tempBase) * efficiencyPerTemp + let efficiencyHigh = + tempBaseEfficiencyHigh + (curr - tempBase) * efficiencyPerTargetTemp + let efficiencyDelta = + (efficiencyLow - efficiencyHigh) / (tempTargetBaseHigh - tempTargetBase) + + prev[temp] = { + ...prev[temp], + [curr]: efficiencyLow - (temp - tempTargetBase) * efficiencyDelta, + } + + // console.log(curr, obj, efficiencyLow, efficiencyHigh, efficiencyDelta) + // console.log(tempBaseEfficiency, temp, tempBase, efficiencyPerTemp) + } + // console.log(prev, curr) + return prev + }, {}) + + return newEfficiencyMap +} + +export const calcDayHeat = ({ tempArr, yearlyHeatConsumption }) => {} diff --git a/pvtools/functions/calcHeatpump.test.js b/pvtools/composables/calcHeatpump.test.js similarity index 100% rename from pvtools/functions/calcHeatpump.test.js rename to pvtools/composables/calcHeatpump.test.js diff --git a/pvtools/functions/calcProfile.js b/pvtools/composables/calcProfile.js similarity index 100% rename from pvtools/functions/calcProfile.js rename to pvtools/composables/calcProfile.js diff --git a/pvtools/functions/convertConsumptionUploads.test.js b/pvtools/composables/convertConsumptionUploads.test.js similarity index 100% rename from pvtools/functions/convertConsumptionUploads.test.js rename to pvtools/composables/convertConsumptionUploads.test.js diff --git a/pvtools/composables/convertConsumptionUploads.ts b/pvtools/composables/convertConsumptionUploads.ts new file mode 100644 index 0000000..db9500f --- /dev/null +++ b/pvtools/composables/convertConsumptionUploads.ts @@ -0,0 +1,87 @@ +import Papa from 'papaparse' +// const Papa = require('papaparse') + +import { generateDayTimeOrder } from './energyFlow' + +// {"20200101:00":{P:20}, "20200101:01":{P:30.5}, ...} + +interface ConsumptionObject { + P: number +} +export const convertConsumptionCSV = ( + csvData, + year +): Record => { + const config = { + header: true, + } + + const data = Papa.parse(csvData, config) + if (data && !data.data.length) throw Error('file could not read') + if (!data.data[0].Datetime || !data.data[0].Power) + throw new Error('Headers are not correct: Datetime + Power') + + const filteredEmpty = data.data.filter((v, i) => { + if (v.Datetime == '') { + return false + } + return true + }) + if ( + !(filteredEmpty.length == 365 * 24) && + !(filteredEmpty.length == 366 * 24) && + !(filteredEmpty.length == 48) + ) + throw new Error('Length of your data must be 365/366 days * 24 hours') + + const importYear = parseInt(filteredEmpty[0].Datetime.slice(0, 4)) + if (importYear !== year) + throw new Error( + 'Import year is wrong. You want to import year ' + + importYear + + ' but you set year ' + + year + + '!' + ) + + const dayTimes = generateDayTimeOrder(year) + + dayTimes.forEach((daytime) => { + const found = filteredEmpty.find((val) => { + if (val.Datetime == daytime) return true + return false + }) + if (!found) throw new Error('Folowing timeslot not found:' + daytime) + }) + filteredEmpty.forEach((val) => { + if (!dayTimes.includes(val.Datetime)) + throw new Error('at least one DateTime is wrong: ' + val + val.Datetime) + }) + + const parsedData = filteredEmpty.reduce((acc, curr) => { + if (!curr.Datetime) throw new Error('At least one Datetime is empty') + if (!curr.Power) throw new Error('Power miss for Datetime ' + curr.Datetime) + if (acc[curr.Datetime]) throw new Error('Double Datetime ' + curr.Datetime) + + acc[curr.Datetime] = { P: parseFloat(curr.Power) } + return acc + }, {}) + + return parsedData +} + +export const createTemplateCsv = (year) => { + const dayTime = generateDayTimeOrder(year) + + const daytimearr = dayTime.map((v) => [v]) + const csv = Papa.unparse( + { data: daytimearr, fields: ['Datetime', 'Power'] }, + { delimiter: ';', quotes: true } + ) + return csv +} + +export const createDataCsv = (array) => { + const csv = Papa.unparse(array, { delimiter: ';', quotes: true }) + return csv +} diff --git a/pvtools/functions/createRegression.js b/pvtools/composables/createRegression.js similarity index 100% rename from pvtools/functions/createRegression.js rename to pvtools/composables/createRegression.js diff --git a/pvtools/functions/energyFlow.test.js b/pvtools/composables/energyFlow.test.js similarity index 100% rename from pvtools/functions/energyFlow.test.js rename to pvtools/composables/energyFlow.test.js diff --git a/pvtools/composables/energyFlow.ts b/pvtools/composables/energyFlow.ts new file mode 100644 index 0000000..8a8d9f0 --- /dev/null +++ b/pvtools/composables/energyFlow.ts @@ -0,0 +1,623 @@ +/** + * @return {Object) Functions: energyFlow, calculateConsumption, normalizeHourlyRadiation + * + */ + +/** + * Calculate consumption per hour from a load profile, year and an yearly consumption + * @param {Int} powerGeneration watts for one hour + * @return {Object} {newBatterySoc: 3560, ...} + +Parameters object: + powerGeneration: 503 (watts for one hour) + energyConsumption: 433 (watts for one hour) + batterySoC: 3450 (watthours) + batterySocMax: 5500 (watthours) + batterySocMin: 100 (watthours) + batteryEfficiency / batteryLoadEfficiency: 0.99 (99%) + batteryUnloadEfficiency (optinal): 0.99 (99%) + maxPowerGenerationInverter (optional): 2500 (watts) + maxPowerGenerationBattery: (optional): 3400 (watts) + maxPowerLoadBattery (optional): 2300 (watts) + maxPowerFeedIn (optional): 8500 (watts) for feedIn regulations (70% rule in germany) + dayTime (optional): to identify this time +Return object: + newBatterySoc: 3560 (watthours) + selfUsagePowerPv: 3550 (watthours) PV-power, that used for own consumption + selfUsagePowerBattery: 2250 (watthours) Battry-power, that used for own consumption + selfUsagePower: 5520 (watthours) sum Pv + Battery + feedInPowerGrid: 3445 (watthours) + batteryLoad: 2520 / -2520 (watthours) load/unload battery + consumptionGrid: 2450 (watthours) + dayTime (optional): to identify this time + + missedFeedInPowerGrid, missedInverterPower, missedBatteryPower; + + +missing calculations parameters: + +missing return values: + missed feedin power wehen maxPowerFeedIn is set + missed PV power, when maxPowerGenerationInverter is set + missed battery power, when maxPowerLoadBattery or maxPowerGenerationBattery is set +*/ + +export const energyFlow = ({ + energyGeneration, + energyConsumption, + batterySoc, + batterySocMax, + batterySocMin, + batteryEfficiency, + batteryLoadEfficiency, + batteryUnloadEfficiency, + maxPowerGenerationInverter, + maxPowerGenerationBattery, + maxPowerFeedIn, + dayTime, + regressionDb, +}) => { + let missedInverterPower = 0, + missedBatteryPower = 0 + + const powerProduction = energyGeneration + + batteryLoadEfficiency = batteryLoadEfficiency || batteryEfficiency || 1 + batteryUnloadEfficiency = batteryUnloadEfficiency || batteryEfficiency || 1 + + if ( + maxPowerGenerationInverter && + maxPowerGenerationInverter < energyGeneration + ) { + missedInverterPower = energyGeneration - maxPowerGenerationInverter + energyGeneration = maxPowerGenerationInverter + } + + let { + selfUsedEnergy, + selfUsedEnergyPV, + gridUsedEnergy, + selfUsedEnergyBattery, + feedInEnergyGrid, + lossesUnloadBattery, + lossesLoadBattery, + lossesPvGeneration, + losses, + newBatterySoc, + missedFeedInPowerGrid, + } = regressionCalc({ + regressionDb, + energyConsumption, + staticPowerGeneration: energyGeneration, + maxPowerStaticInverter: maxPowerGenerationInverter, + maxPowerDynamicInverter: maxPowerGenerationBattery, + batterySoc, + maxPowerFeedIn, + batterySocMin, + batterySocMax, + batteryLoadEfficiency, + batteryUnloadEfficiency, + }) + + return { + // batterySoc, + newBatterySoc, + energyConsumption, + powerProduction, + selfUsedEnergy, + selfUsedEnergyPV, + selfUsedEnergyBattery, + feedInEnergyGrid, + // batteryLoad: batteryLoadEnergy, + gridUsedEnergy, + missedInverterPower, + missedBatteryPower, + missedFeedInPowerGrid, + lossesUnloadBattery, + lossesLoadBattery, + lossesPvGeneration, + losses, + dayTime: dayTime ? dayTime : '', + } + + // if (energyGeneration > energyConsumption) { + // // if power generaton is more then consumption, self used power is used complete and battery SoC will be calculated + // selfUsagePowerPv = energyConsumption + // selfUsagePowerBattery = 0 + // const excessPower = energyGeneration - energyConsumption + // consumptionGrid = 0 + + // if (batterySoc >= batterySocMax) { + // // if battery is full, all power will be feed in + // feedInPowerGrid = excessPower + // newBatterySoc = batterySoc + // batteryLoad = 0 + // } else if (batterySoc + (excessPower * batteryLoadEfficiency) > batterySocMax) { + // // if power would overload the battery, power split into feed in and battery loading + // batteryLoad = batterySocMax - batterySoc + // if (maxPowerLoadBattery && maxPowerLoadBattery < batteryLoad) {batteryLoad = maxPowerLoadBattery} + // feedInPowerGrid = (excessPower - (batteryLoad)) * batteryLoadEfficiency // feedin ist reduced due the missing LoadEfficiency in battery Load + // newBatterySoc = batterySoc + batteryLoad + // } else { + // // if battery has enough capacity to save the power, no feed in, all power save in battery + // feedInPowerGrid = 0 + // batteryLoad = excessPower * batteryLoadEfficiency + // if (maxPowerLoadBattery && maxPowerLoadBattery < batteryLoad) { + // batteryLoad = maxPowerLoadBattery + // feedInPowerGrid = (excessPower - batteryLoad) * batteryLoadEfficiency + // } + // newBatterySoc = batterySoc + batteryLoad + // } + + // } + // else if (energyGeneration < energyConsumption) { + // // if power generaton is less then consumption, self used power is only the genaration and battery Soc will be calculated + // selfUsagePowerPv = energyGeneration + // feedInPowerGrid = 0 + // const excessLoad = energyConsumption - energyGeneration + + // if (batterySoc == batterySocMin) { + // // if battery is empty, full grid consumption + // consumptionGrid = excessLoad + // newBatterySoc = batterySocMin + // batteryLoad = 0 + // selfUsagePowerBattery = 0 + + // } else if (batterySoc - ((excessLoad) / batteryUnloadEfficiency) < batterySocMin) { + // // if battery will be empty, grid consumption and battery will be splitted + + // consumptionGrid = (excessLoad - batterySoc + batterySocMin) / batteryUnloadEfficiency + // newBatterySoc = batterySocMin + // batteryLoad = batterySocMin - batterySoc + // selfUsagePowerBattery = batterySoc - batterySocMin + // if(maxPowerGenerationBattery && maxPowerGenerationBattery < batteryLoad *-1 ) { + // batteryLoad = maxPowerGenerationBattery / batteryUnloadEfficiency *-1 + // consumptionGrid = excessLoad - maxPowerGenerationBattery + // selfUsagePowerBattery = maxPowerGenerationBattery + // newBatterySoc = batterySoc + batteryLoad + // } + + // // battrySoc load batterymin + // // 200 500 100 + // // 400 consumption (load(/batteryUnloadEfficiency) - batterySoc + batterySocMin ) + // } else { + // // if battery has enough power, only use battery + // consumptionGrid = 0 + // batteryLoad = excessLoad / batteryUnloadEfficiency * -1 + // selfUsagePowerBattery = excessLoad + // if(maxPowerGenerationBattery && maxPowerGenerationBattery < batteryLoad *-1 ) { + // batteryLoad = maxPowerGenerationBattery / batteryUnloadEfficiency *-1 + // consumptionGrid = excessLoad - maxPowerGenerationBattery + // selfUsagePowerBattery = maxPowerGenerationBattery + // } + // newBatterySoc = batterySoc + batteryLoad + // } + + // } + // else if (energyGeneration == energyConsumption) { + // selfUsagePowerPv = energyConsumption + // selfUsagePowerBattery = 0 + // newBatterySoc = batterySoc + // feedInPowerGrid = 0 + // batteryLoad = 0 + // consumptionGrid = 0 + + // } + + // // + // selfUsagePower = selfUsagePowerPv + selfUsagePowerBattery + // if (maxPowerFeedIn < feedInPowerGrid) { + // missedFeedInPowerGrid = feedInPowerGrid - maxPowerFeedIn + // feedInPowerGrid = maxPowerFeedIn + + // // console.log(missedFeedInPowerGrid) + // // console.log(maxPowerFeedIn) + // // console.log(feedInPowerGrid) + // } + + // return { + // newBatterySoc, + // energyGeneration, + // energyConsumption, + // powerProduction, + // selfUsagePower, + // selfUsagePowerPv, + // selfUsagePowerBattery, + // feedInPowerGrid, + // batteryLoad, + // consumptionGrid, + // missedInverterPower, + // missedBatteryPower, + // missedFeedInPowerGrid, + // dayTime: dayTime ? dayTime : '' + // } +} + +/** + * Calculate consumption per hour from a load profile, year and an yearly consumption + * @param {Object} loadProfile Loadprofile Object {name: "SLPH0", values: [{ month: 1, weekDay: 1, dayHour: 0, partPerMonth: 0.004096433, partPerYear: 0.000406886 },...]} + * @param {Int} year The year which should be calculated (leap year in mind) + * @param {Int} consumptionKwhPerYear Consumption in this year in kWh + * @return {Object} {"20200101:00":{P:20}, "20200101:01":{P:30.5}, ...} + */ + +export const calculateConsumption = ({ + year, + consumptionYear, + profile, + profileBase = 1000, + factorFunction, +}) => { + // IF profil is based on 1000kWh per year, it must be multiplied by difference of real consumption (e.g. 5000kWh = multiplier 5x) + const consumptionFactor = consumptionYear / profileBase + let currentDay = new Date(Date.UTC(year, 0, 1, 0, 0)) + const lastDay = new Date(Date.UTC(year + 1, 0, 1, 0, 0)) + + const days = {} + // Needed for factorFunction "Standardlastprofil BDEW" + let dayTimer = 1 + + while (currentDay <= lastDay) { + let currentProfile = profile.find( + (season) => new Date(season.till + '/' + year) >= currentDay + ) // TODO/BUG: this finds the next season one day earlier (03/21 is falsy at currentDay 03/21) + + if (!currentProfile) { + //TODO/BUG: The date "till: 12/31" aren't find correctly. + currentProfile = profile.find((season) => season.last) + } + + for (let hour = 0; hour < 24; hour++) { + const timeString = `${year}${('00' + (currentDay.getMonth() + 1)).slice( + -2 + )}${('00' + currentDay.getDate()).slice(-2)}:${('00' + hour).slice(-2)}` + let consumption + switch ( + currentDay.getDay() // find the right day for profile | 0 = sun, 1 = mon, ..., 6 = sat + ) { + case 0: + consumption = + currentProfile.profileDays['sun'][hour] || + currentProfile.profileDays['default'][hour] + break + case 6: + consumption = + currentProfile.profileDays['sat'][hour] || + currentProfile.profileDays['default'][hour] + break + + default: + consumption = + currentProfile.profileDays['weekdays'][hour] || + currentProfile.profileDays['default'][hour] + break + } + + if (factorFunction) { + // if function set, use function for "Standardlastprofil BDEW" + + days[timeString] = { + P: factorFunction(dayTimer, consumption * consumptionFactor), + } + } else { + days[timeString] = { P: consumption * consumptionFactor } + } + } + currentDay.setDate(currentDay.getDate() + 1) // set one day after + dayTimer++ + } + return days +} + +/** + * normalize the hourly radiation from pvgis API + * @param {Array[Array]} hourlyRadiationArrays An Array with power generation e.g. two: [ [{ "time": "20200101:0010", "P": 20.0, ... },{ "time": "20200101:0110", "P": 20.0, ... }],[...] ] + * @return {Array[Object]} Array with Objects in Fomrat [ [{"20200101:00":{P:20}, "20200101:01":{P:30.5}, ...}], [{...}, ...] ] + */ + +export const normalizeHourlyRadiation = (hourlyRadiationArray) => { + const normRadiation = hourlyRadiationArray.reduce((prev, curr) => { + const dateHour = + curr.time.split(':')[0] + ':' + curr.time.split(':')[1].substr(0, 2) + if (prev[dateHour]) { + prev[dateHour].P += curr.P + } else { + prev[dateHour] = { P: curr.P, temperature: curr.T2m } + } + + return prev + }, {}) + + return normRadiation +} + +/** + * merge powerGeneration to one summerized object + * @param {Array[Object]} powerGenerationArray An Array with power generation e.g. two: [ {"20200101:00":{P:20}, "20200101:01":{P:30.5}, ...}, {...} ] + * @return {Object} Array with Objects in Fomrat {"20200101:00":{P:20}, "20200101:01":{P:30.5}, ...} + */ + +export const mergePowerGeneration = (powerGenerationArray) => { + if (powerGenerationArray.length == 1) return powerGenerationArray[0] + + return powerGenerationArray.reduce((prev, curr) => { + for (const [key, value] of Object.entries(curr)) { + if (prev[key]) { + prev[key].P += value.P + } else { + prev[key] = { P: value.P, temperature: value.temperature } + } + } + + return prev + }, {}) +} + +/** + * generate the order of days for one year + * @param {Int} year A year: 2020 + * @return {Array} Array with DayTime ["20200101:00","20200101:01","20200101:02", ... ,"20201231:23"] + */ + +export const generateDayTimeOrder = (year) => { + const daysFebruary = new Date(year, 2, 0).getDate() + const months = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12] + const monthLength = [31, daysFebruary, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31] + + const timeString = [] + + months.map((month, i) => { + const mLength = monthLength[i] + Array.from(Array(mLength).keys()).map((day) => { + day += 1 + Array.from(Array(24).keys()).map((hour) => { + timeString.push( + `${year}${('00' + month).slice(-2)}${('00' + day).slice(-2)}:${( + '00' + hour + ).slice(-2)}` + ) + }) + }) + }) + return timeString +} + +interface GenerateDayTimeValue { + dayTime: string + P: number + consumption: number + temperature: number +} + +/** + * generate array with merged power generation + calculated power consumption within day time aray + * @param {Int} year A year: 2020 + * @return {Array} Array with Objects [{dayTime: "20200101:00", P: 220, consumption: 350, temperature:10.3},{dayTime: "20200101:01", P: 20, consumption: 450}, ... ] + */ + +export const generateDayTimeValues = ({ + consumption, + powerGeneration, + year, +}): GenerateDayTimeValue[] => { + return generateDayTimeOrder(year).reduce((prev, curr) => { + if (powerGeneration[curr] && consumption[curr]) { + return [ + ...prev, + { + dayTime: curr, + P: powerGeneration[curr].P, + temperature: powerGeneration[curr].temperature, + consumption: consumption[curr].P, + }, + ] + } else { + return prev + } + }, []) +} + +export const createRegression = ({ energyConsumption }) => { + const multiplicator = 8 + const resulution = Math.max( + Math.floor((energyConsumption * multiplicator) / 100 / 100) * 100, + 100 + ) + const regressionKey = Math.floor(energyConsumption / resulution) * resulution + + const sigma1 = energyConsumption * 0.195 + const mu1 = energyConsumption / 3 + 50 + const sigma2 = energyConsumption * 0.1 + // const sigma2 = Math.max( -energyConsumption * (50/2000) + 500, 300 ) + const mu2 = energyConsumption + energyConsumption / 10 + + // const powers = new Array(100).fill(0).map((e,i)=> i* resulution) + const powers = new Array((regressionKey / resulution) * multiplicator) + .fill(0) + .map((e, i) => i * resulution) + + const unnorm = powers.map((power) => { + const val = + (1 / (sigma1 * Math.sqrt(2 * Math.PI))) * + Math.exp(1) ** (-0.5 * ((power - mu1) / sigma1) ** 2) + + (1 / (sigma2 * Math.sqrt(2 * Math.PI))) * + Math.exp(1) ** (-0.5 * ((power - mu2) / sigma2) ** 2) + return val + }) + const sumUnnorm = unnorm.reduce((acc, curr) => acc + curr, 0) + const regression = unnorm.reduce((acc, curr, i) => { + acc[powers[i]] = curr * (1 / sumUnnorm) + return acc + }, {}) + + return { regression, resulution, info: { sigma1, sigma2, mu1, mu2 } } +} + +export const regressionCalc = ({ + regressionDb, + energyConsumption, + staticPowerGeneration = 0, + maxPowerStaticInverter = 0, + maxPowerDynamicInverter = 0, + batterySoc = 0, + batteryUnloadEfficiency = 1, + batteryLoadEfficiency = 1, + batterySocMin, + batterySocMax, + maxPowerFeedIn = 9999999, +}) => { + let freePowerDynamicGeneration = 0 + if (maxPowerDynamicInverter > 0) + freePowerDynamicGeneration = maxPowerDynamicInverter + else if (maxPowerStaticInverter - staticPowerGeneration > 0) + freePowerDynamicGeneration = maxPowerStaticInverter - staticPowerGeneration + else freePowerDynamicGeneration = 99999999 + + if (staticPowerGeneration == 0) staticPowerGeneration = 1 + + const multiplicator = Math.min(energyConsumption, staticPowerGeneration) + if (multiplicator == 0) + return { + selfUsedEnergy: 0, + gridUsedEnergy: energyConsumption, + } + + const staticInverterEfficiency = calcInverterEfficiency({ + maxPowerGenerationInverter: maxPowerStaticInverter, + power: staticPowerGeneration, + }) + // const lastRegression = Object.keys(regressionDb)[Object.keys(regressionDb).length-1] + const regressionKey = Math.floor(energyConsumption / 50) * 50 + const regressionBigConsumption = !regressionDb[regressionKey] + ? createRegression({ energyConsumption }) + : null + const regression = regressionDb[regressionKey] + ? regressionDb[regressionKey] + : regressionBigConsumption.regression + + const powerDelta = regressionBigConsumption + ? Math.floor(regressionBigConsumption.resulution / 2) + : 25 // use the mid of two regressen keys. e.g. 50,100,150 > use 75,125,175 + + const { + usedEnergyPv, + usedEnergyPvBase, + usedEnergyBattery, + usedEnergyBatteryBase, + usedPv, + } = Object.keys(regression).reduce( + (acc, curr) => { + const power = parseInt(curr) + const value = regression[curr] + const usedPv = Math.min((power + powerDelta) / multiplicator, 1) + const usedEnergyPvBase = usedPv * value * multiplicator + const usedEnergyPv = + usedPv * value * staticInverterEfficiency * multiplicator + + const splitConsumption = value * energyConsumption + const energyForBattery = splitConsumption - usedEnergyPv + const usedBattery = Math.min( + freePowerDynamicGeneration / (power + powerDelta), + 1 + ) + + const usedEnergyBatteryBase = usedPv * value * staticPowerGeneration + const usedEnergyBattery = usedBattery * energyForBattery + + return { + usedEnergyPv: acc.usedEnergyPv + usedEnergyPv, + usedEnergyPvBase: acc.usedEnergyPvBase + usedEnergyPvBase, + usedEnergyBattery: acc.usedEnergyBattery + usedEnergyBattery, + usedEnergyBatteryBase: + acc.usedEnergyBatteryBase + usedEnergyBatteryBase, + usedPv: acc.usedPv + usedPv, + } + }, + { + usedEnergyPv: 0, + usedEnergyPvBase: 0, + usedEnergyBattery: 0, + usedEnergyBatteryBase: 0, + usedPv: 0, + } + ) + + const selfUsedEnergyPV = usedEnergyPv + const selfUsedEnergyBattery = + Math.min(usedEnergyBattery, batterySoc) * batteryUnloadEfficiency + const lossesPvGeneration = usedEnergyPvBase - selfUsedEnergyPV + const overflowPv = + staticPowerGeneration - selfUsedEnergyPV - lossesPvGeneration + const lossesUnloadBattery = + Math.min(usedEnergyBattery, batterySoc) * (1 - batteryUnloadEfficiency) + const batterySoCAfterUnload = + batterySoc - selfUsedEnergyBattery - lossesUnloadBattery //sdfsds + const newBatterySocBase = + overflowPv * batteryLoadEfficiency + + batterySoc - + lossesUnloadBattery - + selfUsedEnergyBattery + const newBatterySoc = Math.min(newBatterySocBase, batterySocMax) + const lossesLoadBatteryBase = Math.max( + newBatterySoc - batterySoCAfterUnload, + 0 + ) + const lossesLoadBattery = lossesLoadBatteryBase * (1 - batteryLoadEfficiency) + const selfUsedEnergy = selfUsedEnergyBattery + selfUsedEnergyPV + // const newBatterySoc = batterySoc - lossesUnloadBattery - selfUsedEnergyBattery + const feedInEnergyGridBase = newBatterySocBase - newBatterySoc + const feedInEnergyGrid = Math.min(feedInEnergyGridBase, maxPowerFeedIn) + const missedFeedInPowerGrid = feedInEnergyGridBase - feedInEnergyGrid + const gridUsedEnergy = energyConsumption - selfUsedEnergy + const losses = lossesLoadBattery + lossesUnloadBattery + lossesPvGeneration + + if (regressionBigConsumption) + console.log({ + selfUsedEnergy, + selfUsedEnergyPV, + gridUsedEnergy, + selfUsedEnergyBattery, + feedInEnergyGrid, + energyConsumption, + regressionBigConsumption, + }) + + return { + selfUsedEnergy, + selfUsedEnergyPV, + usedEnergyPvBase, + gridUsedEnergy, + selfUsedEnergyBattery, + feedInEnergyGrid, + lossesUnloadBattery, + lossesLoadBattery, + lossesPvGeneration, + missedFeedInPowerGrid, + losses, + newBatterySoc, + staticInverterEfficiency, + usedPv, + usedEnergyBatteryBase, + } +} + +const calcInverterEfficiency = ({ maxPowerGenerationInverter, power }) => { + const inverterEfficiency = { + 0: 0.8667, + 10: 0.8667, + 20: 0.9103, + 30: 0.9207, + 50: 0.9295, + 75: 0.9291, + 101: 0.9304, + } + + if (!maxPowerGenerationInverter || maxPowerGenerationInverter == 0) { + return inverterEfficiency[101] + } + const usedPower = Math.min(power / maxPowerGenerationInverter, 1) * 100 + const getCorrectEfficiencyKey = + Object.keys(inverterEfficiency).find((val) => val >= usedPower) || 0 + + return inverterEfficiency[getCorrectEfficiencyKey] +} diff --git a/pvtools/functions/integration.test.js b/pvtools/composables/integration.test.js similarity index 100% rename from pvtools/functions/integration.test.js rename to pvtools/composables/integration.test.js diff --git a/pvtools/composables/regression.js b/pvtools/composables/regression.js new file mode 100644 index 0000000..daf8106 --- /dev/null +++ b/pvtools/composables/regression.js @@ -0,0 +1,7142 @@ +export const regressionDb = { + 0: { + 0: 0.9791518061271147, + 50: 0.017110196616369457, + 100: 0.003175582990397805, + 150: 0.00032693187014174667, + 200: 0.00008459076360310928, + 250: 0.000057155921353452216, + 300: 0.0000411522633744856, + 350: 0.0000022862368541380887, + 400: 0, + 450: 0.0000022862368541380887, + 500: 0.0000022862368541380887, + 550: 0, + 600: 0.0000411522633744856, + 650: 0, + 700: 0, + 750: 0, + 800: 0, + 850: 0, + 900: 0, + 950: 0, + 1000: 0.0000022862368541380887, + 1050: 0.0000022862368541380887, + 1100: 0, + 1150: 0, + 1200: 0, + 1250: 0, + 1300: 0, + 1350: 0, + 1400: 0, + 1450: 0, + 1500: 0, + 1550: 0, + 1600: 0, + 1650: 0, + 1700: 0, + 1750: 0, + 1800: 0, + 1850: 0, + 1900: 0, + 1950: 0, + 2000: 0, + 2050: 0, + 2100: 0, + 2150: 0, + 2200: 0, + 2250: 0, + 2300: 0, + 2350: 0, + 2400: 0, + 2450: 0, + 2500: 0, + 2550: 0, + 2600: 0, + 2650: 0, + 2700: 0, + 2750: 0, + 2800: 0, + 2850: 0, + 2900: 0, + 2950: 0, + 3000: 0, + 3050: 0, + 3100: 0, + 3150: 0, + 3200: 0, + 3250: 0, + 3300: 0, + 3350: 0, + 3400: 0, + 3450: 0, + 3500: 0, + 3550: 0, + 3600: 0, + 3650: 0, + 3700: 0, + 3750: 0, + 3800: 0, + 3850: 0, + 3900: 0, + 3950: 0, + 4000: 0, + 4050: 0, + 4100: 0, + 4150: 0, + 4200: 0, + 4250: 0, + 4300: 0, + 4350: 0, + 4400: 0, + 4450: 0, + 4500: 0, + 4550: 0, + 4600: 0, + 4650: 0, + 4700: 0, + 4750: 0, + 4800: 0, + 4850: 0, + 4900: 0, + 4950: 0, + }, + 50: { + 0: 0.17963941877984627, + 50: 0.604543974565234, + 100: 0.16417857325263668, + 150: 0.04490043795806839, + 200: 0.005204742204857121, + 250: 0.0004784979187415409, + 300: 0.00019535738910595265, + 350: 0.0000475625015960571, + 400: 0.00004740289588600322, + 450: 0.00003208074772083046, + 500: 0.00003255956485099211, + 550: 0.00006511912970198422, + 600: 0.00014779488750989555, + 650: 0.00007198217523430118, + 700: 0.000021387165147220308, + 750: 0.000018514262366250415, + 800: 0.000023462039377920785, + 850: 0.000022823616537705253, + 900: 0.00003303838198115376, + 950: 0.00004229551316427897, + 1000: 0.00003766694757271636, + 1050: 0.00005666002706912842, + 1100: 0.00003974182180341684, + 1150: 0.00001436451390484946, + 1200: 0.000013726091064633929, + 1250: 0.000012608851094256749, + 1300: 0.000010693582573610154, + 1350: 0.000007022651242370847, + 1400: 0.000007661074082586379, + 1450: 0.000004788171301616487, + 1500: 0.000002713297070916009, + 1550: 0.00001053397686355627, + 1600: 0.000012449245384202865, + 1650: 0.0000030325084910237747, + 1700: 4.788171301616487e-7, + 1750: 0.000001276845680431063, + 1800: 0.000001436451390484946, + 1850: 0, + 1900: 4.788171301616487e-7, + 1950: 0.0000039901427513470725, + 2000: 0.000005426594141832018, + 2050: 0.0000015960571005388289, + 2100: 3.1921142010776575e-7, + 2150: 4.788171301616487e-7, + 2200: 3.1921142010776575e-7, + 2250: 1.5960571005388288e-7, + 2300: 1.5960571005388288e-7, + 2350: 0, + 2400: 0, + 2450: 1.5960571005388288e-7, + 2500: 9.576342603232974e-7, + 2550: 7.980285502694144e-7, + 2600: 6.384228402155315e-7, + 2650: 0, + 2700: 0, + 2750: 0, + 2800: 1.5960571005388288e-7, + 2850: 0, + 2900: 0, + 2950: 0, + 3000: 0, + 3050: 0, + 3100: 0, + 3150: 1.5960571005388288e-7, + 3200: 0, + 3250: 0, + 3300: 0, + 3350: 0, + 3400: 1.5960571005388288e-7, + 3450: 0, + 3500: 0, + 3550: 0, + 3600: 0, + 3650: 0, + 3700: 0, + 3750: 0, + 3800: 0, + 3850: 0, + 3900: 0, + 3950: 0, + 4000: 0, + 4050: 0, + 4100: 0, + 4150: 0, + 4200: 1.5960571005388288e-7, + 4250: 0, + 4300: 0, + 4350: 0, + 4400: 0, + 4450: 0, + 4500: 0, + 4550: 0, + 4600: 0, + 4650: 0, + 4700: 0, + 4750: 0, + 4800: 0, + 4850: 0, + 4900: 0, + 4950: 0, + }, + 100: { + 0: 0.022894413519883656, + 50: 0.28661562024639353, + 100: 0.4514217984721595, + 150: 0.18220970613309262, + 200: 0.04698987011684469, + 250: 0.005894054126339368, + 300: 0.0011520443642077463, + 350: 0.00045592832188288783, + 400: 0.0002316207813048493, + 450: 0.00009831085034184177, + 500: 0.00008002774852481487, + 550: 0.0001357128529161025, + 600: 0.0001869055380037778, + 650: 0.00014720508834394799, + 700: 0.00007104290991759022, + 750: 0.00004617789144643365, + 800: 0.000090997609615031, + 850: 0.00007532637948615081, + 900: 0.00007856510037945272, + 950: 0.00009893769954699698, + 1000: 0.00015504070340838807, + 1050: 0.00012014609765474818, + 1100: 0.00008128144693512529, + 1150: 0.00006122227237015863, + 1200: 0.0000398049245273557, + 1250: 0.00005234190863045986, + 1300: 0.00004304364542065761, + 1350: 0.00004356601975828695, + 1400: 0.00004429734383096802, + 1450: 0.00004262574595055413, + 1500: 0.000048789763134580346, + 1550: 0.00002737241529177741, + 1600: 0.00002005917456496665, + 1650: 0.000015253330658776724, + 1700: 0.000008671414004647043, + 1750: 0.000008149039667017702, + 1800: 0.000008566939137121174, + 1850: 0.0000062684920515520786, + 1900: 0.00000825351453454357, + 1950: 0.00002998428697992411, + 2000: 0.000048267388796951005, + 2050: 0.000050252411279942495, + 2100: 0.000013268308175785234, + 2150: 0.000010656436487638533, + 2200: 0.000009089313474750513, + 2250: 0.000008880363739698778, + 2300: 0.000004074519833508851, + 2350: 0.0000016715978804138876, + 2400: 0.0000013581732778362838, + 2450: 9.402738077328118e-7, + 2500: 0.0000021939722180432274, + 2550: 0.0000022984470855690955, + 2600: 0.0000026118716881466995, + 2650: 5.223743376293399e-7, + 2700: 6.268492051552078e-7, + 2750: 0, + 2800: 1.0447486752586797e-7, + 2850: 0, + 2900: 0, + 2950: 0, + 3000: 3.134246025776039e-7, + 3050: 8.357989402069438e-7, + 3100: 8.357989402069438e-7, + 3150: 3.134246025776039e-7, + 3200: 0, + 3250: 1.0447486752586797e-7, + 3300: 0, + 3350: 0, + 3400: 1.0447486752586797e-7, + 3450: 2.0894973505173595e-7, + 3500: 3.134246025776039e-7, + 3550: 1.0447486752586797e-7, + 3600: 1.0447486752586797e-7, + 3650: 2.0894973505173595e-7, + 3700: 0, + 3750: 1.0447486752586797e-7, + 3800: 0, + 3850: 0, + 3900: 3.134246025776039e-7, + 3950: 1.0447486752586797e-7, + 4000: 0, + 4050: 0, + 4100: 0, + 4150: 0, + 4200: 1.0447486752586797e-7, + 4250: 1.0447486752586797e-7, + 4300: 0, + 4350: 0, + 4400: 0, + 4450: 0, + 4500: 0, + 4550: 0, + 4600: 0, + 4650: 0, + 4700: 0, + 4750: 0, + 4800: 0, + 4850: 0, + 4900: 0, + 4950: 0, + }, + 150: { + 0: 0.005133588598733913, + 50: 0.08967295487049766, + 100: 0.28919470400002933, + 150: 0.34603410088815983, + 200: 0.19404858978325934, + 250: 0.05513981168591885, + 300: 0.011038188162934478, + 350: 0.00263284457824478, + 400: 0.000931731613221789, + 450: 0.0004131070641919082, + 500: 0.00034395033426431803, + 550: 0.0006025496528006235, + 600: 0.00040882932832009847, + 650: 0.00023323845586771937, + 700: 0.00019616474497870197, + 750: 0.00013352646971291708, + 800: 0.00025238641643677233, + 850: 0.0003226635057593602, + 900: 0.00020685908465822622, + 950: 0.00023303475415953795, + 1000: 0.0002679695971126505, + 1050: 0.0002339514118463543, + 1100: 0.00017375755707874638, + 1150: 0.00014177638889426435, + 1200: 0.0001367856970438197, + 1250: 0.00012079511295157868, + 1300: 0.00012293398088748353, + 1350: 0.00013566533764882192, + 1400: 0.0001566466135915076, + 1450: 0.00017620197757692337, + 1500: 0.00016418357679421993, + 1550: 0.0001496189046592488, + 1600: 0.000075471482881214, + 1650: 0.000059786451351245095, + 1700: 0.00005907349537261015, + 1750: 0.00003524039551538467, + 1800: 0.000023527547294953352, + 1850: 0.000019860916547687894, + 1900: 0.00003646260576447316, + 1950: 0.00005245318985671418, + 2000: 0.00010185085409070714, + 2050: 0.00012466544540702554, + 2100: 0.00006386048551487338, + 2150: 0.00005072172533717216, + 2200: 0.00003269412416311699, + 2250: 0.00003615705320220104, + 2300: 0.000023833099857225472, + 2350: 0.000009166576868163643, + 2400: 0.000004074034163628286, + 2450: 0.000003361078184993336, + 2500: 0.000004685139288172529, + 2550: 0.0000030555256227212145, + 2600: 0.000006620305515895965, + 2650: 0.000002546271352267679, + 2700: 0.00000213886793590485, + 2750: 9.166576868163643e-7, + 2800: 6.111051245442429e-7, + 2850: 4.074034163628286e-7, + 2900: 4.074034163628286e-7, + 2950: 8.148068327256572e-7, + 3000: 8.148068327256572e-7, + 3050: 0.0000010185085409070714, + 3100: 0.0000014259119572699001, + 3150: 0.0000014259119572699001, + 3200: 0.0000011203593949977785, + 3250: 1.0185085409070715e-7, + 3300: 2.037017081814143e-7, + 3350: 4.074034163628286e-7, + 3400: 5.092542704535357e-7, + 3450: 0.0000010185085409070714, + 3500: 0.0000015277628113606072, + 3550: 6.111051245442429e-7, + 3600: 3.0555256227212147e-7, + 3650: 3.0555256227212147e-7, + 3700: 0, + 3750: 1.0185085409070715e-7, + 3800: 1.0185085409070715e-7, + 3850: 1.0185085409070715e-7, + 3900: 0, + 3950: 3.0555256227212147e-7, + 4000: 4.074034163628286e-7, + 4050: 1.0185085409070715e-7, + 4100: 0, + 4150: 0, + 4200: 0, + 4250: 2.037017081814143e-7, + 4300: 3.0555256227212147e-7, + 4350: 0, + 4400: 0, + 4450: 0, + 4500: 0, + 4550: 0, + 4600: 0, + 4650: 0, + 4700: 0, + 4750: 0, + 4800: 0, + 4850: 0, + 4900: 0, + 4950: 0, + }, + 200: { + 0: 0.003970292186534745, + 50: 0.03588453220919387, + 100: 0.11955340916397898, + 150: 0.23541989530049756, + 200: 0.35705750610668996, + 250: 0.1577320991263587, + 300: 0.05423727357476507, + 350: 0.01689606508665473, + 400: 0.004024440817758877, + 450: 0.0016735311337708091, + 500: 0.0015185046438959523, + 550: 0.001547140939254868, + 600: 0.0009196155759579036, + 650: 0.00042694113080565094, + 700: 0.0003268442620283505, + 750: 0.00026918117637380674, + 800: 0.0004167882624511263, + 850: 0.0005529408303848796, + 900: 0.0005662176582331041, + 950: 0.0005254760198361015, + 1000: 0.0005288603092876097, + 1050: 0.00048590586624923626, + 1100: 0.0003761767890330278, + 1150: 0.00036303012616370744, + 1200: 0.0002875344383992936, + 1250: 0.00024353867552968686, + 1300: 0.0002788133848127147, + 1350: 0.0002747782704666857, + 1400: 0.0003217678278510881, + 1450: 0.0002743877755299732, + 1500: 0.00025147873924284074, + 1550: 0.00023052217763927066, + 1600: 0.00019759043797651772, + 1650: 0.00012144392531758302, + 1700: 0.00010217950843976707, + 1750: 0.00010972907721620845, + 1800: 0.00009775389915702557, + 1850: 0.00008421674135099273, + 1900: 0.00010946874725840013, + 1950: 0.00019030119915788466, + 2000: 0.000239633726162562, + 2050: 0.000293522027428885, + 2100: 0.00021021644093022142, + 2150: 0.00015216286033896523, + 2200: 0.00015749962447403587, + 2250: 0.00017025579240664374, + 2300: 0.00009723323924140892, + 2350: 0.00004972302194138983, + 2400: 0.000033712729536177926, + 2450: 0.00002017557173014509, + 2500: 0.00001314666286932035, + 2550: 0.000017051612236445206, + 2600: 0.0000180929320676785, + 2650: 0.000012886332911512026, + 2700: 0.0000040351143460290175, + 2750: 0.0000037747843882206944, + 2800: 0.0000033842894515082087, + 2850: 0.000004295444303837342, + 2900: 0.0000026032995780832376, + 2950: 0.0000023429696202749136, + 3000: 0.0000050764341772623126, + 3050: 0.000002212804641370752, + 3100: 0.000003904949367124856, + 3150: 9.11154852329133e-7, + 3200: 0.000003644619409316532, + 3250: 0.00000416527932493318, + 3300: 0.0000023429696202749136, + 3350: 0.000003644619409316532, + 3400: 0.0000015619797468499423, + 3450: 0.000001041319831233295, + 3500: 0.0000015619797468499423, + 3550: 0.000001822309704658266, + 3600: 0.0000015619797468499423, + 3650: 0.0000023429696202749136, + 3700: 0.0000023429696202749136, + 3750: 6.508248945208094e-7, + 3800: 7.809898734249712e-7, + 3850: 0, + 3900: 9.11154852329133e-7, + 3950: 3.904949367124856e-7, + 4000: 0.0000014318147679457806, + 4050: 0.0000014318147679457806, + 4100: 7.809898734249712e-7, + 4150: 5.206599156166475e-7, + 4200: 1.3016497890416188e-7, + 4250: 2.6032995780832376e-7, + 4300: 0, + 4350: 0, + 4400: 0, + 4450: 0, + 4500: 0, + 4550: 3.904949367124856e-7, + 4600: 1.3016497890416188e-7, + 4650: 1.3016497890416188e-7, + 4700: 0, + 4750: 0, + 4800: 0, + 4850: 0, + 4900: 0, + 4950: 0, + }, + 250: { + 0: 0.003461640153143939, + 50: 0.0359771582559506, + 100: 0.06841119279331496, + 150: 0.11318801156577352, + 200: 0.23385463369561843, + 250: 0.28278259789554105, + 300: 0.14184369269216618, + 350: 0.06688972714296602, + 400: 0.015414507650140056, + 450: 0.0054370050179197976, + 500: 0.010251686361664712, + 550: 0.0021202663552852817, + 600: 0.002438861450652104, + 650: 0.0010278596638473604, + 700: 0.0007214965124845807, + 750: 0.0005286081647285308, + 800: 0.0006321092293781186, + 850: 0.000815400205684843, + 900: 0.0008601879391150283, + 950: 0.0008620697766541117, + 1000: 0.0008731726181347038, + 1050: 0.0009817546441398168, + 1100: 0.0008846518271231126, + 1150: 0.0007506649943403736, + 1200: 0.0006486693997220526, + 1250: 0.0005323718398066976, + 1300: 0.0004292471426649266, + 1350: 0.0004488182530713941, + 1400: 0.0003624419100274654, + 1450: 0.0003917985756371667, + 1500: 0.00035943096996493193, + 1550: 0.00036300646128919047, + 1600: 0.0003255578942614305, + 1650: 0.0002474616363894689, + 1700: 0.00020907215059216722, + 1750: 0.00021377674443987576, + 1800: 0.00022864326099863473, + 1850: 0.00018630191636925792, + 1900: 0.0002239386671509262, + 1950: 0.0003342143469412142, + 2000: 0.00043526902278999353, + 2050: 0.0005786650432681496, + 2100: 0.000502262439181363, + 2150: 0.00039951410954740864, + 2200: 0.00035585547864067346, + 2250: 0.0003400480433123728, + 2300: 0.00025592990531534424, + 2350: 0.00015901527205254844, + 2400: 0.00009051638562991218, + 2450: 0.00005664330992641074, + 2500: 0.000033120340687868075, + 2550: 0.000023334785484634327, + 2600: 0.000020135661668192523, + 2650: 0.000027474828070617835, + 2700: 0.000020323845422100865, + 2750: 0.000019382926652559158, + 2800: 0.000014301965297033942, + 2850: 0.000004704593847708534, + 2900: 0.000010726473972775457, + 2950: 0.00001260831151185887, + 3000: 0.000009409187695417068, + 3050: 0.000004892777601616875, + 3100: 0.00000696279889460863, + 3150: 0.000017501089113475744, + 3200: 0.000005269145109433557, + 3250: 0.000007527350156333653, + 3300: 0.000004328226339891851, + 3350: 0.000004892777601616875, + 3400: 0.0000067746151407002885, + 3450: 0.0000054573288633418985, + 3500: 0.000007150982648516971, + 3550: 0.000011291025234500481, + 3600: 0.0000056455126172502405, + 3650: 0.0000028227563086251203, + 3700: 0.0000035754913242584854, + 3750: 9.409187695417067e-7, + 3800: 9.409187695417067e-7, + 3850: 5.64551261725024e-7, + 3900: 0.0000020700212929917547, + 3950: 0.0000024463888008084375, + 4000: 0.000003951858832075168, + 4050: 0.0000020700212929917547, + 4100: 0.0000024463888008084375, + 4150: 9.409187695417067e-7, + 4200: 0.000001129102523450048, + 4250: 5.64551261725024e-7, + 4300: 0.000001129102523450048, + 4350: 1.8818375390834134e-7, + 4400: 3.763675078166827e-7, + 4450: 1.8818375390834134e-7, + 4500: 3.763675078166827e-7, + 4550: 0.0000016936537851750721, + 4600: 5.64551261725024e-7, + 4650: 3.763675078166827e-7, + 4700: 0, + 4750: 0, + 4800: 0, + 4850: 0, + 4900: 0, + 4950: 0, + }, + 300: { + 0: 0.0029561814551107663, + 50: 0.025650754224711702, + 100: 0.04809743900549214, + 150: 0.07318044977193754, + 200: 0.12226833778281704, + 250: 0.21625290420494134, + 300: 0.2620371815438982, + 350: 0.13303533465429965, + 400: 0.05349141546523254, + 450: 0.01759453245678229, + 500: 0.009485644831383777, + 550: 0.004650312493278899, + 600: 0.003078333155942225, + 650: 0.002412427157052896, + 700: 0.0011338324916906513, + 750: 0.0009234447992879356, + 800: 0.0007839216376158856, + 850: 0.0007921937618256909, + 900: 0.0009466067470753905, + 950: 0.0010469751874876952, + 1000: 0.0012151750464204037, + 1050: 0.001252951080311848, + 1100: 0.0012179324211570054, + 1150: 0.0011771232750552993, + 1200: 0.0009954122799132419, + 1250: 0.0007533147780396059, + 1300: 0.0006780384477303772, + 1350: 0.0006904466340450853, + 1400: 0.0006278542275242249, + 1450: 0.0005440300355315309, + 1500: 0.000559747071530161, + 1550: 0.0005801516445810141, + 1600: 0.0004894340157468156, + 1650: 0.00041608784775320833, + 1700: 0.0003496351166011055, + 1750: 0.00030358695849985577, + 1800: 0.0003350210304971161, + 1850: 0.0002313437404008892, + 1900: 0.00031902825702482575, + 1950: 0.0005076326890083874, + 2000: 0.0006259240652086036, + 2050: 0.0008150799721394857, + 2100: 0.001006166041385989, + 2150: 0.0008023960483511175, + 2200: 0.0007326344675150925, + 2250: 0.0006700420609942322, + 2300: 0.0005713280454238885, + 2350: 0.0003868596755452295, + 2400: 0.00029283319702710887, + 2450: 0.00015606741009166066, + 2500: 0.00010257434020158615, + 2550: 0.00008796025409759673, + 2600: 0.00006810715599406393, + 2650: 0.000058732081889617875, + 2700: 0.00004329078336464792, + 2750: 0.00003612160904948329, + 2800: 0.00004715110799589041, + 2850: 0.00002922817220797885, + 2900: 0.00003943045873340543, + 2950: 0.000028952434734318673, + 3000: 0.00001902588568255227, + 3050: 0.000019301623156212447, + 3100: 0.000020680310524513338, + 3150: 0.00005239011999543379, + 3200: 0.000027298009892357606, + 3250: 0.00003419144673386205, + 3300: 0.00001654424841961067, + 3350: 0.00001544129852496996, + 3400: 0.00002040457305085316, + 3450: 0.000018474410735231914, + 3500: 0.000009099336630785869, + 3550: 0.000007169174315164623, + 3600: 0.0000055147494732035565, + 3650: 0.000007169174315164623, + 3700: 0.0000055147494732035565, + 3750: 0.00000634196189418409, + 3800: 0.0000035845871575823117, + 3850: 0.0000052390119995433786, + 3900: 0.0000030331122102619562, + 3950: 0.00000386032463124249, + 4000: 0.0000033088496839221337, + 4050: 0.000009926549051766401, + 4100: 0.0000066176993678442675, + 4150: 0.0000024816372629416003, + 4200: 0.0000011029498946407114, + 4250: 0, + 4300: 0.00000386032463124249, + 4350: 0.000001930162315621245, + 4400: 8.272124209805334e-7, + 4450: 0.0000011029498946407114, + 4500: 2.7573747366017785e-7, + 4550: 0.0000016544248419610669, + 4600: 0.0000011029498946407114, + 4650: 0.0000011029498946407114, + 4700: 5.514749473203557e-7, + 4750: 0, + 4800: 5.514749473203557e-7, + 4850: 2.7573747366017785e-7, + 4900: 0, + 4950: 0, + }, + 350: { + 0: 0.0031041642212938894, + 50: 0.024023213883688128, + 100: 0.041094577718597085, + 150: 0.06312467648920797, + 200: 0.08366195936415818, + 250: 0.11695379351881606, + 300: 0.19304776510566896, + 350: 0.2265504946227455, + 400: 0.11720471281862807, + 450: 0.05166012749933133, + 500: 0.02011356792235356, + 550: 0.008792951168872153, + 600: 0.006940689527775265, + 650: 0.004674718918430061, + 700: 0.0023471730207874327, + 750: 0.0019954241863883978, + 800: 0.001468955471445422, + 850: 0.0011018128149720315, + 900: 0.0013789016123104394, + 950: 0.001411613484218446, + 1000: 0.0019484730290616119, + 1050: 0.0013819803767253108, + 1100: 0.0013550411880951876, + 1150: 0.0011418367523653569, + 1200: 0.0012057211139739343, + 1250: 0.0009963651337626927, + 1300: 0.0009825106938957722, + 1350: 0.0008766781671345747, + 1400: 0.000778927396962414, + 1450: 0.0007054218965573641, + 1500: 0.0007108097342833887, + 1550: 0.00075583666385088, + 1600: 0.0007319762396356282, + 1650: 0.0006838705456532657, + 1700: 0.000609595354144498, + 1750: 0.0005564866679879698, + 1800: 0.0005307020160134234, + 1850: 0.00040755143941857534, + 1900: 0.0004641237355418337, + 1950: 0.0007796970880661318, + 2000: 0.0010209952490816622, + 2050: 0.0011868636819328483, + 2100: 0.001257675263474886, + 2150: 0.001315017250701862, + 2200: 0.0012195755538408548, + 2250: 0.0012041817317664989, + 2300: 0.0010714100163751782, + 2350: 0.0008285724731522121, + 2400: 0.0006376890794301976, + 2450: 0.0004310270180819683, + 2500: 0.00026900704074937125, + 2550: 0.00014547161860266428, + 2600: 0.00009467200575728945, + 2650: 0.00010621737231305646, + 2700: 0.00009159324134241825, + 2750: 0.00006234497940114184, + 2800: 0.00004233301070447903, + 2850: 0.00005464806836396383, + 2900: 0.000042717856256337926, + 2950: 0.00004849053953422143, + 3000: 0.00004810569398236253, + 3050: 0.00004156331960076122, + 3100: 0.00003001795304499422, + 3150: 0.00003425125411544212, + 3200: 0.00006657828047158975, + 3250: 0.000021551350904098412, + 3300: 0.000027708879733840815, + 3350: 0.00003771486408217222, + 3400: 0.000025784651974546314, + 3450: 0.00004849053953422143, + 3500: 0.00003001795304499422, + 3550: 0.000026554343078264115, + 3600: 0.00001577866762621491, + 3650: 0.000009621138796472506, + 3700: 0.00001731804983365051, + 3750: 0.000011545366555767007, + 3800: 0.00001731804983365051, + 3850: 0.000014624130970638209, + 3900: 0.000007696911037178005, + 3950: 0.00001693320428179161, + 4000: 0.000011545366555767007, + 4050: 0.000010775675452049206, + 4100: 0.000011930212107625906, + 4150: 0.000013084748763202608, + 4200: 0.000005772683277883504, + 4250: 0.0000030787644148712017, + 4300: 3.848455518589002e-7, + 4350: 0, + 4400: 3.848455518589002e-7, + 4450: 3.848455518589002e-7, + 4500: 3.848455518589002e-7, + 4550: 3.848455518589002e-7, + 4600: 7.696911037178004e-7, + 4650: 0.0000015393822074356009, + 4700: 7.696911037178004e-7, + 4750: 0.0000011545366555767007, + 4800: 0.0000011545366555767007, + 4850: 0.0000019242277592945012, + 4900: 0, + 4950: 0, + }, + 400: { + 0: 0.002315235580146313, + 50: 0.019580489164943787, + 100: 0.038379216869102, + 150: 0.05317061660634739, + 200: 0.06735217343971595, + 250: 0.07967218234598387, + 300: 0.11202439765698159, + 350: 0.17872929034088642, + 400: 0.19999842366939224, + 450: 0.11059880366358937, + 500: 0.04765986332228424, + 550: 0.017316484329549648, + 600: 0.010110683038830441, + 650: 0.00812647688631356, + 700: 0.004474808512776406, + 750: 0.003010298857505132, + 800: 0.0022344486364986546, + 850: 0.0016915997834515827, + 900: 0.0018310065215752863, + 950: 0.0019024340022393746, + 1000: 0.0023866630608104012, + 1050: 0.002055633633180971, + 1100: 0.0016605657746113236, + 1150: 0.0015452965989189327, + 1200: 0.0015063809370398776, + 1250: 0.0015068735403548025, + 1300: 0.0013822449016788413, + 1350: 0.0012073707248805561, + 1400: 0.0012122967580298035, + 1450: 0.0010147628287449798, + 1500: 0.0009359462983570202, + 1550: 0.0009014640663122878, + 1600: 0.0008625484044332328, + 1650: 0.0008177215027750808, + 1700: 0.0007546682784647131, + 1750: 0.0006044242674126651, + 1800: 0.0007127969966961096, + 1850: 0.0006187097635454828, + 1900: 0.0006842260044304742, + 1950: 0.0008994936530525888, + 2000: 0.0011970260552671363, + 2050: 0.0014517019690832307, + 2100: 0.0017669680906350692, + 2150: 0.0017768201569335642, + 2200: 0.0015718971779248691, + 2250: 0.0017694311072096929, + 2300: 0.001544803995604008, + 2350: 0.001347762669634109, + 2400: 0.0009251090254286757, + 2450: 0.0007078709635468621, + 2500: 0.00047240657901283283, + 2550: 0.00028620252597127825, + 2600: 0.00019753392928482374, + 2650: 0.00013251029171475708, + 2700: 0.0000965502497252505, + 2750: 0.00008226475359243282, + 2800: 0.000055664174586496465, + 2850: 0.00008127954696258333, + 2900: 0.00009014640663122878, + 2950: 0.0000788165303879596, + 3000: 0.00006157541436559344, + 3050: 0.00007487570386856161, + 3100: 0.00005664938121634596, + 3150: 0.000033497025414882826, + 3200: 0.000046797314917851005, + 3250: 0.000039900868508904546, + 3300: 0.000038915661879055046, + 3350: 0.00005664938121634596, + 3400: 0.000047782521547700505, + 3450: 0.000051723348067098485, + 3500: 0.00006206801768051819, + 3550: 0.00005024553812232424, + 3600: 0.0000384230585641303, + 3650: 0.00003398962872980757, + 3700: 0.00002167454585668889, + 3750: 0.000028078388950710606, + 3800: 0.00001724111602236616, + 3850: 0.000016748512707441413, + 3900: 0.000020196735911914646, + 3950: 0.00001921152928206515, + 4000: 0.000028570992265635353, + 4050: 0.00000985206629849495, + 4100: 0.000016748512707441413, + 4150: 0.00001527070276266717, + 4200: 0.000004926033149247475, + 4250: 0.000002955619889548485, + 4300: 0.000006403843094021717, + 4350: 0.0000014778099447742425, + 4400: 0.0000024630165746237374, + 4450: 0.000005418636464172222, + 4500: 0.00000197041325969899, + 4550: 4.926033149247475e-7, + 4600: 9.85206629849495e-7, + 4650: 9.85206629849495e-7, + 4700: 4.926033149247475e-7, + 4750: 0.0000014778099447742425, + 4800: 0, + 4850: 0.0000014778099447742425, + 4900: 0, + 4950: 0, + }, + 450: { + 0: 0.003100132470973272, + 50: 0.02009008026182498, + 100: 0.03664614665315982, + 150: 0.04866516013402945, + 200: 0.05788077612405517, + 250: 0.0647636561988623, + 300: 0.07584571027818904, + 350: 0.11145827164341932, + 400: 0.15615803007870335, + 450: 0.17335120392737474, + 500: 0.10239788046442765, + 550: 0.04408010597677862, + 600: 0.019388763344502454, + 650: 0.012469726486402244, + 700: 0.006938362035377542, + 750: 0.004839398425933141, + 800: 0.0031992519286215227, + 850: 0.002241720564170498, + 900: 0.0022454609210628847, + 950: 0.0019075820151172758, + 1000: 0.0027161224966882258, + 1050: 0.002042858256058599, + 1100: 0.002112054858567755, + 1150: 0.0020372477207200187, + 1200: 0.001717447206420946, + 1250: 0.0016738097093430997, + 1300: 0.0017810332735915218, + 1350: 0.0016869009584664536, + 1400: 0.0017704355957297593, + 1450: 0.0013365541962128886, + 1500: 0.0012274604535182732, + 1550: 0.0009968051118210862, + 1600: 0.0009201277955271566, + 1650: 0.0009419465440660797, + 1700: 0.0008135276240941324, + 1750: 0.0008085404815709498, + 1800: 0.0008746201200031169, + 1850: 0.0009076599392192005, + 1900: 0.0009163874386347697, + 1950: 0.0014032572274604535, + 2000: 0.0020372477207200187, + 2050: 0.002102703966336788, + 2100: 0.0021731473544767395, + 2150: 0.0022791241330943663, + 2200: 0.0022273825294163484, + 2250: 0.002161926283799579, + 2300: 0.001786643808930102, + 2350: 0.0019443621912257462, + 2400: 0.0014026338346450557, + 2450: 0.0010404426088989325, + 2500: 0.0008565417283565807, + 2550: 0.0005928465674433102, + 2600: 0.0003285280137146419, + 2650: 0.000287384087898387, + 2700: 0.0002181874853892309, + 2750: 0.00011906802774098028, + 2800: 0.00012966570560274293, + 2850: 0.00014462713317229018, + 2900: 0.00015335463258785942, + 2950: 0.0000997428504636484, + 3000: 0.00009600249357126159, + 3050: 0.0000735603522169407, + 3100: 0.00012031481337177588, + 3150: 0.00009226213667887478, + 3200: 0.00009350892230967038, + 3250: 0.00011034052832541105, + 3300: 0.00007044338813995169, + 3350: 0.00004426088989324398, + 3400: 0.00005672874620120003, + 3450: 0.00006109249590898464, + 3500: 0.00008914517260188576, + 3550: 0.00006857320969375828, + 3600: 0.00007854749474012312, + 3650: 0.0000735603522169407, + 3700: 0.00002992285513909452, + 3750: 0.00004613106833943739, + 3800: 0.000028052676692901114, + 3850: 0.00003179303358528793, + 3900: 0.000027429283877503313, + 3950: 0.000040520533000857167, + 4000: 0.00002929946232369672, + 4050: 0.00002181874853892309, + 4100: 0.000035533390477674744, + 4150: 0.00002929946232369672, + 4200: 0.000019325177277331878, + 4250: 0.000013714641938751656, + 4300: 0.000009974285046364841, + 4350: 0.00001745499883113847, + 4400: 0.000011221070677160445, + 4450: 0.000004363749707784618, + 4500: 0.000004987142523182421, + 4550: 0.000005610535338580223, + 4600: 0.000005610535338580223, + 4650: 0.000004987142523182421, + 4700: 0.000006857320969375828, + 4750: 0.0000031169640769890127, + 4800: 0, + 4850: 0.000004987142523182421, + 4900: 0.0000018701784461934075, + 4950: 0, + }, + 500: { + 0: 0.003829660257063637, + 50: 0.019512432916317678, + 100: 0.037974571351334585, + 150: 0.04887414635875755, + 200: 0.049284810023738725, + 250: 0.054980183262353516, + 300: 0.0590210841816197, + 350: 0.06987708156991697, + 400: 0.09591507829937972, + 450: 0.13732489552450466, + 500: 0.175622975302569, + 550: 0.09087484655507842, + 600: 0.04276146202173563, + 650: 0.019024215861367037, + 700: 0.009578212963086063, + 750: 0.006565448413700803, + 800: 0.003937496399306894, + 850: 0.003581489409161345, + 900: 0.003013503153099255, + 950: 0.0024226201819033226, + 1000: 0.0029566306671216466, + 1050: 0.0029736185525435295, + 1100: 0.0030253208125231735, + 1150: 0.002562216283848362, + 1200: 0.002193653030564899, + 1250: 0.002053318324905865, + 1300: 0.001982412368362353, + 1350: 0.001852418114699248, + 1400: 0.0015754417219511546, + 1450: 0.0015451589696773632, + 1500: 0.0015303868953974648, + 1550: 0.0014365842237201107, + 1600: 0.0010702367815786326, + 1650: 0.001013364295601024, + 1700: 0.0009409811316295223, + 1750: 0.0010960879115684545, + 1800: 0.0011669938681119665, + 1850: 0.0011034739487084037, + 1900: 0.0010104098807450443, + 1950: 0.001573964514523165, + 2000: 0.0023022277765221513, + 2050: 0.00275277604205905, + 2100: 0.002724709100927243, + 2150: 0.0032904795458473485, + 2200: 0.003064466809364904, + 2250: 0.002949244629981697, + 2300: 0.0024159727484773684, + 2350: 0.002349498414217826, + 2400: 0.0016175421336488648, + 2450: 0.001250456087793392, + 2500: 0.001230513787515529, + 2550: 0.0007681478625547121, + 2600: 0.0005140681849404612, + 2650: 0.0002961800893119611, + 2700: 0.0002577726961842255, + 2750: 0.00024669364047430177, + 2800: 0.00015658398736692207, + 2850: 0.00014181191308702376, + 2900: 0.0002385689996203577, + 2950: 0.0002297057550524187, + 3000: 0.00016544723193486106, + 3050: 0.0002252741327684492, + 3100: 0.00015879979850890683, + 3150: 0.00014993655394096784, + 3200: 0.00014255051680101867, + 3250: 0.00012999425366310512, + 3300: 0.00012703983880712547, + 3350: 0.0001004501051033085, + 3400: 0.00008715523825140003, + 3450: 0.00013221006480508985, + 3500: 0.00018834394706870343, + 3550: 0.00011448357566921189, + 3600: 0.00009010965310737969, + 3650: 0.0000664743342595424, + 3700: 0.000045793430267684756, + 3750: 0.00002437392256183221, + 3800: 0.000022896715133842378, + 3850: 0.000045054826553689844, + 3900: 0.00008272361596743053, + 3950: 0.000045793430267684756, + 4000: 0.00005539527854961866, + 4050: 0.00009010965310737969, + 4100: 0.00006573573054554747, + 4150: 0.000026589733703816956, + 4200: 0.00003471437455776103, + 4250: 0.00003175995970178137, + 4300: 0.000008863244567938985, + 4350: 0.000022158111419847463, + 4400: 0.000022158111419847463, + 4450: 0.00001624928170788814, + 4500: 0.00000812464085394407, + 4550: 0.000010340451995928816, + 4600: 0.000011817659423918646, + 4650: 0.000004431622283969492, + 4700: 0.0000014772074279898308, + 4750: 0.0000014772074279898308, + 4800: 0.0000014772074279898308, + 4850: 0.0000036930185699745774, + 4900: 0.000002215811141984746, + 4950: 0, + }, + 550: { + 0: 0.0031735885811686685, + 50: 0.018088112068409858, + 100: 0.03955123935572123, + 150: 0.050854407035787697, + 200: 0.05339327790072263, + 250: 0.056350220942640854, + 300: 0.05421241289416955, + 350: 0.05884880648002922, + 400: 0.06706164192252326, + 450: 0.0834300181194451, + 500: 0.12089447750825402, + 550: 0.1399995702898395, + 600: 0.08244526566830673, + 650: 0.040056148794304906, + 700: 0.018422927901796903, + 750: 0.00894244748583747, + 800: 0.00640447185040357, + 850: 0.004775154158520078, + 900: 0.00437588180105852, + 950: 0.003270273367280436, + 1000: 0.002872791468820947, + 1050: 0.003323091907841494, + 1100: 0.004041961197172507, + 1150: 0.0033991864154294593, + 1200: 0.00257468004497633, + 1250: 0.0021566078679930386, + 1300: 0.002027694819844015, + 1350: 0.0019140006732125848, + 1400: 0.0018755058046680847, + 1450: 0.0016830314619455844, + 1500: 0.0014816048242127353, + 1550: 0.00159977511834934, + 1600: 0.001507566479742747, + 1650: 0.0011646935808463858, + 1700: 0.0011718554168546648, + 1750: 0.0011700649578525952, + 1800: 0.0014878714307199794, + 1850: 0.001273016350471607, + 1900: 0.0015603850203038051, + 1950: 0.0017045169699704216, + 2000: 0.0035137757915619247, + 2050: 0.0038306870349282744, + 2100: 0.004355291522534717, + 2150: 0.004919286108186695, + 2200: 0.0043749865715574845, + 2250: 0.004177140851828775, + 2300: 0.0035567468076115995, + 2350: 0.0029363527633944238, + 2400: 0.0026337651920446325, + 2450: 0.002007999770821248, + 2500: 0.0014780239062085955, + 2550: 0.0010877038437573856, + 2600: 0.000851363255484176, + 2650: 0.0006409843227409779, + 2700: 0.0004780525535526287, + 2750: 0.00038047253793982623, + 2800: 0.0003706250134284425, + 2850: 0.00026319747330425626, + 2900: 0.00024081673577838414, + 2950: 0.0002551404077949423, + 3000: 0.0001772554412049073, + 3050: 0.00023544535877217484, + 3100: 0.00016561745769145378, + 3150: 0.0001450271791676514, + 3200: 0.0001772554412049073, + 3250: 0.00017188406419869798, + 3300: 0.0002255978342607911, + 3350: 0.00022380737525872133, + 3400: 0.0001333891956541979, + 3450: 0.00010921799912625601, + 3500: 0.00010653231062315135, + 3550: 0.0000850468025983141, + 3600: 0.00010295139261901182, + 3650: 0.0000796754255921048, + 3700: 0.00009668478611176761, + 3750: 0.00009668478611176761, + 3800: 0.00003401872103932564, + 3850: 0.000039390098045534955, + 3900: 0.000042971016049674494, + 3950: 0.00009220863860659319, + 4000: 0.00006177083557140708, + 4050: 0.00007609450758796525, + 4100: 0.00008325634359624433, + 4150: 0.00004655193405381403, + 4200: 0.00003759963904346518, + 4250: 0.00004655193405381403, + 4300: 0.00004565670455277915, + 4350: 0.00003401872103932564, + 4400: 0.0000304378030351861, + 4450: 0.000019695049022767478, + 4500: 0.000012533213014488395, + 4550: 0.000014323672016558164, + 4600: 0.000014323672016558164, + 4650: 0.0000017904590020697705, + 4700: 0.000005371377006209312, + 4750: 0.000008952295010348852, + 4800: 0.00001700936051966282, + 4850: 0.000002685688503104656, + 4900: 0.000008057065509313968, + 4950: 0, + }, + 600: { + 0: 0.0018763208108496276, + 50: 0.016784300047190136, + 100: 0.038776954800057446, + 150: 0.04968197952358481, + 200: 0.05582080059090256, + 250: 0.05930261187139662, + 300: 0.05191735571103223, + 350: 0.05333511151234124, + 400: 0.05345206097786167, + 450: 0.05695849319846529, + 500: 0.07185723958226471, + 550: 0.10699850222614334, + 600: 0.12700609368267712, + 650: 0.0736904737479226, + 700: 0.03759412380229385, + 750: 0.016708385481852314, + 800: 0.010297708200824802, + 850: 0.007866390365005436, + 900: 0.005665893842713227, + 950: 0.0037864954143499046, + 1000: 0.0036777529288660005, + 1050: 0.003271507417058208, + 1100: 0.0030827468762182238, + 1150: 0.002859106670223025, + 1200: 0.00278421797738977, + 1250: 0.0025790434764767435, + 1300: 0.0019532612486920127, + 1350: 0.0020137877264613554, + 1400: 0.002074314204230698, + 1450: 0.0017378280227333346, + 1500: 0.001654732349863559, + 1550: 0.001671146309936601, + 1600: 0.001594205872094216, + 1650: 0.0018065614805391986, + 1700: 0.0016885861425142083, + 1750: 0.0012772112681835902, + 1800: 0.0013110650608342395, + 1850: 0.001252590328074027, + 1900: 0.0015377828843431338, + 1950: 0.0018917088984181046, + 2000: 0.0033217751697818994, + 2050: 0.0045794948603787525, + 2100: 0.004915981041876115, + 2150: 0.006240382445269702, + 2200: 0.0055807464248343215, + 2250: 0.006331685098175999, + 2300: 0.00495086070703133, + 2350: 0.004397915427070724, + 2400: 0.0031976445967295186, + 2450: 0.0021574098771004737, + 2500: 0.0017911733929707216, + 2550: 0.001415704056299883, + 2600: 0.0010812696198116499, + 2650: 0.0008535259237981903, + 2700: 0.0005970577976569072, + 2750: 0.0005365313198875644, + 2800: 0.0005344795748784341, + 2850: 0.0003939350417530109, + 2900: 0.00037239171915714314, + 2950: 0.0003087876238741049, + 3000: 0.00039803853177127147, + 3050: 0.0002728820862143253, + 3100: 0.000255442253636718, + 3150: 0.00023492480354541536, + 3200: 0.0002544163811321529, + 3250: 0.00034366728902931944, + 3300: 0.0003641847391206221, + 3350: 0.00033238269147910297, + 3400: 0.0002359506760499805, + 3450: 0.00032417571144258194, + 3500: 0.00026775272369149964, + 3550: 0.00023389893104085025, + 3600: 0.0002041486284084614, + 3650: 0.00015182913067563963, + 3700: 0.0001261823180615113, + 3750: 0.00009745788793368761, + 3800: 0.00005950060526477769, + 3850: 0.00007488869283325468, + 3900: 0.00009232852541086194, + 3950: 0.0000820698003652106, + 4000: 0.00007283694782412442, + 4050: 0.00008309567286977574, + 4100: 0.0001354151706025975, + 4150: 0.00010874248548390406, + 4200: 0.00006257822277847309, + 4250: 0.00008514741787890601, + 4300: 0.00008822503539260141, + 4350: 0.00005539711524651716, + 4400: 0.00005950060526477769, + 4450: 0.000028724430127823714, + 4500: 0.000028724430127823714, + 4550: 0.000013336342559346724, + 4600: 0.000025646812614128315, + 4650: 0.000026672685118693448, + 4700: 0.000022569195100432917, + 4750: 0.000016413960073042124, + 4800: 0.000012310470054781591, + 4850: 0.000010258725045651326, + 4900: 0.000003077617513695398, + 4950: 0, + }, + 650: { + 0: 0.0024443541992999556, + 50: 0.02104774612751639, + 100: 0.03920635841503742, + 150: 0.05770532381891667, + 200: 0.06019093294141156, + 250: 0.06421070952021814, + 300: 0.056475411421167646, + 350: 0.049289319487149735, + 400: 0.046312518935365136, + 450: 0.0442794247516647, + 500: 0.048911579096646104, + 550: 0.06141311004106154, + 600: 0.09466715656887961, + 650: 0.09214544938858915, + 700: 0.05912604023644228, + 750: 0.030598260847144062, + 800: 0.01723682259738418, + 850: 0.010975098786202807, + 900: 0.00712936641462487, + 950: 0.0054649881069791725, + 1000: 0.004839718177305925, + 1050: 0.004273752199725397, + 1100: 0.003874095131274455, + 1150: 0.0036446146210026235, + 1200: 0.0038109235301322093, + 1250: 0.00337645762023554, + 1300: 0.0033906390000837993, + 1350: 0.0023450845403621408, + 1400: 0.0022612854776224273, + 1450: 0.002016334371152495, + 1500: 0.002395363978005969, + 1550: 0.002159437385984929, + 1600: 0.0020150451548026534, + 1650: 0.002025358885601387, + 1700: 0.0017198146106888927, + 1750: 0.0017159469616393674, + 1800: 0.002026648101951229, + 1850: 0.0017739616973822462, + 1900: 0.0018139274042273403, + 1950: 0.0019815255297067676, + 2000: 0.0032642957977993075, + 2050: 0.005185228159063513, + 2100: 0.00680448389446475, + 2150: 0.007296964540104298, + 2200: 0.007522577401326604, + 2250: 0.008414715115417094, + 2300: 0.007183513501318224, + 2350: 0.0058865618533774245, + 2400: 0.004824247581107824, + 2450: 0.003549212611114334, + 2500: 0.00285303578219979, + 2550: 0.001801035240728923, + 2600: 0.001293083998891274, + 2650: 0.001153848633108365, + 2700: 0.0008354121946974532, + 2750: 0.0007425886175088472, + 2800: 0.0005801473574287869, + 2850: 0.0006355836604719821, + 2900: 0.0005002159437385985, + 2950: 0.0005724120593297364, + 3000: 0.0005376032178840092, + 3050: 0.00035840214525600613, + 3100: 0.00027460308251629246, + 3150: 0.0004112600155995178, + 3200: 0.000272024649816609, + 3250: 0.00036742665970489836, + 3300: 0.0005118188908871742, + 3350: 0.00046411788594302955, + 3400: 0.0005956179536268879, + 3450: 0.00035324527985663913, + 3500: 0.0002681570007670837, + 3550: 0.0002385050247207235, + 3600: 0.00015212752928132634, + 3650: 0.0001856471543772118, + 3700: 0.0001031373079873399, + 3750: 0.0000954020098882894, + 3800: 0.00012763241863433312, + 3850: 0.00009024514448892241, + 3900: 0.00013665693308322535, + 3950: 0.00012505398593464962, + 4000: 0.00010958338973654864, + 4050: 0.00015470596198100984, + 4100: 0.00012247555323496612, + 4150: 0.00012247555323496612, + 4200: 0.00011216182243623214, + 4250: 0.0000954020098882894, + 4300: 0.00007735298099050492, + 4350: 0.00008379906273971367, + 4400: 0.00006832846654161268, + 4450: 0.00001675981254794273, + 4500: 0.00003351962509588546, + 4550: 0.000023205894297151475, + 4600: 0.00001675981254794273, + 4650: 0.00003609805779556896, + 4700: 0.00002062746159746798, + 4750: 0.000006446081749208743, + 4800: 0.000012892163498417487, + 4850: 0.000014181379848259236, + 4900: 0.000015470596198100986, + 4950: 0, + }, + 700: { + 0: 0.0024787657090019647, + 50: 0.018386912366963534, + 100: 0.04146114413702404, + 150: 0.051298111014966306, + 200: 0.06296252331164348, + 250: 0.06460566226934358, + 300: 0.06290473230267495, + 350: 0.052958431083440845, + 400: 0.0469341088782609, + 450: 0.040967577682049484, + 500: 0.041401791208894194, + 550: 0.04639837060593092, + 600: 0.057263080292016405, + 650: 0.07360544047682269, + 700: 0.06838394472055705, + 750: 0.05107788041322133, + 800: 0.02805831581380674, + 850: 0.014597696481620898, + 900: 0.010066568994655113, + 950: 0.007595612881459707, + 1000: 0.006406992399701361, + 1050: 0.005132466364070861, + 1100: 0.0035518041728232314, + 1150: 0.0034440317506927113, + 1200: 0.0038844929541826632, + 1250: 0.003667386190760311, + 1300: 0.0038095208344396925, + 1350: 0.002809892571200085, + 1400: 0.0024022316700976825, + 1450: 0.002071104807899562, + 1500: 0.0021117147060936716, + 1550: 0.0023866124784845634, + 1600: 0.0028723693376525605, + 1650: 0.0024818895473245886, + 1700: 0.0021273338977067903, + 1750: 0.002297583086289786, + 1800: 0.002327259550354712, + 1850: 0.002502194496421643, + 1900: 0.0020570475354477554, + 1950: 0.0026521387359075845, + 2000: 0.004092228202637144, + 2050: 0.0051746381814262825, + 2100: 0.007770547827526638, + 2150: 0.00894667295599449, + 2200: 0.008763928414120999, + 2250: 0.008703013566829836, + 2300: 0.00881390982728298, + 2350: 0.008001711863400799, + 2400: 0.005697881100465764, + 2450: 0.004860692430002593, + 2500: 0.003736110633858034, + 2550: 0.0028317594394584515, + 2600: 0.002250725511450429, + 2650: 0.0017618448139598087, + 2700: 0.0012573449248560692, + 2750: 0.0012042396733714649, + 2800: 0.0008699889728507211, + 2850: 0.0009683898800133701, + 2900: 0.0007387877633005226, + 2950: 0.0006685014010414877, + 3000: 0.0005373001914912892, + 3050: 0.0003982893861345312, + 3100: 0.0003358126196820557, + 3150: 0.00033737453884336764, + 3200: 0.00045764231426438293, + 3250: 0.0003498698921338627, + 3300: 0.00042952776936076896, + 3350: 0.00046857574839356613, + 3400: 0.0004607661525870067, + 3450: 0.0005888435238145815, + 3500: 0.0005857196854919576, + 3550: 0.0004232800927155214, + 3600: 0.0004045370627797788, + 3650: 0.00023741171251940685, + 3700: 0.00019055413768005023, + 3750: 0.00014213464367938172, + 3800: 0.00012807737122757474, + 3850: 0.0000984009071626489, + 3900: 0.000207735248454481, + 3950: 0.00022335444006759986, + 4000: 0.0001561919161311887, + 4050: 0.0001968018143252978, + 4100: 0.00022179252090628797, + 4150: 0.00011714393709839153, + 4200: 0.00011089626045314399, + 4250: 0.00011089626045314399, + 4300: 0.00008902939219477757, + 4350: 0.00008746747303346568, + 4400: 0.00007497211974297058, + 4450: 0.0000718482814203468, + 4500: 0.00005466717064591605, + 4550: 0.000024990706580990196, + 4600: 0.000029676464064925856, + 4650: 0.000023428787419678306, + 4700: 0.000012495353290495098, + 4750: 0.000018743029935742646, + 4800: 0.0000609148472911636, + 4850: 0.00001093343412918321, + 4900: 0.000006247676645247549, + 4950: 0, + }, + 750: { + 0: 0.0019698487129658493, + 50: 0.018638947291623832, + 100: 0.03777864737055043, + 150: 0.05533981548420473, + 200: 0.05977529133200241, + 250: 0.061221173552293846, + 300: 0.05822328931572629, + 350: 0.0540249248870819, + 400: 0.04220583260928681, + 450: 0.036238252206960135, + 500: 0.035536866680373806, + 550: 0.03240633269882539, + 600: 0.0367854324050062, + 650: 0.043260398081884685, + 700: 0.06327392835587274, + 750: 0.09022172404873552, + 800: 0.0486973795042879, + 850: 0.024944784543651715, + 900: 0.012867025263143931, + 950: 0.008731669463365456, + 1000: 0.0077334801323844455, + 1050: 0.005475118224085214, + 1100: 0.005103698938138792, + 1150: 0.004394022802491162, + 1200: 0.004914673051541058, + 1250: 0.004100535241720998, + 1300: 0.003425679664130846, + 1350: 0.0026762086049889567, + 1400: 0.0028403626644027775, + 1450: 0.0022832337354831435, + 1500: 0.0022931824663567084, + 1550: 0.002485524596578963, + 1600: 0.002261678151923753, + 1650: 0.002278259370046361, + 1700: 0.0024440715512724425, + 1750: 0.002747507842916172, + 1800: 0.002989593627506251, + 1850: 0.002278259370046361, + 1900: 0.0026529948996173057, + 1950: 0.0030227560637514674, + 2000: 0.004642741074330285, + 2050: 0.005679067206993294, + 2100: 0.008443156268032074, + 2150: 0.009726542550721947, + 2200: 0.010209055998089843, + 2250: 0.010660065131024786, + 2300: 0.010741313099825565, + 2350: 0.008756541290549369, + 2400: 0.006536316183932136, + 2450: 0.00560942609087834, + 2500: 0.004216603768579255, + 2550: 0.0032648418483415464, + 2600: 0.0020411479508930645, + 2650: 0.0013977966877358678, + 2700: 0.0013115743534983053, + 2750: 0.0014591471947895181, + 2800: 0.0012767537954408283, + 2850: 0.0009683431383603165, + 2900: 0.0007892659826361484, + 2950: 0.0010064799400423153, + 3000: 0.0009700012601725773, + 3050: 0.0005521545634828518, + 3100: 0.0007295735973947591, + 3150: 0.0005621032943564166, + 3200: 0.0004344279148123338, + 3250: 0.00046593222924528927, + 3300: 0.00048251344736789745, + 3350: 0.00044437664568589864, + 3400: 0.0005654195379809383, + 3450: 0.0005703939034177207, + 3500: 0.0005455220762338084, + 3550: 0.0004510091329349419, + 3600: 0.000315043144329555, + 3650: 0.00023213705371651422, + 3700: 0.00026695761177399134, + 3750: 0.0001558634503525167, + 3800: 0.00020063273928355873, + 3850: 0.00026695761177399134, + 3900: 0.00014259847585443018, + 3950: 0.00016415405941382077, + 4000: 0.00015088908491573425, + 4050: 0.000207265226532602, + 4100: 0.0002487182718391224, + 4150: 0.00021223959196938443, + 4200: 0.0001757609120996465, + 4250: 0.00019897461747129792, + 4300: 0.00017244466847512487, + 4350: 0.0001956583738467763, + 4400: 0.00014259847585443018, + 4450: 0.00008124796880077999, + 4500: 0.00012104289229503956, + 4550: 0.000058034263429128555, + 4600: 0.00002155558355939061, + 4650: 0.000029846192620694685, + 4700: 0.00004642741074330285, + 4750: 0.00003482055805747714, + 4800: 0.00003482055805747714, + 4850: 0.00005471801980460692, + 4900: 0.00001658121812260816, + 4950: 0, + }, + 800: { + 0: 0.002079307542232447, + 50: 0.01979619810332931, + 100: 0.037806944292040415, + 150: 0.05488404791706576, + 200: 0.06052496005981264, + 250: 0.06416653802733602, + 300: 0.057041468980562754, + 350: 0.050147020806094345, + 400: 0.03937107456307574, + 450: 0.03481259264356614, + 500: 0.03129004480368398, + 550: 0.027241160618138333, + 600: 0.02817852287331289, + 650: 0.02962734270819578, + 700: 0.03927250273862286, + 750: 0.05957085919293854, + 800: 0.07718173854660494, + 850: 0.05339617132155059, + 900: 0.022708716539050253, + 950: 0.010100822237803597, + 1000: 0.008406502764660699, + 1050: 0.0071380879669840185, + 1100: 0.005598135690625819, + 1150: 0.004502686547177777, + 1200: 0.004182793079142016, + 1250: 0.00402470619086853, + 1300: 0.004102819712133075, + 1350: 0.002380602552824269, + 1400: 0.002685617254904878, + 1450: 0.00296831380805276, + 1500: 0.0027172346325595757, + 1550: 0.0026763180261829083, + 1600: 0.002040250781600174, + 1650: 0.002001194020967901, + 1700: 0.0031914952973800354, + 1750: 0.0035485856803036757, + 1800: 0.0031264006963262468, + 1850: 0.0031487188452589744, + 1900: 0.0030334084091065486, + 1950: 0.00316545745695852, + 2000: 0.003861039765361861, + 2050: 0.006356952754338555, + 2100: 0.00937920208897874, + 2150: 0.010629018429211481, + 2200: 0.010677374418565724, + 2250: 0.010688533493032087, + 2300: 0.011705869115215584, + 2350: 0.01080198408344012, + 2400: 0.007878306573252815, + 2450: 0.006440645812836284, + 2500: 0.005395412504486878, + 2550: 0.0037978050100524663, + 2600: 0.0031412794622813984, + 2650: 0.002639121111295029, + 2700: 0.0017575542284522922, + 2750: 0.00185984574439396, + 2800: 0.001486016749770774, + 2850: 0.0011493846700354673, + 2900: 0.0013651267763851666, + 2950: 0.0008201919732777364, + 3000: 0.0008573888881656155, + 3050: 0.0006156089413944007, + 3100: 0.0005319158828966725, + 3150: 0.0005988703296948551, + 3200: 0.0005021583509863691, + 3250: 0.0005784120265065215, + 3300: 0.0008778471913539491, + 3350: 0.0011066082179144062, + 3400: 0.0009671197870848592, + 3450: 0.0007811352126454632, + 3500: 0.0007346390690356142, + 3550: 0.0006695444679818256, + 3600: 0.0005895711009728853, + 3650: 0.00042776452121061077, + 3700: 0.00021202241486091144, + 3750: 0.00026595794144833627, + 3800: 0.0004110259095110652, + 3850: 0.00026595794144833627, + 3900: 0.0002362004095380329, + 3950: 0.00018226488295060807, + 4000: 0.00023806025528242688, + 4050: 0.0002678177871927302, + 4100: 0.0003291926967577309, + 4150: 0.00026223824995954837, + 4200: 0.00015064750529591075, + 4250: 0.0001766853457174262, + 4300: 0.00019342395741697184, + 4350: 0.0001432081223183349, + 4400: 0.0002231814893272752, + 4450: 0.00014506796806272888, + 4500: 0.00017296565422863827, + 4550: 0.00014134827657394096, + 4600: 0.00011717028189681948, + 4650: 0.00011903012764121344, + 4700: 0.0000836930584977282, + 4750: 0.00006509460105378859, + 4800: 0.00003905676063227316, + 4850: 0.0000371969148878792, + 4900: 0.00001487876595515168, + 4950: 0, + }, + 850: { + 0: 0.0011490504216977125, + 50: 0.015214489412050239, + 100: 0.035863266792063586, + 150: 0.048205130149869546, + 200: 0.05532696741702567, + 250: 0.06228573812268673, + 300: 0.06034221224440264, + 350: 0.05690454159334992, + 400: 0.04347240762089679, + 450: 0.03667859959953886, + 500: 0.02935956556034221, + 550: 0.02450928341726837, + 600: 0.0211815878890844, + 650: 0.019975653783144226, + 700: 0.025597657909107455, + 750: 0.03645485710818518, + 800: 0.059828362963412415, + 850: 0.07332306898853225, + 900: 0.05015434439657788, + 950: 0.019685546993507677, + 1000: 0.011058188216734422, + 1050: 0.007800649232449487, + 1100: 0.006882925793337783, + 1150: 0.005982267459498817, + 1200: 0.004973530125599175, + 1250: 0.004816151932528366, + 1300: 0.004869243371154663, + 1350: 0.003361825738729446, + 1400: 0.0030053546508100235, + 1450: 0.0022298404223044716, + 1500: 0.0020971118257387296, + 1550: 0.0029067562647897578, + 1600: 0.0021577877555973546, + 1650: 0.0020402281414962685, + 1700: 0.002521843334749105, + 1750: 0.004254899581336084, + 1800: 0.005187792002912445, + 1850: 0.004907165827316304, + 1900: 0.0037656998968509194, + 1950: 0.0043004065287300525, + 2000: 0.003697439475759966, + 2050: 0.005383092652144894, + 2100: 0.00803576846065166, + 2150: 0.010787042655178691, + 2200: 0.011217462532613312, + 2250: 0.011283826830896184, + 2300: 0.011335022146714398, + 2350: 0.010764289181481706, + 2400: 0.008646320004854074, + 2450: 0.007368333232206784, + 2500: 0.0066307414598628725, + 2550: 0.004848386020265761, + 2600: 0.003376994721194102, + 2650: 0.0025370123172137613, + 2700: 0.002464959650506644, + 2750: 0.0019890328256780537, + 2800: 0.0020819428432740732, + 2850: 0.00145432619379892, + 2900: 0.0017065105272738306, + 2950: 0.0015055215096171348, + 3000: 0.001679964807960682, + 3050: 0.0015529245798191857, + 3100: 0.0011433620532734663, + 3150: 0.000784994842545962, + 3200: 0.0010409714216370366, + 3250: 0.0007527607548085674, + 3300: 0.0007944754565863722, + 3350: 0.0006882925793337783, + 3400: 0.001004945088283478, + 3450: 0.0008589436320611614, + 3500: 0.0007394878951519932, + 3550: 0.0006257205266670711, + 3600: 0.0007679297372732237, + 3650: 0.0004645500879800983, + 3700: 0.0004247315090103756, + 3750: 0.00027304168436381287, + 3800: 0.0001953006492324495, + 3850: 0.00028252229840422305, + 3900: 0.00026545719313148474, + 3950: 0.00037922456161640675, + 4000: 0.0004778229476366725, + 4050: 0.00027304168436381287, + 4100: 0.0002901067896365512, + 4150: 0.0002351192282021722, + 4200: 0.0002578727018991566, + 4250: 0.00030906801771737153, + 4300: 0.0001953006492324495, + 4350: 0.00022184636854559797, + 4400: 0.0002901067896365512, + 4450: 0.00014979370183848068, + 4500: 0.0001232479825253322, + 4550: 0.00009480614040410169, + 4600: 0.00014410533341423457, + 4650: 0.00007205266670711728, + 4700: 0.00014410533341423457, + 4750: 0.0001175596141010861, + 4800: 0.00006067592985862509, + 4850: 0.00002464959650506644, + 4900: 0.00005309143862629695, + 4950: 0, + }, + 900: { + 0: 0.0019496114474609394, + 50: 0.015265868558748596, + 100: 0.03254755316914591, + 150: 0.05475120766329708, + 200: 0.057435918508981, + 250: 0.06241952716215106, + 300: 0.057600288560757565, + 350: 0.05289747874603914, + 400: 0.0466536996959154, + 450: 0.03782565816508232, + 500: 0.032255339743765356, + 550: 0.027689504972194065, + 600: 0.027191828982092797, + 650: 0.02309855810937914, + 700: 0.022062113616232455, + 750: 0.02546137760366728, + 800: 0.033634221844779884, + 850: 0.0499936078313198, + 900: 0.05148663580162361, + 950: 0.031228026920161814, + 1000: 0.014861792181464537, + 1050: 0.009601950524614416, + 1100: 0.007362408569158699, + 1150: 0.006163876941621236, + 1200: 0.004867179866494991, + 1250: 0.004271338428804938, + 1300: 0.003136728488069474, + 1350: 0.003396981070049037, + 1400: 0.0030568263795669763, + 1450: 0.002374234081217069, + 1500: 0.0027874421280442703, + 1550: 0.002935831758120337, + 1600: 0.0021322448383237907, + 1650: 0.002406194924618068, + 1700: 0.002239541955455716, + 1750: 0.002737217945556986, + 1800: 0.004106968377028372, + 1850: 0.003974559168652805, + 1900: 0.004257640924490225, + 1950: 0.0039060716470792354, + 2000: 0.005358007104438904, + 2050: 0.005937868120428458, + 2100: 0.007615812398980906, + 2150: 0.011309572729182076, + 2200: 0.014062771096439563, + 2250: 0.014930279703038106, + 2300: 0.012823146955957957, + 2350: 0.012361997644029258, + 2400: 0.010775370060908236, + 2450: 0.009579121350756559, + 2500: 0.008065547123980677, + 2550: 0.006188989032864879, + 2600: 0.004969911148855345, + 2650: 0.004054461277155303, + 2700: 0.0032211964313435424, + 2750: 0.0022852003031714288, + 2800: 0.0023331415682729274, + 2850: 0.002066040234136007, + 2900: 0.0025089262069784217, + 2950: 0.002116264416623291, + 3000: 0.002214429864212074, + 3050: 0.0014519354573596691, + 3100: 0.001856011834643728, + 3150: 0.0009222986238573999, + 3200: 0.000933713210786328, + 3250: 0.0012784337360399601, + 3300: 0.0005364855856596261, + 3350: 0.0007328164808371914, + 3400: 0.000947410715101042, + 3450: 0.0016596809394661626, + 3500: 0.00124190705786739, + 3550: 0.0010181811540603968, + 3600: 0.0008834890282990439, + 3650: 0.0008538111022838306, + 3700: 0.0008309819284259741, + 3750: 0.000454300559771343, + 3800: 0.00037668136865463115, + 3850: 0.0003492863600252034, + 3900: 0.0005342026682738405, + 3950: 0.0004017934598982732, + 4000: 0.00037668136865463115, + 4050: 0.0002785159210658485, + 4100: 0.0002739500862942772, + 4150: 0.00035156927741098907, + 4200: 0.00034015469048206086, + 4250: 0.00024198924289327818, + 4300: 0.0002739500862942772, + 4350: 0.0003150425992384188, + 4400: 0.00028308175583741975, + 4450: 0.00025112091243642077, + 4500: 0.00019176506040599403, + 4550: 0.00018263339086285147, + 4600: 0.00011414586928928216, + 4650: 0.00008903377804564008, + 4700: 0.00007533627373092623, + 4750: 0.00009131669543142573, + 4800: 0.00007305335634514058, + 4850: 0.00005250709987306979, + 4900: 0.00007761919111671187, + 4950: 0, + }, + 950: { + 0: 0.0013782771535580524, + 50: 0.013774599931903303, + 100: 0.0307170582226762, + 150: 0.050470548178413344, + 200: 0.057874021109976165, + 250: 0.06086210418794689, + 300: 0.05734831460674157, + 350: 0.05305005107252298, + 400: 0.046847803881511746, + 450: 0.04137282941777324, + 500: 0.03670139598229486, + 550: 0.03256928838951311, + 600: 0.028742254000680968, + 650: 0.024670071501532175, + 700: 0.02202247191011236, + 750: 0.024457609805924412, + 800: 0.024155260469867212, + 850: 0.027960503915560094, + 900: 0.03371876064010895, + 950: 0.02796595165134491, + 1000: 0.022006128702757918, + 1050: 0.014365679264555668, + 1100: 0.009985699693564862, + 1150: 0.007678583588695948, + 1200: 0.007733060946544093, + 1250: 0.005848144364998298, + 1300: 0.005355124276472591, + 1350: 0.003758937691521961, + 1400: 0.0037671092951991826, + 1450: 0.003323118828736806, + 1500: 0.002511406196799455, + 1550: 0.0030888661899897856, + 1600: 0.002696629213483146, + 1650: 0.0024950629894450117, + 1700: 0.002397003745318352, + 1750: 0.003317671092951992, + 1800: 0.0035410282601293836, + 1850: 0.003331290432414028, + 1900: 0.003919645897173987, + 1950: 0.0038869594824651006, + 2000: 0.004916581545795029, + 2050: 0.006586312563840653, + 2100: 0.01023357167177392, + 2150: 0.013480422199523324, + 2200: 0.01555873340143003, + 2250: 0.013608443990466462, + 2300: 0.012567926455566905, + 2350: 0.013548518896833504, + 2400: 0.011712631937351038, + 2450: 0.010391556009533537, + 2500: 0.009056860742254001, + 2550: 0.00841130405175349, + 2600: 0.006624446714334355, + 2650: 0.005109976166155941, + 2700: 0.004341845420497106, + 2750: 0.0032032686414708886, + 2800: 0.0035137895812053115, + 2850: 0.0036309159005788218, + 2900: 0.0017923050732039495, + 2950: 0.0020265577119509704, + 3000: 0.0024133469526727955, + 3050: 0.0017078651685393258, + 3100: 0.0015662240381341505, + 3150: 0.0012311882873680628, + 3200: 0.0010187265917602996, + 3250: 0.0009370105549880831, + 3300: 0.0014463738508682328, + 3350: 0.0012992849846782432, + 3400: 0.0016315968675519237, + 3450: 0.0018903643173306096, + 3500: 0.0017187606401089547, + 3550: 0.0012584269662921348, + 3600: 0.0008198842356145727, + 3650: 0.0006510044262853251, + 3700: 0.0006373850868232891, + 3750: 0.0006237657473612529, + 3800: 0.0006591760299625468, + 3850: 0.0005529451821586653, + 3900: 0.0004957439564181137, + 3950: 0.00033775961865849507, + 4000: 0.00036227442969016, + 4050: 0.0005039155600953354, + 4100: 0.0005202587674497786, + 4150: 0.0003758937691521961, + 4200: 0.00021790943139257747, + 4250: 0.000473953013278856, + 4300: 0.0003922369765066394, + 4350: 0.0004194756554307116, + 4400: 0.00033775961865849507, + 4450: 0.00035137895812053117, + 4500: 0.0004330949948927477, + 4550: 0.00015253660197480422, + 4600: 0.0001361933946203609, + 4650: 0.0001470888661899898, + 4700: 0.00009805924412665985, + 4750: 0.00004630575417092271, + 4800: 0.0000299625468164794, + 4850: 0.000049029622063329925, + 4900: 0.0000735444330949949, + 4950: 0, + }, + 1000: { + 0: 0.0015740792793626963, + 50: 0.015251373185757889, + 100: 0.030797059514085696, + 150: 0.04230172718825129, + 200: 0.05406433222332085, + 250: 0.0511278145761064, + 300: 0.05349885416287752, + 350: 0.0547951547458821, + 400: 0.04973561420507343, + 450: 0.04271839523278847, + 500: 0.035390328671721795, + 550: 0.03182880895770158, + 600: 0.028760015740792795, + 650: 0.027404191151425766, + 700: 0.023505368734684968, + 750: 0.021342663170182442, + 800: 0.02542336449525296, + 850: 0.028644274617310242, + 900: 0.02480828309617426, + 950: 0.0201158072612674, + 1000: 0.02272163598424598, + 1050: 0.01612769883498292, + 1100: 0.012324776206270524, + 1150: 0.009269210546331171, + 1200: 0.00962966147374826, + 1250: 0.00946101012238797, + 1300: 0.006316158452904937, + 1350: 0.0045734278221819516, + 1400: 0.0040145635402233475, + 1450: 0.0036276574988673904, + 1500: 0.003465619925991819, + 1550: 0.0030059623213039726, + 1600: 0.0030357243244852, + 1650: 0.0035714403817472943, + 1700: 0.0030125760997886898, + 1750: 0.003396175251902288, + 1800: 0.004242738897946091, + 1850: 0.0036871815052298453, + 1900: 0.004249352676430809, + 1950: 0.005148826550352349, + 2000: 0.005631632379736706, + 2050: 0.008429260678772086, + 2100: 0.01019844642343394, + 2150: 0.012708375358384122, + 2200: 0.0136607594601834, + 2250: 0.015353886752271007, + 2300: 0.012595941124143929, + 2350: 0.010912734499783399, + 2400: 0.010410087334944891, + 2450: 0.010800300265543206, + 2500: 0.00984460927450157, + 2550: 0.008839314944824553, + 2600: 0.007923306624691219, + 2650: 0.006289703338966068, + 2700: 0.005039699205354515, + 2750: 0.004537052040516007, + 2800: 0.004305569793550904, + 2850: 0.004616417382332614, + 2900: 0.0034027890303870052, + 2950: 0.004060859989616368, + 3000: 0.0036342712773521075, + 3050: 0.0025529184951008435, + 3100: 0.001937837096022143, + 3150: 0.0015211690514849586, + 3200: 0.0009589978802839956, + 3250: 0.0014914070483037312, + 3300: 0.0012466972443691943, + 3350: 0.0011607181240678706, + 3400: 0.0010350563328582435, + 3450: 0.001365745257094104, + 3500: 0.0013988141495176903, + 3550: 0.0014252692634565591, + 3600: 0.0012466972443691943, + 3650: 0.0009986805511922989, + 3700: 0.0008796325384673892, + 3750: 0.0007804258611966309, + 3800: 0.0006216951775634179, + 3850: 0.0004761920508996392, + 3900: 0.0005092609433232253, + 3950: 0.0005654780604433216, + 4000: 0.0004993402755961494, + 4050: 0.00044973693696077037, + 4100: 0.0006415365130175695, + 4150: 0.0004794989401419978, + 4200: 0.0004960333863537909, + 4250: 0.00043320249074897736, + 4300: 0.00038690604135595687, + 4350: 0.0005059540540808667, + 4400: 0.0005257953895350183, + 4450: 0.0005390229465044527, + 4500: 0.00016203757287557168, + 4550: 0.00020833402226859215, + 4600: 0.00014219623742142004, + 4650: 0.00013558245893670283, + 4700: 0.00013227556969434422, + 4750: 0.0003472233704476536, + 4800: 0.000234789136207461, + 4850: 0.00013888934817906143, + 4900: 0.00020502713302623354, + 4950: 0, + }, + 1050: { + 0: 0.0011717081615143005, + 50: 0.010004875817833398, + 100: 0.029995728934766094, + 150: 0.03858321584754187, + 200: 0.05490775633005885, + 250: 0.05830570999845032, + 300: 0.060668024840213025, + 350: 0.05560322181947379, + 400: 0.047465519652569635, + 450: 0.03978138193528391, + 500: 0.03882511688733837, + 550: 0.033083746895918295, + 600: 0.031450914877291916, + 650: 0.0247343813191922, + 700: 0.01934830347997324, + 750: 0.019563746593541997, + 800: 0.018573464211875074, + 850: 0.02214528425262028, + 900: 0.020228974452982374, + 950: 0.016241387000086933, + 1000: 0.01726568671547524, + 1050: 0.017004887156944638, + 1100: 0.010303472413832204, + 1150: 0.008889863212521403, + 1200: 0.00967226188811321, + 1250: 0.008092345721942314, + 1300: 0.006803466744276583, + 1350: 0.006863942004225709, + 1400: 0.00419547115897056, + 1450: 0.004301302863881529, + 1500: 0.0041009785653000515, + 1550: 0.00442981279127342, + 1600: 0.0032467655185186585, + 1650: 0.0038666369329971918, + 1700: 0.003080458553658564, + 1750: 0.003054000627430822, + 1800: 0.0037041096718839176, + 1850: 0.003715448783124379, + 1900: 0.003080458553658564, + 1950: 0.004603679163627155, + 2000: 0.005529706581598134, + 2050: 0.007170098007718155, + 2100: 0.010212759523908516, + 2150: 0.013572916154831784, + 2200: 0.013656069637261832, + 2250: 0.016608018263528503, + 2300: 0.015723567586772548, + 2350: 0.013659849341008652, + 2400: 0.015474107139482407, + 2450: 0.013092893778985603, + 2500: 0.01212906932354642, + 2550: 0.010469779378692298, + 2600: 0.009196019216013849, + 2650: 0.0074649148999701405, + 2700: 0.0068526028929852476, + 2750: 0.005034565390764672, + 2800: 0.0038893151554781134, + 2850: 0.003976248341654981, + 2900: 0.003983807749148621, + 2950: 0.00443737219876706, + 3000: 0.0032732234447464007, + 3050: 0.0027932010689002197, + 3100: 0.0014551859425258249, + 3150: 0.0019087503921442637, + 3200: 0.0015647973511836142, + 3250: 0.0010847749753374332, + 3300: 0.001492982979994028, + 3350: 0.0019616662445997484, + 3400: 0.0015685770549304346, + 3450: 0.0016630696486009426, + 3500: 0.0019541068371061077, + 3550: 0.001957886540852928, + 3600: 0.001319116607640293, + 3650: 0.0012964383851593712, + 3700: 0.0006387699332126347, + 3750: 0.0007408219343767835, + 3800: 0.0006841263781744787, + 3850: 0.0006198714144785331, + 3900: 0.000548057043288947, + 3950: 0.0006614481556935567, + 4000: 0.0008731115655154949, + 4050: 0.0010129606041478468, + 4100: 0.0006501090444530958, + 4150: 0.0004989208945802828, + 4200: 0.0005178194133143844, + 4250: 0.0005027005983271032, + 4300: 0.0003552921522011105, + 4350: 0.0002948168922519853, + 4400: 0.00033639363346700887, + 4450: 0.0005140397095675641, + 4500: 0.0003590718559479308, + 4550: 0.00033639363346700887, + 4600: 0.00017764607610055525, + 4650: 0.0002192228173155788, + 4700: 0.00015118814987281296, + 4750: 0.0003250545222265479, + 4800: 0.00022300252106239912, + 4850: 0.0002305619285560398, + 4900: 0.00014362874237917232, + 4950: 0, + }, + 1100: { + 0: 0.0008112202900510194, + 50: 0.012200116911159449, + 100: 0.026265245175426388, + 150: 0.038628401458605896, + 200: 0.047420597837541205, + 250: 0.05283668624464654, + 300: 0.06062678697116589, + 350: 0.06085742803402353, + 400: 0.051564183828880235, + 450: 0.041940884309647555, + 500: 0.03484668334175041, + 550: 0.030015150731887718, + 600: 0.028285342760455398, + 650: 0.02728324710803943, + 700: 0.01966811546368795, + 750: 0.019998170777777335, + 800: 0.01538932609067375, + 850: 0.021095704111375773, + 900: 0.020133374159452506, + 950: 0.014613894931066159, + 1000: 0.014761028022889137, + 1050: 0.013675424399438509, + 1100: 0.012796602418549904, + 1150: 0.010056745654603079, + 1200: 0.010418613529086622, + 1250: 0.008824008939329471, + 1300: 0.008004835509179912, + 1350: 0.007980976088884293, + 1400: 0.006330699518437367, + 1450: 0.0031494434790216045, + 1500: 0.003956687199023355, + 1550: 0.003101724638430368, + 1600: 0.0026682785030599705, + 1650: 0.0022308557976403035, + 1700: 0.002238808937738843, + 1750: 0.002700091063454128, + 1800: 0.0033283891312387414, + 1850: 0.0033005531408938533, + 1900: 0.002918802416163962, + 1950: 0.0033283891312387414, + 2000: 0.004970712561587129, + 2050: 0.007133966668389847, + 2100: 0.011969475848301806, + 2150: 0.013890159182099073, + 2200: 0.01472126232239644, + 2250: 0.015707451694615328, + 2300: 0.01620452295077404, + 2350: 0.01656639082525758, + 2400: 0.015361490100328862, + 2450: 0.012963618360619232, + 2500: 0.011066794447117584, + 2550: 0.01071287971273258, + 2600: 0.009921542272927908, + 2650: 0.007965069808687214, + 2700: 0.006199472706811467, + 2750: 0.006179589856565118, + 2800: 0.005579127779125393, + 2850: 0.004847438890059768, + 2900: 0.005543338648681966, + 2950: 0.0041594922715361094, + 3000: 0.00561889347961809, + 3050: 0.003515287923554417, + 3100: 0.0038294369574467238, + 3150: 0.0025092157010891823, + 3200: 0.0029943572471000865, + 3250: 0.0018133159424669845, + 3300: 0.00174173768158013, + 3350: 0.0011889944447316411, + 3400: 0.0016025577298556903, + 3450: 0.0021036055560636727, + 3500: 0.0017695736719250178, + 3550: 0.002127464976359291, + 3600: 0.0017616205318264785, + 3650: 0.0015946045897571508, + 3700: 0.0009384705316276498, + 3750: 0.0006322746378338828, + 3800: 0.0008470094204944467, + 3850: 0.0004692352658138249, + 3900: 0.0005805792271933766, + 3950: 0.0008271265702480982, + 4000: 0.00042946956532112794, + 4050: 0.0006680637682773101, + 4100: 0.0006282980677846131, + 4150: 0.0006998763286714677, + 4200: 0.0005805792271933766, + 4250: 0.0007396420291641648, + 4300: 0.0007277123190163556, + 4350: 0.001018001932613044, + 4400: 0.0008788219808886043, + 4450: 0.00047718840591236435, + 4500: 0.0005209306764543311, + 4550: 0.0004374227054196673, + 4600: 0.00022666449280837306, + 4650: 0.0004334461353703976, + 4700: 0.0002505239131039913, + 4750: 0.0002902896135966883, + 4800: 0.00032607874404011564, + 4850: 0.0001431565217737093, + 4900: 0.0001431565217737093, + 4950: 0, + }, + 1150: { + 0: 0.0008830459485421126, + 50: 0.009347364430909192, + 100: 0.024561599993107933, + 150: 0.0384103449909757, + 200: 0.043135717700979105, + 250: 0.0462457624563323, + 300: 0.053271362173757594, + 350: 0.0556060495108787, + 400: 0.04817984846070015, + 450: 0.03850511089764851, + 500: 0.032190255480269304, + 550: 0.029196514337650924, + 600: 0.026827366670830622, + 650: 0.02256720841176648, + 700: 0.021279253589258716, + 750: 0.021059568987426287, + 800: 0.017200012061115395, + 850: 0.016407424478033693, + 900: 0.018634423284844777, + 950: 0.011255605188002636, + 1000: 0.011100533704356217, + 1050: 0.01088946418494859, + 1100: 0.01034240645097372, + 1150: 0.04804631468311573, + 1200: 0.010234717920663706, + 1250: 0.010450094981283733, + 1300: 0.010385481863097725, + 1350: 0.006612075761034844, + 1400: 0.004966595017897834, + 1450: 0.004255850717851743, + 1500: 0.0044496900724097675, + 1550: 0.005479192422173499, + 1600: 0.0043463090833121545, + 1650: 0.0038466343026736906, + 1700: 0.005414579303987491, + 1750: 0.004062011363293718, + 1800: 0.0034848008408320448, + 1850: 0.0033598821456724288, + 1900: 0.0038509418438860913, + 1950: 0.00564287898824472, + 2000: 0.006357930829503211, + 2050: 0.007813879759294597, + 2100: 0.013219843980857286, + 2150: 0.01596374773315644, + 2200: 0.014542259133064256, + 2250: 0.017217242225964997, + 2300: 0.0180399825975335, + 2350: 0.012720169200218822, + 2400: 0.013986586316664584, + 2450: 0.013176768568733281, + 2500: 0.013465373829964117, + 2550: 0.012517714763235998, + 2600: 0.009816886423060852, + 2650: 0.008205866009623046, + 2700: 0.007068675129549302, + 2750: 0.005677339317943925, + 2800: 0.006151168851307985, + 2850: 0.004841676322738218, + 2900: 0.004871829111225022, + 2950: 0.0048287536991010165, + 3000: 0.00462199172090579, + 3050: 0.003454648052345241, + 3100: 0.002851592282609164, + 3150: 0.0020331594522530593, + 3200: 0.0018996256746686424, + 3250: 0.001787629603146228, + 3300: 0.001473179094640988, + 3350: 0.0014516413885789852, + 3400: 0.0020546971583150623, + 3450: 0.0019340860043678468, + 3500: 0.002097772570439068, + 3550: 0.002071927323164664, + 3600: 0.0011070380915869412, + 3650: 0.001214726621896955, + 3700: 0.0012793397400829632, + 3750: 0.001348260399481372, + 3800: 0.0008916610309669138, + 3850: 0.0005987482285236764, + 3900: 0.000564287898824472, + 3950: 0.000611670852160878, + 4000: 0.0005815180636740742, + 4050: 0.0003015278848680385, + 4100: 0.0003359882145672429, + 4150: 0.0003962937915408506, + 4200: 0.0005556728163996709, + 4250: 0.000611670852160878, + 4300: 0.000611670852160878, + 4350: 0.0007538197121700962, + 4400: 0.0006159783933732786, + 4450: 0.0006676688879220852, + 4500: 0.0007193593824708918, + 4550: 0.0004738295333640605, + 4600: 0.0004006013327532511, + 4650: 0.0002067619781952264, + 4700: 0.00014214886000921815, + 4750: 0.0002455298491068313, + 4800: 0.0002842977200184363, + 4850: 0.00017660918970842254, + 4900: 0.0001033809890976132, + 4950: 0, + }, + 1200: { + 0: 0.00048316229723540576, + 50: 0.013593972550341988, + 100: 0.032356775092983577, + 150: 0.04326819030554983, + 200: 0.04877926025839117, + 250: 0.04939831195172403, + 300: 0.05397325495367178, + 350: 0.04925235667443417, + 400: 0.04191936222576765, + 450: 0.03572381235184281, + 500: 0.03421393017298217, + 550: 0.03154143871639883, + 600: 0.029447735428378738, + 650: 0.024324201901444957, + 700: 0.019004383691259293, + 750: 0.017182459195434117, + 800: 0.015068624145029217, + 850: 0.015576951145245632, + 900: 0.013780191352401468, + 950: 0.0112737869354928, + 1000: 0.009965222380480244, + 1050: 0.010176605885520733, + 1100: 0.009225380112838528, + 1150: 0.008631493122486676, + 1200: 0.01099194226210548, + 1250: 0.010705064648121957, + 1300: 0.007307829745685512, + 1350: 0.005692255814304624, + 1400: 0.0037797383877478095, + 1450: 0.004303164209752832, + 1500: 0.005737552279670443, + 1550: 0.004524613595985726, + 1600: 0.004006220714576906, + 1650: 0.004967512368451515, + 1700: 0.004363559496907258, + 1750: 0.0037495407441705967, + 1800: 0.005022874715009739, + 1850: 0.0033469054964744252, + 1900: 0.0036992113382085753, + 1950: 0.004303164209752832, + 2000: 0.006567987478043796, + 2050: 0.010790624638257395, + 2100: 0.014962932392508971, + 2150: 0.016055080501884835, + 2200: 0.023921566653748786, + 2250: 0.02144032693982113, + 2300: 0.018938955463508666, + 2350: 0.016689231017006305, + 2400: 0.01627149694752153, + 2450: 0.014691153600314056, + 2500: 0.013865751342536904, + 2550: 0.011303984579070014, + 2600: 0.010136342360751116, + 2650: 0.007413521498205756, + 2700: 0.0079872767261728, + 2750: 0.007071281537664011, + 2800: 0.005953968725307135, + 2850: 0.005148698229914792, + 2900: 0.0048668535565274725, + 2950: 0.005667091111323613, + 3000: 0.006155286349155221, + 3050: 0.004232703041406002, + 3100: 0.0031506208132225416, + 3150: 0.0025969973476403056, + 3200: 0.002144032693982113, + 3250: 0.0026120961694289123, + 3300: 0.0017715950898631544, + 3350: 0.0013991574857441958, + 3400: 0.00126830103024294, + 3450: 0.00253660206048588, + 3500: 0.002843611436854211, + 3550: 0.002138999753385911, + 3600: 0.0016961009809201221, + 3650: 0.0011072469311644714, + 3700: 0.0011525433965302908, + 3750: 0.0011424775153378865, + 3800: 0.00091599518850879, + 3850: 0.0007046116834683, + 3900: 0.0008052704953923429, + 3950: 0.0010619504657986521, + 4000: 0.0010820822281834607, + 4050: 0.0009612916538746093, + 4100: 0.0013890916045517915, + 4150: 0.0009210281291049922, + 4200: 0.001303531614416355, + 4250: 0.0011726751589150994, + 4300: 0.0012179716242809186, + 4350: 0.0008958634261239815, + 4400: 0.0006291175745252679, + 4450: 0.0008656657825467687, + 4500: 0.0005586564061784379, + 4550: 0.0005133599408126186, + 4600: 0.0003774705447151607, + 4650: 0.0005032940596202143, + 4700: 0.00032210819815693713, + 4750: 0.0004529646536581929, + 4800: 0.0004730964160430014, + 4850: 0.00020635056444428786, + 4900: 0.00031204231696453286, + 4950: 0, + }, + 1250: { + 0: 0.0011940659872779697, + 50: 0.012254308542249025, + 100: 0.023584178900798978, + 150: 0.03773688728457289, + 200: 0.044262980652829444, + 250: 0.04084586093808465, + 300: 0.04465366583760703, + 350: 0.04683269869918341, + 400: 0.043811766777452514, + 450: 0.031199788699843727, + 500: 0.029521493187771003, + 550: 0.028178856778112826, + 600: 0.02410692668324786, + 650: 0.0216912816675104, + 700: 0.02229656857350384, + 750: 0.017822948077388684, + 800: 0.015440318711069047, + 850: 0.01489556049567495, + 900: 0.013305306715383092, + 950: 0.01327779367420157, + 1000: 0.01247991547993749, + 1050: 0.010531992164285872, + 1100: 0.009255387053463342, + 1150: 0.01044945304074131, + 1200: 0.023864811920850482, + 1250: 0.04141813219466027, + 1300: 0.02185635991459952, + 1350: 0.00940395747584355, + 1400: 0.0052439856491977195, + 1450: 0.0036317214359606453, + 1500: 0.003521669271234565, + 1550: 0.004721237866748839, + 1600: 0.005177954350362071, + 1650: 0.004633196134967975, + 1700: 0.003961877930138886, + 1750: 0.0036097110030154293, + 1800: 0.003395109281799573, + 1850: 0.0035932031783065172, + 1900: 0.00393986749719367, + 1950: 0.004721237866748839, + 2000: 0.005981335152862457, + 2050: 0.007329474170756939, + 2100: 0.013932604054321748, + 2150: 0.01944071489886206, + 2200: 0.016915017718398522, + 2250: 0.01827416195276561, + 2300: 0.01595206127704532, + 2350: 0.015858516937028153, + 2400: 0.013706997116633285, + 2450: 0.011825105099817313, + 2500: 0.012391873748156626, + 2550: 0.012298329408139458, + 2600: 0.010493473906631743, + 2650: 0.007665133273171483, + 2700: 0.009062795765192701, + 2750: 0.009497501815860718, + 2800: 0.006691171615345674, + 2850: 0.005618163009266392, + 2900: 0.005431074329232056, + 2950: 0.005656681266920521, + 3000: 0.005018378711509256, + 3050: 0.004115950960755398, + 3100: 0.005920806462263113, + 3150: 0.002817335416987652, + 3200: 0.0021845354698126914, + 3250: 0.0030594501793850285, + 3300: 0.0022395615521757315, + 3350: 0.002096493738031827, + 3400: 0.0016727929038364185, + 3450: 0.0022670745933572514, + 3500: 0.0015957563885281624, + 3550: 0.0023991371910285476, + 3600: 0.0017553320273809786, + 3650: 0.0018048555015077147, + 3700: 0.0009189355754627694, + 3750: 0.0012600972861136178, + 3800: 0.0008033808025003852, + 3850: 0.0008033808025003852, + 3900: 0.0007813703695551691, + 3950: 0.0009904694825347215, + 4000: 0.0009464486166442894, + 4050: 0.001254594677877314, + 4100: 0.0007648625448462571, + 4150: 0.0010179825237162416, + 4200: 0.0010620033896066735, + 4250: 0.0009299407919353774, + 4300: 0.0008088834107366892, + 4350: 0.0008584068848634253, + 4400: 0.0009629564413532014, + 4450: 0.0006162921224660489, + 4500: 0.0009574538331168974, + 4550: 0.0008584068848634253, + 4600: 0.0009464486166442894, + 4650: 0.0008253912354456012, + 4700: 0.0005942816895208329, + 4750: 0.00038518257654128056, + 4800: 0.00038518257654128056, + 4850: 0.0005997842977571369, + 4900: 0.00037417736006867253, + 4950: 0, + }, + 1300: { + 0: 0.00023141303369630896, + 50: 0.00922438064872787, + 100: 0.014077626216525462, + 150: 0.028618078500443542, + 200: 0.03892881477957909, + 250: 0.04664901070928095, + 300: 0.04733039353072008, + 350: 0.04253500122134657, + 400: 0.03872311430518237, + 450: 0.0355926102104573, + 500: 0.034917655528843065, + 550: 0.02645822351927799, + 600: 0.023385572682977, + 650: 0.02028720928737642, + 700: 0.020351490685625393, + 750: 0.01785094429374028, + 800: 0.013781931784580178, + 850: 0.015247547664656802, + 900: 0.012399881722227222, + 950: 0.011847061697286039, + 1000: 0.007874471285499403, + 1050: 0.008877261098183408, + 1100: 0.009063677153105434, + 1150: 0.007000244269313346, + 1200: 0.020904310710566577, + 1250: 0.04504197575305658, + 1300: 0.039346643868197424, + 1350: 0.027236028438090587, + 1400: 0.00981576951261844, + 1450: 0.005052517902369412, + 1500: 0.003181929213324248, + 1550: 0.002989085018577324, + 1600: 0.003644755280716866, + 1650: 0.004197575305658049, + 1700: 0.0033104920098221977, + 1750: 0.006646696578943985, + 1800: 0.004737539050949436, + 1850: 0.0034840517850944293, + 1900: 0.00505894604219431, + 1950: 0.0066081277399946, + 2000: 0.006942391010889269, + 2050: 0.009070105292930331, + 2100: 0.009577928339097232, + 2150: 0.009442937402774385, + 2200: 0.012599154056799044, + 2250: 0.015009706491135595, + 2300: 0.017349549387398275, + 2350: 0.015504673257652701, + 2400: 0.01395549155985241, + 2450: 0.0152539758044817, + 2500: 0.013351246416312048, + 2550: 0.013068408264016559, + 2600: 0.01105640049882365, + 2650: 0.010297879999485749, + 2700: 0.009410796703649898, + 2750: 0.010664283969504905, + 2800: 0.0059717418973297505, + 2850: 0.00505894604219431, + 2900: 0.004782536029723719, + 2950: 0.004666829512875564, + 3000: 0.00599745445662934, + 3050: 0.0038375994754637904, + 3100: 0.0038954527338878673, + 3150: 0.003413342247020557, + 3200: 0.003207641772623838, + 3250: 0.002963372459277734, + 3300: 0.0022434207988892172, + 3350: 0.0022112800997647303, + 3400: 0.002757671984881015, + 3450: 0.0022369926590643198, + 3500: 0.0031883573531491455, + 3550: 0.003001941298227119, + 3600: 0.001883444968694959, + 3650: 0.0016456037951737526, + 3700: 0.0016327475155239577, + 3750: 0.0009642209737346207, + 3800: 0.000887083295835851, + 3850: 0.000449969787742823, + 3900: 0.000790661198462389, + 3950: 0.0007585204993379016, + 4000: 0.0012149184269056221, + 4050: 0.0011827777277811347, + 4100: 0.0010413586516333903, + 4150: 0.0010220742321586979, + 4200: 0.0007456642196881066, + 4250: 0.0011442088888317498, + 4300: 0.0011570651684815448, + 4350: 0.0008356581772366713, + 4400: 0.0010863556304076727, + 4450: 0.0009063677153105435, + 4500: 0.0010542149312831853, + 4550: 0.0007263798002134143, + 4600: 0.0010285023719835953, + 4650: 0.0007713767789876966, + 4700: 0.0007199516603885168, + 4750: 0.0004885386266922078, + 4800: 0.0003792602496689508, + 4850: 0.0004692542072175154, + 4900: 0.0005142511859917977, + 4950: 0, + }, + 1350: { + 0: 0.002026928142836236, + 50: 0.00917605736865213, + 100: 0.020664422654763648, + 150: 0.031794233865066586, + 200: 0.043531391775208546, + 250: 0.045558319918044786, + 300: 0.04901946436411532, + 350: 0.04662666471535197, + 400: 0.03712132299136543, + 450: 0.032525976876920826, + 500: 0.028055027074491437, + 550: 0.024469486316405678, + 600: 0.024469486316405678, + 650: 0.02052539148251134, + 700: 0.01873262110346846, + 750: 0.017525245133908973, + 800: 0.013273818235035855, + 850: 0.012666471535196839, + 900: 0.013917752085467585, + 950: 0.011385921264451924, + 1000: 0.009066295916873994, + 1050: 0.009988292111810333, + 1100: 0.009337040831260062, + 1150: 0.007902824528025758, + 1200: 0.010581003951412263, + 1250: 0.02004975852480609, + 1300: 0.025252451339089713, + 1350: 0.016661788379920973, + 1400: 0.01137128640421484, + 1450: 0.008085760280989316, + 1500: 0.006271037611590809, + 1550: 0.007207668666764233, + 1600: 0.004346553490414166, + 1650: 0.0036074930484413874, + 1700: 0.003358700424410947, + 1750: 0.0026489097029123373, + 1800: 0.0034245572954778284, + 1850: 0.00398799941460559, + 1900: 0.0037684765110493194, + 1950: 0.004836821308356505, + 2000: 0.006322259622420606, + 2050: 0.00905166105663691, + 2100: 0.01211766427630616, + 2150: 0.01291526415922728, + 2200: 0.01686667642324016, + 2250: 0.018183813844577783, + 2300: 0.022786477389140934, + 2350: 0.020225376847651105, + 2400: 0.020005853944094834, + 2450: 0.015337333528464803, + 2500: 0.015966632518659447, + 2550: 0.014649495097321821, + 2600: 0.01152495243670423, + 2650: 0.008861407873554808, + 2700: 0.009534611444460706, + 2750: 0.008510171227864774, + 2800: 0.008239426313478706, + 2850: 0.008232108883360165, + 2900: 0.007639397043758232, + 2950: 0.007836967656958876, + 3000: 0.004514854383140641, + 3050: 0.005619786331040539, + 3100: 0.003278208693106981, + 3150: 0.004441680081955218, + 3200: 0.003519683887018879, + 3250: 0.0031684472413288454, + 3300: 0.0031099078003805065, + 3350: 0.003278208693106981, + 3400: 0.003285526123225523, + 3450: 0.0020561978633104054, + 3500: 0.0037538416508122348, + 3550: 0.002685496853505049, + 3600: 0.0020561978633104054, + 3650: 0.0016464217766720328, + 3700: 0.0013171374213376262, + 3750: 0.0008561393238694571, + 3800: 0.0009366310551734231, + 3850: 0.0006292989901946437, + 3900: 0.0006146641299575589, + 3950: 0.0007610127323284063, + 4000: 0.0005927118396019318, + 4050: 0.0013244548514561687, + 4100: 0.0011854236792038636, + 4150: 0.0013683594321674227, + 4200: 0.0015659300453680668, + 4250: 0.0015732474754866091, + 4300: 0.0016025171959607786, + 4350: 0.0011707888189667788, + 4400: 0.0012659154105078296, + 4450: 0.0013098199912190839, + 4500: 0.0012659154105078296, + 4550: 0.0010463925069515586, + 4600: 0.0006732035709058979, + 4650: 0.0007683301624469486, + 4700: 0.00055612468900922, + 4750: 0.0004902678179423386, + 4800: 0.0004097760866383726, + 4850: 0.00039514122640128786, + 4900: 0.00027806234450461, + 4950: 0, + }, + 1400: { + 0: 0.0004696073423519913, + 50: 0.008469409612944685, + 100: 0.01856184811086029, + 150: 0.03578902272240439, + 200: 0.04164675641384765, + 250: 0.038104104532946666, + 300: 0.03905979666825949, + 350: 0.038293595214948344, + 400: 0.037832226597900774, + 450: 0.03316086935029412, + 500: 0.031669660070193936, + 550: 0.028135246914597373, + 600: 0.023851109756298505, + 650: 0.01928685593764933, + 700: 0.018347641252945343, + 750: 0.02287070144507242, + 800: 0.022516436256982318, + 850: 0.018899635848341544, + 900: 0.01804280841668177, + 950: 0.012465191385588822, + 1000: 0.009820560562869713, + 1050: 0.009013165483036465, + 1100: 0.008090428248941324, + 1150: 0.007736163060851225, + 1200: 0.008724810097381732, + 1250: 0.007258316993194813, + 1300: 0.012333371780718087, + 1350: 0.011130517886272636, + 1400: 0.009252088516864671, + 1450: 0.013008947255680602, + 1500: 0.008172815501985533, + 1550: 0.005643526833528316, + 1600: 0.005165680765871905, + 1650: 0.006731038573711876, + 1700: 0.007250078267890392, + 1750: 0.007406614048674389, + 1800: 0.0066156964194499825, + 1850: 0.004531298917431495, + 1900: 0.005289261645438218, + 1950: 0.005552900855179687, + 2000: 0.005791823889007893, + 2050: 0.008098666974245744, + 2100: 0.010290167905221704, + 2150: 0.013536225675163539, + 2200: 0.019410436817215642, + 2250: 0.02188205440854191, + 2300: 0.021363014714363394, + 2350: 0.02169256372654023, + 2400: 0.017968659888941984, + 2450: 0.018009853515464087, + 2500: 0.01436833693091005, + 2550: 0.012423997759066717, + 2600: 0.013083095783420389, + 2650: 0.010636194368007381, + 2700: 0.010183064476264233, + 2750: 0.008807197350425943, + 2800: 0.008494125788857948, + 2850: 0.007480762576414177, + 2900: 0.0059071660432697855, + 2950: 0.005503468503353161, + 3000: 0.004350046960734235, + 3050: 0.004061691575079504, + 3100: 0.003633277859249617, + 3150: 0.0035920842327275123, + 3200: 0.0037403812882070885, + 3250: 0.003328445022986044, + 3300: 0.0029329862083738406, + 3350: 0.003962826871426453, + 3400: 0.004045214124470662, + 3450: 0.0038310072665557185, + 3500: 0.003641516584554038, + 3550: 0.003979304322035295, + 3600: 0.0023645141623687984, + 3650: 0.0024304239648041655, + 3700: 0.0018372357428858607, + 3750: 0.0015983127090576546, + 3800: 0.0014335382029692365, + 3850: 0.0016147901596664964, + 3900: 0.0012440475209675558, + 3950: 0.0010875117401835587, + 4000: 0.0012275700703587142, + 4050: 0.001400583301751553, + 4100: 0.0011039891907924006, + 4150: 0.0011698989932277678, + 4200: 0.0010216019377481916, + 4250: 0.0010627955642702961, + 4300: 0.0012852411474896604, + 4350: 0.001664222511493022, + 4400: 0.0010216019377481916, + 4450: 0.0011698989932277678, + 4500: 0.0014500156535780784, + 4550: 0.00173837103923281, + 4600: 0.0016889386874062845, + 4650: 0.001071034289574717, + 4700: 0.0004613686170475704, + 4750: 0.0004613686170475704, + 4800: 0.0004778460676564122, + 4850: 0.0003707426386989405, + 4900: 0.0003130715615679942, + 4950: 0, + }, + 1450: { + 0: 0.00008106683960925784, + 50: 0.004083742045316363, + 100: 0.014531230999959467, + 150: 0.03451420696364152, + 200: 0.02877872806128653, + 250: 0.035821409752340806, + 300: 0.03835474849013011, + 350: 0.03917555024117385, + 400: 0.03604434356126626, + 450: 0.03586194317214544, + 500: 0.023742450650561388, + 550: 0.022860848769810708, + 600: 0.022739248510396822, + 650: 0.02471525272587248, + 700: 0.02178671314498804, + 750: 0.019982975963682054, + 800: 0.018473106075959627, + 850: 0.012889627497871996, + 900: 0.010771756313080135, + 950: 0.013690162539013416, + 1000: 0.005137610960236716, + 1050: 0.006586680718252199, + 1100: 0.004215475659681407, + 1150: 0.0053909448340156456, + 1200: 0.005451744963722589, + 1250: 0.009120019456041507, + 1300: 0.00965708726845284, + 1350: 0.007184548660370475, + 1400: 0.008968019131774148, + 1450: 0.093064731871428, + 1500: 0.00559361193303879, + 1550: 0.004833610311701998, + 1600: 0.0035061408131004013, + 1650: 0.0033642738437842, + 1700: 0.004478942888411495, + 1750: 0.007083215110858903, + 1800: 0.0049754772810182, + 1850: 0.007346682339588991, + 1900: 0.008603218353532487, + 1950: 0.007468282599002878, + 2000: 0.008005350411414211, + 2050: 0.010619755988812776, + 2100: 0.013416561955332171, + 2150: 0.011207490575979896, + 2200: 0.01368002918406226, + 2250: 0.016253901341656194, + 2300: 0.020134976287949413, + 2350: 0.020834177779579265, + 2400: 0.019516841635928824, + 2450: 0.019587775120586924, + 2500: 0.015676300109440232, + 2550: 0.015595233269830975, + 2600: 0.010295488630375745, + 2650: 0.00793441692675611, + 2700: 0.010376555469985003, + 2750: 0.009829354302622512, + 2800: 0.011146690446272952, + 2850: 0.009444286814478538, + 2900: 0.008968019131774148, + 2950: 0.007964816991609582, + 3000: 0.005836812451866564, + 3050: 0.003800008106683961, + 3100: 0.004073608690365206, + 3150: 0.003303473714077257, + 3200: 0.003222406874467999, + 3250: 0.0035669409428073446, + 3300: 0.0030805399051517975, + 3350: 0.0030805399051517975, + 3400: 0.0028576060962263385, + 3450: 0.0032122735195168417, + 3500: 0.0030602731952494833, + 3550: 0.0016821369218921, + 3600: 0.0011146690446272951, + 3650: 0.0012160025941388675, + 3700: 0.0010336022050180373, + 3750: 0.0009018685906529934, + 3800: 0.0007904016861902638, + 3850: 0.0008613351708483645, + 3900: 0.0010842689797738235, + 3950: 0.0012768027238458108, + 4000: 0.0010538689149203518, + 4050: 0.0016010700822828422, + 4100: 0.0014389364030643265, + 4150: 0.001185602529285396, + 4200: 0.0012464026589923392, + 4250: 0.0013882696283085403, + 4300: 0.001945604150622188, + 4350: 0.0010842689797738235, + 4400: 0.0011248023995784524, + 4450: 0.001195735884236553, + 4500: 0.0012768027238458108, + 4550: 0.000972802075311094, + 4600: 0.000577601232215962, + 4650: 0.0006282680069717482, + 4700: 0.00043573426289976084, + 4750: 0.0010336022050180373, + 4800: 0.000618134652020591, + 4850: 0.00032426735843703135, + 4900: 0.0003952008430951319, + 4950: 0, + }, + 1500: { + 0: 0.00019341259457307015, + 50: 0.003959269583025201, + 100: 0.01467660276466238, + 150: 0.030832243017236475, + 200: 0.03195858695033847, + 250: 0.034859775868934524, + 300: 0.04033221457420786, + 350: 0.03988850332783435, + 400: 0.040047784288070994, + 450: 0.04146993571875533, + 500: 0.035314864326753515, + 550: 0.03217475396780249, + 600: 0.028545423516696058, + 650: 0.031537630126855905, + 700: 0.02350531884635076, + 750: 0.018795153307924226, + 800: 0.01571192900620058, + 850: 0.019079583594061096, + 900: 0.016610728710393083, + 950: 0.012423914898458387, + 1000: 0.00794129358894135, + 1050: 0.00639399283235679, + 1100: 0.006826326867284829, + 1150: 0.0049490869787815, + 1200: 0.00477842880709938, + 1250: 0.006632914272711759, + 1300: 0.003617953239660959, + 1350: 0.00516525399624552, + 1400: 0.005597588031173559, + 1450: 0.004812560441435804, + 1500: 0.0053814210137095395, + 1550: 0.002753285169804881, + 1600: 0.003504181125206212, + 1650: 0.004880823710108653, + 1700: 0.004084418908925422, + 1750: 0.0041185505432618464, + 1800: 0.005301780533591217, + 1850: 0.0044029808293987146, + 1900: 0.0030832243017236477, + 1950: 0.005506570339609762, + 2000: 0.005859263894419478, + 2050: 0.008077820126287046, + 2100: 0.014107742192388646, + 2150: 0.014449058535752887, + 2200: 0.016258035155583366, + 2250: 0.023766994709596676, + 2300: 0.02085442857955515, + 2350: 0.017634677740485806, + 2400: 0.024404118550543263, + 2450: 0.022333466067466865, + 2500: 0.020569998293418282, + 2550: 0.016906536207975425, + 2600: 0.014733488821889755, + 2650: 0.01409636498094317, + 2700: 0.013720917003242506, + 2750: 0.011434097502702087, + 2800: 0.010774219238864555, + 2850: 0.009590989248535183, + 2900: 0.008874224927470278, + 2950: 0.006314352352238466, + 3000: 0.006610159849820809, + 3050: 0.005438307070936913, + 3100: 0.003617953239660959, + 3150: 0.004323340349280391, + 3200: 0.003652084873997383, + 3250: 0.00456226178963536, + 3300: 0.0034928039137607373, + 3350: 0.0030832243017236477, + 3400: 0.003344900164969566, + 3450: 0.0028556800728141533, + 3500: 0.004061664486034473, + 3550: 0.0037317253541157063, + 3600: 0.003629330451106434, + 3650: 0.0021275385403037713, + 3700: 0.002070652483076398, + 3750: 0.0020478980601854485, + 3800: 0.0012401160475567438, + 3850: 0.0010922122987655726, + 3900: 0.001194607201774845, + 3950: 0.001160475567438421, + 4000: 0.0012514932590022186, + 4050: 0.0014107742192388645, + 4100: 0.0016610728710393084, + 4150: 0.002434723249331589, + 4200: 0.001945503157176176, + 4250: 0.0029694521872689005, + 4300: 0.002878434495705103, + 4350: 0.001626941236702884, + 4400: 0.0012059844132203197, + 4450: 0.0022754422890949428, + 4500: 0.00219580180897662, + 4550: 0.0015814323909209853, + 4600: 0.002070652483076398, + 4650: 0.0012628704704476933, + 4700: 0.000477842880709938, + 4750: 0.001035326241538199, + 4800: 0.0008874224927470277, + 4850: 0.0006029922066101599, + 4900: 0.000477842880709938, + 4950: 0, + }, + 1550: { + 0: 0.00034469881940654354, + 50: 0.0035906127021514953, + 100: 0.01964783270617298, + 150: 0.029500473960876683, + 200: 0.03869244247838451, + 250: 0.040631373337546316, + 300: 0.03656679975871083, + 350: 0.03933875276477178, + 400: 0.03694022347973458, + 450: 0.03090799414012007, + 500: 0.029198862493895958, + 550: 0.022735759630023267, + 600: 0.023755493637434292, + 650: 0.022807571884066298, + 700: 0.017450377732456265, + 750: 0.019058972223020137, + 800: 0.01640191882342803, + 850: 0.014448625513457616, + 900: 0.01661735558555712, + 950: 0.018096688018843534, + 1000: 0.016272656766150577, + 1050: 0.010872375262114728, + 1100: 0.010211702524918853, + 1150: 0.0065780024703415395, + 1200: 0.004911958176543245, + 1250: 0.004710883865222761, + 1300: 0.0036337000545773133, + 1350: 0.004165110734495735, + 1400: 0.005429006405653061, + 1450: 0.00593169218395427, + 1500: 0.007928072846350501, + 1550: 0.006750351880044811, + 1600: 0.006678539626001781, + 1650: 0.006793439232470629, + 1700: 0.005357194151610031, + 1750: 0.005429006405653061, + 1800: 0.0068652514865136585, + 1850: 0.004481084652285066, + 1900: 0.004308735242581794, + 1950: 0.007281762559963232, + 2000: 0.009838278803895097, + 2050: 0.01258150690833884, + 2100: 0.011274523884755694, + 2150: 0.01347197885847241, + 2200: 0.015927957946744033, + 2250: 0.015310372561973975, + 2300: 0.014549162669117858, + 2350: 0.01775198919943699, + 2400: 0.020351592795794675, + 2450: 0.016315744118576395, + 2500: 0.021471863958865942, + 2550: 0.01961910780455577, + 2600: 0.01114526182747824, + 2650: 0.014606612472352282, + 2700: 0.010570763795134002, + 2750: 0.011245798983138483, + 2800: 0.01047022663947376, + 2850: 0.011691034958205268, + 2900: 0.008761094993249648, + 2950: 0.008258409214948439, + 3000: 0.00975210409904346, + 3050: 0.006893976388130871, + 3100: 0.0064774653146812975, + 3150: 0.00710941315025996, + 3200: 0.008129147157670985, + 3250: 0.004897595725734639, + 3300: 0.004897595725734639, + 3350: 0.004222560537730158, + 3400: 0.004021486226409674, + 3450: 0.003762962111854767, + 3500: 0.003877861718323615, + 3550: 0.0018383937035015656, + 3600: 0.0012926205727745383, + 3650: 0.002154367621290897, + 3700: 0.0016804067446068998, + 3750: 0.0025277913423146525, + 3800: 0.001508057334903628, + 3850: 0.0016947691954155057, + 3900: 0.0013787952776261742, + 3950: 0.0020825553672478674, + 4000: 0.0016947691954155057, + 4050: 0.0025708786947404704, + 4100: 0.002872490161721196, + 4150: 0.0032171889811277395, + 4200: 0.002140005170482291, + 4250: 0.001551144687329446, + 4300: 0.0021256427196736853, + 4350: 0.0029012150633384083, + 4400: 0.0014506075316692041, + 4450: 0.0018240312526929595, + 4500: 0.0014506075316692041, + 4550: 0.0020681929164392612, + 4600: 0.0025421537931232586, + 4650: 0.0013213454743917503, + 4700: 0.000789934794473329, + 4750: 0.0011059087122626606, + 4800: 0.000775572343664723, + 4850: 0.0002728865653635136, + 4900: 0.0005888604831528452, + 4950: 0, + }, + 1600: { + 0: 0, + 50: 0.007296030182816878, + 100: 0.014508835686742308, + 150: 0.029087025272560824, + 200: 0.030113462978888672, + 250: 0.03523178073071268, + 300: 0.039989458207340414, + 350: 0.0355091963270175, + 400: 0.03435792160235249, + 450: 0.028324132382722557, + 500: 0.028268649263461593, + 550: 0.020847782062307543, + 600: 0.01692235137459428, + 650: 0.01785169362221544, + 700: 0.015909784448081672, + 750: 0.015146891558243404, + 800: 0.019391350181707217, + 850: 0.021680028851222017, + 900: 0.015909784448081672, + 950: 0.01417593697117652, + 1000: 0.009029877659722029, + 1050: 0.01133242710905207, + 1100: 0.011304685549421588, + 1150: 0.00869697894415624, + 1200: 0.008280855549699003, + 1250: 0.01041695564124615, + 1300: 0.006685715870946265, + 1350: 0.007198934724110189, + 1400: 0.005770244403140345, + 1450: 0.004840902155519184, + 1500: 0.004480261880322912, + 1550: 0.006893777568174882, + 1600: 0.006560878852609094, + 1650: 0.006588620412239576, + 1700: 0.008419563347851416, + 1750: 0.007670541237828391, + 1800: 0.007046356146142536, + 1850: 0.007601187338752185, + 1900: 0.0051876716509002135, + 1950: 0.010014703026604156, + 2000: 0.009016006879906788, + 2050: 0.011138236191638694, + 2100: 0.011360168668682554, + 2150: 0.012774988209837157, + 2200: 0.013981746053763143, + 2250: 0.019058451466141428, + 2300: 0.018364912475379365, + 2350: 0.018101367658889783, + 2400: 0.022831303575887037, + 2450: 0.01946070408078342, + 2500: 0.016825255915887592, + 2550: 0.014564318806003274, + 2600: 0.013981746053763143, + 2650: 0.013773684356534524, + 2700: 0.012053707659444614, + 2750: 0.012899825228174329, + 2800: 0.013413044081338253, + 2850: 0.012053707659444614, + 2900: 0.009806641329375537, + 2950: 0.013080145365772464, + 3000: 0.010430826421061391, + 3050: 0.007767636696535079, + 3100: 0.006921519127805365, + 3150: 0.006006047659999445, + 3200: 0.003939301467528505, + 3250: 0.004133492384941881, + 3300: 0.004965739173856354, + 3350: 0.0036341443115931976, + 3400: 0.003980913806974228, + 3450: 0.002205453990623353, + 3500: 0.004050267706050434, + 3550: 0.003578661192332233, + 3600: 0.003190279357505479, + 3650: 0.003218020917135961, + 3700: 0.0019280383943185285, + 3750: 0.0022886786695148, + 3800: 0.0017061059172746693, + 3850: 0.0034815657336255443, + 3900: 0.0028851222015701724, + 3950: 0.0028157683024939663, + 4000: 0.002649318944711072, + 4050: 0.002191583210808112, + 4100: 0.0023164202291452826, + 4150: 0.0014564318806003273, + 4200: 0.0019835215135794934, + 4250: 0.0019280383943185285, + 4300: 0.0022470663300690765, + 4350: 0.0025244819263739006, + 4400: 0.0018170721557965988, + 4450: 0.0016783643576441867, + 4500: 0.0020667461924709406, + 4550: 0.0017893305961661165, + 4600: 0.0021638416511776293, + 4650: 0.001692235137459428, + 4700: 0.0017893305961661165, + 4750: 0.001428690320969845, + 4800: 0.0008322467889144727, + 4850: 0.0006657974311315782, + 4900: 0.0005687019724248898, + 4950: 0, + }, + 1650: { + 0: 0.00043377047758129584, + 50: 0.009311606252078483, + 100: 0.01311432743887451, + 150: 0.01606396668642732, + 200: 0.025925015543442113, + 250: 0.02977111377799627, + 300: 0.04119373635430373, + 350: 0.03410881855380923, + 400: 0.03776694958141149, + 450: 0.029380720348173104, + 500: 0.027501048278654155, + 550: 0.02355373693266436, + 600: 0.01816052399473692, + 650: 0.01544222900189413, + 700: 0.0160784257023467, + 750: 0.02047396654183716, + 800: 0.0255635401454577, + 850: 0.024218851664955684, + 900: 0.024088720521681293, + 950: 0.01444455690345715, + 1000: 0.01078642587585489, + 1050: 0.013736065123407701, + 1100: 0.010988852098726161, + 1150: 0.006463180115961308, + 1200: 0.006347507988606295, + 1250: 0.006882491577623227, + 1300: 0.006477639131880684, + 1350: 0.008935671838174694, + 1400: 0.006087245702057518, + 1450: 0.006969245673139486, + 1500: 0.004944983444426772, + 1550: 0.0034701638206503667, + 1600: 0.004265409696216076, + 1650: 0.00241465565853588, + 1700: 0.0034123277569728604, + 1750: 0.006159540781654401, + 1800: 0.005942655542863753, + 1850: 0.003759344139037897, + 1900: 0.00516186868321742, + 1950: 0.006101704717976894, + 2000: 0.006376426020445049, + 2050: 0.011914229117566259, + 2100: 0.014227671664666503, + 2150: 0.01610734373418545, + 2200: 0.020719769812466565, + 2250: 0.022324720579517357, + 2300: 0.018912392822544498, + 2350: 0.019765474761787714, + 2400: 0.01824727809025318, + 2450: 0.0163242289729761, + 2500: 0.017177310912219315, + 2550: 0.015500065065571637, + 2600: 0.011552753719581844, + 2650: 0.01315770448663264, + 2700: 0.01552898309741039, + 2750: 0.014646983126328422, + 2800: 0.013013114327438874, + 2850: 0.011625048799178727, + 2900: 0.011943147149405012, + 2950: 0.010598458668902994, + 3000: 0.008415147265077139, + 3050: 0.008342852185480256, + 3100: 0.006361967004525672, + 3150: 0.006361967004525672, + 3200: 0.008082589898931479, + 3250: 0.005798065383669987, + 3300: 0.005624557192637469, + 3350: 0.004279868712135452, + 3400: 0.003267737597779095, + 3450: 0.003759344139037897, + 3500: 0.0030074753112303175, + 3550: 0.003426786772892237, + 3600: 0.002877344167955929, + 3650: 0.002718294992842787, + 3700: 0.0032821966136984716, + 3750: 0.002718294992842787, + 3800: 0.002226688451583985, + 3850: 0.0024869507381327627, + 3900: 0.0011856393053888753, + 3950: 0.0014314425760182763, + 4000: 0.0025303277858908925, + 4050: 0.0017929179740026895, + 4100: 0.002385737626697127, + 4150: 0.001923049117277078, + 4200: 0.0024869507381327627, + 4250: 0.002559245817729645, + 4300: 0.0023423605789389974, + 4350: 0.002805049088359046, + 4400: 0.00208209829239022, + 4450: 0.002761672040600917, + 4500: 0.0034701638206503667, + 4550: 0.003238819565940342, + 4600: 0.0022556064834227383, + 4650: 0.0012434753690663814, + 4700: 0.001344688480502017, + 4750: 0.0011133442257919926, + 4800: 0.0006506557163719437, + 4850: 0.0008386229233238386, + 4900: 0.0009542950506788508, + 4950: 0, + }, + 1700: { + 0: 0.0004575326511937443, + 50: 0.009337825472090508, + 100: 0.01601364279178105, + 150: 0.03223525497046835, + 200: 0.02610015805673405, + 250: 0.03618667332168705, + 300: 0.033795025372265204, + 350: 0.03067548456867149, + 400: 0.030654687629980866, + 450: 0.025164295815655935, + 500: 0.02333416521088096, + 550: 0.02478995091922469, + 600: 0.0239580733715997, + 650: 0.023146992762665335, + 700: 0.016242409117377923, + 750: 0.014474669328674819, + 800: 0.014245903003077947, + 850: 0.014578654022127943, + 900: 0.01593045503701855, + 950: 0.019153980534065387, + 1000: 0.013102071375093586, + 1050: 0.010377672406621746, + 1100: 0.004304966308959321, + 1150: 0.004450544879793694, + 1200: 0.003514682638715581, + 1250: 0.006280675484568671, + 1300: 0.003015556110140587, + 1350: 0.002641211213709342, + 1400: 0.004887280592296814, + 1450: 0.004700108144081191, + 1500: 0.004304966308959321, + 1550: 0.0036394642708593296, + 1600: 0.004804092837534315, + 1650: 0.008651526495299891, + 1700: 0.006301472423259296, + 1750: 0.005116046917893686, + 1800: 0.01079361118043424, + 1850: 0.007091756093503036, + 1900: 0.007757258131603028, + 1950: 0.005469594875634307, + 2000: 0.00794443057981865, + 2050: 0.012083021379252974, + 2100: 0.014287496880459197, + 2150: 0.019944264204309125, + 2200: 0.015639297895349805, + 2250: 0.016263206056068548, + 2300: 0.019320356043590385, + 2350: 0.024374012145412197, + 2400: 0.0260585641793528, + 2450: 0.02312619582397471, + 2500: 0.019445137675734133, + 2550: 0.020692953997171616, + 2600: 0.018030945844771648, + 2650: 0.02013143665252475, + 2700: 0.01360119790366858, + 2750: 0.01351801014890608, + 2800: 0.014516263206056068, + 2850: 0.015992845853090427, + 2900: 0.009067465269112387, + 2950: 0.009400216288162382, + 3000: 0.0057815489559936775, + 3050: 0.007362116296481158, + 3100: 0.005032859163131187, + 3150: 0.0039306214125280755, + 3200: 0.0030779469262124616, + 3250: 0.004741702021462441, + 3300: 0.004055403044671824, + 3350: 0.0039306214125280755, + 3400: 0.005157640795274935, + 3450: 0.005739955078612428, + 3500: 0.0040346061059812, + 3550: 0.0035562765160968303, + 3600: 0.003681058148240579, + 3650: 0.0031611346809749604, + 3700: 0.0022876632559687216, + 3750: 0.002620414275018717, + 3800: 0.0016429581565593544, + 3850: 0.001206222444056235, + 3900: 0.001767739788703103, + 3950: 0.002620414275018717, + 4000: 0.0017053489726312288, + 4050: 0.001684552033940604, + 4100: 0.0018301306047749772, + 4150: 0.0030571499875218368, + 4200: 0.0014973795857249812, + 4250: 0.0030571499875218368, + 4300: 0.0036186673321687048, + 4350: 0.003348307129190583, + 4400: 0.0029115714166874636, + 4450: 0.002079693869062474, + 4500: 0.0023500540720405956, + 4550: 0.002246069378587472, + 4600: 0.0017885367273937276, + 4650: 0.0021628816238249728, + 4700: 0.0017885367273937276, + 4750: 0.0012478163214374844, + 4800: 0.001123034689293736, + 4850: 0.0009982530571499876, + 4900: 0.0009982530571499876, + 4950: 0, + }, + 1750: { + 0: 0.0018270885740765258, + 50: 0.004104329405534225, + 100: 0.020601085661326624, + 150: 0.02642658546273004, + 200: 0.035879782867734675, + 250: 0.0378657487091222, + 300: 0.03646233284787501, + 350: 0.04239375082748577, + 400: 0.019886137958427114, + 450: 0.023434396928372833, + 500: 0.02714153316562955, + 550: 0.017132265325036408, + 600: 0.012789620018535681, + 650: 0.012339467761154509, + 700: 0.018032569839798757, + 750: 0.01670859261220707, + 800: 0.02155434926519264, + 850: 0.017582417582417582, + 900: 0.012683701840328347, + 950: 0.0064080497815437575, + 1000: 0.0076525883754799415, + 1050: 0.007970342910101947, + 1100: 0.009188401959486297, + 1150: 0.008605851979345954, + 1200: 0.007970342910101947, + 1250: 0.006911161128028598, + 1300: 0.0024890771878723684, + 1350: 0.0026744339997352047, + 1400: 0.004819277108433735, + 1450: 0.004739838474778234, + 1500: 0.004660399841122733, + 1550: 0.004607440752019065, + 1600: 0.00585197934595525, + 1650: 0.010035747385144976, + 1700: 0.0064080497815437575, + 1750: 0.0051635111876075735, + 1800: 0.0061167747914735865, + 1850: 0.0061697338805772545, + 1900: 0.005613663444988746, + 1950: 0.0061697338805772545, + 2000: 0.008261617900172116, + 2050: 0.015517013107374553, + 2100: 0.01787369257248775, + 2150: 0.020971799285052297, + 2200: 0.021316033364226137, + 2250: 0.023990467363961338, + 2300: 0.0234873560174765, + 2350: 0.02012445385939362, + 2400: 0.01734410168145108, + 2450: 0.016152522176618563, + 2500: 0.021104197007811465, + 2550: 0.016073083542963062, + 2600: 0.016046603998411228, + 2650: 0.014960942671786045, + 2700: 0.015940685820203894, + 2750: 0.018323844829868926, + 2800: 0.013769363166953529, + 2850: 0.012842579107639349, + 2900: 0.012312988216602674, + 2950: 0.007970342910101947, + 3000: 0.005295908910366741, + 3050: 0.004978154375744737, + 3100: 0.005137031643055739, + 3150: 0.005375347544022243, + 3200: 0.007334833840857937, + 3250: 0.004739838474778234, + 3300: 0.004845756652985569, + 3350: 0.006090295246921753, + 3400: 0.0034952998808420494, + 3450: 0.00307162716801271, + 3500: 0.004024890771878724, + 3550: 0.005348867999470409, + 3600: 0.004130808950086058, + 3650: 0.002806831722494373, + 3700: 0.002992188534357209, + 3750: 0.0021183635641466966, + 3800: 0.0024361180987687013, + 3850: 0.0011915795048325168, + 3900: 0.0029127499007017077, + 3950: 0.002091884019594863, + 4000: 0.003813054415464054, + 4050: 0.0021183635641466966, + 4100: 0.002833311267046207, + 4150: 0.0031245862571163776, + 4200: 0.0035747385144975505, + 4250: 0.0023037203760095325, + 4300: 0.0029392294452535417, + 4350: 0.0048722361975374025, + 4400: 0.0035217794253938834, + 4450: 0.004369124851052562, + 4500: 0.002753872633390706, + 4550: 0.0024096385542168677, + 4600: 0.002833311267046207, + 4650: 0.0014034158612471865, + 4700: 0.001376936316695353, + 4750: 0.0018270885740765258, + 4800: 0.0015093340394545214, + 4850: 0.0012180590493843506, + 4900: 0.0013239772275916854, + 4950: 0, + }, + 1800: { + 0: 0.00012017786323759164, + 50: 0.0037735849056603774, + 100: 0.012113928614349238, + 150: 0.026415094339622643, + 200: 0.027424588390818412, + 250: 0.03090974642470857, + 300: 0.029563754356447543, + 350: 0.02660737892080279, + 400: 0.023651003485158036, + 450: 0.023194327604855184, + 500: 0.026415094339622643, + 550: 0.01853142651123663, + 600: 0.019276529263309698, + 650: 0.01610383367383728, + 700: 0.02023795216921043, + 750: 0.020718663622160797, + 800: 0.01968513399831751, + 850: 0.015310659776469174, + 900: 0.014878019468813845, + 950: 0.013580098545847855, + 1000: 0.0074510275207306815, + 1050: 0.008700877298401634, + 1100: 0.008941233024876817, + 1150: 0.006970316067780315, + 1200: 0.0049032568200937385, + 1250: 0.005912750871289509, + 1300: 0.0029804110082922728, + 1350: 0.006153106597764692, + 1400: 0.005263790409806513, + 1450: 0.0023795216921043143, + 1500: 0.0022353082562192044, + 1550: 0.0036293714697752675, + 1600: 0.0020189881023915395, + 1650: 0.0041581540680206705, + 1700: 0.008244201418098786, + 1750: 0.010431438529022953, + 1800: 0.011008292272563393, + 1850: 0.018459319793294075, + 1900: 0.014974161759403918, + 1950: 0.014469414733806033, + 2000: 0.01908424468212955, + 2050: 0.011416897007571205, + 2100: 0.011152505708448503, + 2150: 0.015767335656772023, + 2200: 0.023338541040740294, + 2250: 0.023843288066338182, + 2300: 0.019997596442735247, + 2350: 0.024780675399591397, + 2400: 0.01781035933181108, + 2450: 0.020910948203340943, + 2500: 0.02095901934863598, + 2550: 0.01624804710972239, + 2600: 0.01711332772503305, + 2650: 0.009974762648720105, + 2700: 0.009566157913712294, + 2750: 0.015310659776469174, + 2800: 0.010816007691383247, + 2850: 0.010503545246965508, + 2900: 0.01047950967431799, + 2950: 0.009277731041942074, + 3000: 0.007595240956615791, + 3050: 0.007691383247205865, + 3100: 0.012474462204062012, + 3150: 0.01091214998197332, + 3200: 0.00790770340103353, + 3250: 0.006657853623362577, + 3300: 0.004086047350078116, + 3350: 0.0031246244441773827, + 3400: 0.004999399110683812, + 3450: 0.004374474221848335, + 3500: 0.002812161999759644, + 3550: 0.007354885230140608, + 3600: 0.002043023675039058, + 3650: 0.002283379401514241, + 3700: 0.0024516284100468693, + 3750: 0.0028602331450546807, + 3800: 0.0020189881023915395, + 3850: 0.0023795216921043143, + 3900: 0.0031005888715298644, + 3950: 0.0036534070424227858, + 4000: 0.0028361975724071624, + 4050: 0.0016344189400312463, + 4100: 0.0025477707006369425, + 4150: 0.0022593438288667227, + 4200: 0.0022353082562192044, + 4250: 0.0024756639826943876, + 4300: 0.003533229179185194, + 4350: 0.0031005888715298644, + 4400: 0.0032448023074149743, + 4450: 0.0033169090253575293, + 4500: 0.002211272683571686, + 4550: 0.001538276649441173, + 4600: 0.0010816007691383247, + 4650: 0.0014180987862035812, + 4700: 0.001177743059728398, + 4750: 0.0021151303929816128, + 4800: 0.0018507390938589112, + 4850: 0.002283379401514241, + 4900: 0.002211272683571686, + 4950: 0, + }, + 1850: { + 0: 0.00012994438380373202, + 50: 0.0009355995633868704, + 100: 0.014709704246582463, + 150: 0.02159675658818026, + 200: 0.024663444045948335, + 250: 0.022272467383959667, + 300: 0.026326732158636103, + 350: 0.02988720827485836, + 400: 0.024637455169187587, + 450: 0.019517646447320548, + 500: 0.022714278288892355, + 550: 0.021492801081137273, + 600: 0.01832215811632621, + 650: 0.016191070221945006, + 700: 0.023078122563542802, + 750: 0.018166224855761734, + 800: 0.018867924528301886, + 850: 0.023493944591714746, + 900: 0.028041998024845367, + 950: 0.01891990228182338, + 1000: 0.012734549612765737, + 1050: 0.01003170642964811, + 1100: 0.007302874369769738, + 1150: 0.010083684183169603, + 1200: 0.005353708612713759, + 1250: 0.005977441654971672, + 1300: 0.004652008940173606, + 1350: 0.006393263683143614, + 1400: 0.00621134154581839, + 1450: 0.004833931077498831, + 1500: 0.0033265762253755393, + 1550: 0.002650865429596133, + 1600: 0.004859919954259577, + 1650: 0.004314153542283902, + 1700: 0.0035864649929830033, + 1750: 0.006913041218358542, + 1800: 0.00953791777119393, + 1850: 0.006185352669057643, + 1900: 0.01213680544726857, + 1950: 0.017854358334632777, + 2000: 0.006601174697229586, + 2050: 0.013124382764176932, + 2100: 0.019985446229013982, + 2150: 0.013202349394459172, + 2200: 0.01522948178179739, + 2250: 0.01632101460574874, + 2300: 0.018660013514215916, + 2350: 0.024507510785383855, + 2400: 0.01790633608815427, + 2450: 0.0155153594261656, + 2500: 0.018062269348718747, + 2550: 0.017828369457872032, + 2600: 0.012656582982483497, + 2650: 0.012266749831072302, + 2700: 0.018893913405062635, + 2750: 0.018010291595197257, + 2800: 0.014605748739539477, + 2850: 0.01720463641561412, + 2900: 0.01710068090857113, + 2950: 0.014033993450803056, + 3000: 0.010005717552887363, + 3050: 0.014839648630386195, + 3100: 0.00953791777119393, + 3150: 0.0047559644472165916, + 3200: 0.006315297052861375, + 3250: 0.004807942200738084, + 3300: 0.005639586257081969, + 3350: 0.003976298144394199, + 3400: 0.0016372992359270232, + 3450: 0.0015333437288840377, + 3500: 0.0021050990176204585, + 3550: 0.0021050990176204585, + 3600: 0.0016632881126877697, + 3650: 0.002287021154945683, + 3700: 0.002209054524663444, + 3750: 0.003196631841571807, + 3800: 0.0033525651021362856, + 3850: 0.002780809813399865, + 3900: 0.003378553978897032, + 3950: 0.0024429544155101617, + 4000: 0.003924320390872707, + 4050: 0.0016632881126877697, + 4100: 0.0028327875669213578, + 4150: 0.0020791101408597122, + 4200: 0.0031446540880503146, + 4250: 0.004080253651437185, + 4300: 0.003222620718332554, + 4350: 0.004210198035240917, + 4400: 0.0032486095950933, + 4450: 0.002209054524663444, + 4500: 0.0026248765528353864, + 4550: 0.0030666874577680754, + 4600: 0.002157076771141951, + 4650: 0.0027028431831176256, + 4700: 0.002468943292270908, + 4750: 0.0017672436197307552, + 4800: 0.0018971880035344873, + 4850: 0.0013774104683195593, + 4900: 0.0021310878943812048, + 4950: 0, + }, + 1900: { + 0: 0, + 50: 0.004396652187731751, + 100: 0.005720945015361797, + 150: 0.011494861743828796, + 200: 0.021029770102765123, + 250: 0.022248119504184764, + 300: 0.027836635236783557, + 350: 0.03429918423561818, + 400: 0.03882826570611293, + 450: 0.030326305752728044, + 500: 0.02200974679521136, + 550: 0.022301091217289966, + 600: 0.021638944803474943, + 650: 0.015785570505350142, + 700: 0.0145407352473779, + 750: 0.01507045237842992, + 800: 0.01218349401419642, + 850: 0.016368259349507364, + 900: 0.012157008157643819, + 950: 0.00813115796164848, + 1000: 0.00903167708443691, + 1050: 0.00757495497404386, + 1100: 0.004608539040152558, + 1150: 0.008369530670621888, + 1200: 0.004476109757389554, + 1250: 0.004317194618073949, + 1300: 0.003257760355969912, + 1350: 0.006780379277465833, + 1400: 0.006224176289861214, + 1450: 0.005959317724335205, + 1500: 0.0028869583642334995, + 1550: 0.0013242928276300456, + 1600: 0.002966415933891302, + 1650: 0.0018804958152346648, + 1700: 0.002171840237313275, + 1750: 0.002092382667655472, + 1800: 0.009667337641699332, + 1850: 0.014567221103930501, + 1900: 0.019308189426846065, + 1950: 0.013428329272168662, + 2000: 0.021029770102765123, + 2050: 0.022539463926263374, + 2100: 0.015547197796376734, + 2150: 0.011945121305223011, + 2200: 0.018804958152346646, + 2250: 0.02063248225447611, + 2300: 0.019308189426846065, + 2350: 0.02063248225447611, + 2400: 0.028578239220256384, + 2450: 0.02158597309036974, + 2500: 0.016712575484691176, + 2550: 0.02087085496344952, + 2600: 0.016474202775717768, + 2650: 0.012130522301091217, + 2700: 0.016897976480559383, + 2750: 0.014328848394957093, + 2800: 0.012951583854221845, + 2850: 0.013322385845958259, + 2900: 0.014593706960483102, + 2950: 0.013560758554931666, + 3000: 0.015388282657061129, + 3050: 0.015467740226718932, + 3100: 0.011521347600381397, + 3150: 0.012289437440406822, + 3200: 0.006489034855387223, + 3250: 0.00609174700709821, + 3300: 0.0039199067697849345, + 3350: 0.0018540099586820639, + 3400: 0.0029399300773387013, + 3450: 0.0028604725076808984, + 3500: 0.0022512978069710774, + 3550: 0.0019864392414450684, + 3600: 0.0028075007945756966, + 3650: 0.003522618921495921, + 3700: 0.002092382667655472, + 3750: 0.0022512978069710774, + 3800: 0.0012713211145248438, + 3850: 0.0011388918317618393, + 3900: 0.0014037503972878483, + 3950: 0.0021453543807606738, + 4000: 0.002410212946286683, + 4050: 0.002383727089734082, + 4100: 0.002410212946286683, + 4150: 0.0036815340608115266, + 4200: 0.004396652187731751, + 4250: 0.005058798601546774, + 4300: 0.003655048204258926, + 4350: 0.003575590634601123, + 4400: 0.004131793622205742, + 4450: 0.004158279478758343, + 4500: 0.0023307553766288803, + 4550: 0.0042907087615213476, + 4600: 0.002436698802839284, + 4650: 0.0027810149380230955, + 4700: 0.00495285517533637, + 4750: 0.0022248119504184767, + 4800: 0.0027280432249178936, + 4850: 0.0016156372497086555, + 4900: 0.0013772645407352474, + 4950: 0, + }, + 1950: { + 0: 0.0011241481065130331, + 50: 0.0036183517178388254, + 100: 0.011663036605072718, + 150: 0.015035480924611818, + 200: 0.021112906625447903, + 250: 0.030387128504180426, + 300: 0.03671046160331624, + 350: 0.030949202557436942, + 400: 0.022201925103632402, + 450: 0.02434483243167287, + 500: 0.015913721632825124, + 550: 0.0290522026276962, + 600: 0.023536850980116632, + 650: 0.014578795756340898, + 700: 0.014719314269655026, + 750: 0.01889974004075037, + 800: 0.015140869809597415, + 850: 0.008395981170519215, + 900: 0.011487388463430058, + 950: 0.0112063514368018, + 1000: 0.013349258764842269, + 1050: 0.0067448886390781984, + 1100: 0.007096184922363522, + 1150: 0.0016862221597695496, + 1200: 0.005901777559193424, + 1250: 0.004250685027752406, + 1300: 0.007306962692334715, + 1350: 0.00737722194899178, + 1400: 0.004707370196023326, + 1450: 0.003829129487810019, + 1500: 0.008958055223775732, + 1550: 0.008079814515562425, + 1600: 0.009906555188646105, + 1650: 0.004601981311037729, + 1700: 0.005269444249279842, + 1750: 0.007939296002248296, + 1800: 0.009028314480432797, + 1850: 0.009941684816974636, + 1900: 0.013630295791470527, + 1950: 0.00923909225040399, + 2000: 0.0112063514368018, + 2050: 0.00846624042717628, + 2100: 0.01570294386285393, + 2150: 0.018688962270779177, + 2200: 0.019602332607321013, + 2250: 0.018688962270779177, + 2300: 0.020691351085505516, + 2350: 0.025293332396543244, + 2400: 0.01384107356144172, + 2450: 0.021393943652076162, + 2500: 0.02044544368720579, + 2550: 0.01984824000562074, + 2600: 0.01844305487247945, + 2650: 0.015140869809597415, + 2700: 0.01370055504812759, + 2750: 0.009730907047003443, + 2800: 0.01384107356144172, + 2850: 0.01106583292348767, + 2900: 0.013911332818098785, + 2950: 0.018548443757465047, + 3000: 0.010187592215274363, + 3050: 0.009098573737089862, + 3100: 0.004953277594323052, + 3150: 0.007096184922363522, + 3200: 0.004250685027752406, + 3250: 0.00600716644417902, + 3300: 0.004637110939366262, + 3350: 0.006780018267406731, + 3400: 0.004531722054380665, + 3450: 0.0062179442141502145, + 3500: 0.004742499824351858, + 3550: 0.00368861097449589, + 3600: 0.004496592426052133, + 3650: 0.007587999718962973, + 3700: 0.004847888709337455, + 3750: 0.003583222089510293, + 3800: 0.004391203541066535, + 3850: 0.004320944284409471, + 3900: 0.002950888779596712, + 3950: 0.00245907398299726, + 4000: 0.003091407292910841, + 4050: 0.0034075739478676317, + 4100: 0.0028103702662825828, + 4150: 0.00245907398299726, + 4200: 0.001861870301412211, + 4250: 0.003548092461181761, + 4300: 0.004566851682709197, + 4350: 0.004777629452680391, + 4400: 0.0042858146560809385, + 4450: 0.002634722124639921, + 4500: 0.0015105740181268882, + 4550: 0.0020726480713834047, + 4600: 0.002213166584697534, + 4650: 0.0018267406730836787, + 4700: 0.00323192580622497, + 4750: 0.0023888147263401954, + 4800: 0.0034427035761961638, + 4850: 0.003829129487810019, + 4900: 0.0020375184430548726, + 4950: 0, + }, + 2000: { + 0: 0, + 50: 0.0015452888501466043, + 100: 0.010420794040732229, + 150: 0.004952848878675014, + 200: 0.014937792218083841, + 250: 0.012718915920437435, + 300: 0.01790950154528885, + 350: 0.02829067279499168, + 400: 0.02488311276646327, + 450: 0.028686900705285682, + 500: 0.031143513749108488, + 550: 0.026943497899992074, + 600: 0.015967984784848243, + 650: 0.01814723829146525, + 700: 0.01711704572470085, + 750: 0.02107932482764086, + 800: 0.011688723353673033, + 850: 0.013788731278231239, + 900: 0.018503843410729852, + 950: 0.015215151755289643, + 1000: 0.011252872652349631, + 1050: 0.00705285680323322, + 1100: 0.005467945162057215, + 1150: 0.0063000237736746175, + 1200: 0.009469847056026626, + 1250: 0.004754734923528014, + 1300: 0.008122672161027022, + 1350: 0.014066090815437039, + 1400: 0.013154766621760837, + 1450: 0.009905697757350028, + 1500: 0.004200015849116411, + 1550: 0.004358507013234012, + 1600: 0.004081147476028211, + 1650: 0.0032886916554402093, + 1700: 0.0038434107298518107, + 1750: 0.004675489341469213, + 1800: 0.004596243759410413, + 1850: 0.002377367461764007, + 1900: 0.0045566209683810125, + 1950: 0.02163404390205246, + 2000: 0.011094381488232032, + 2050: 0.016403835486171647, + 2100: 0.009390601473967827, + 2150: 0.011490609398526032, + 2200: 0.02191140343925826, + 2250: 0.02210951739440526, + 2300: 0.026151042079404073, + 2350: 0.03173785561454949, + 2400: 0.026507647198668674, + 2450: 0.017037800142642046, + 2500: 0.015611379665583644, + 2550: 0.016522703859259847, + 2600: 0.010024566130438228, + 2650: 0.01101513590617323, + 2700: 0.008637768444409223, + 2750: 0.019296299231317853, + 2800: 0.019098185276170854, + 2850: 0.013590617323084237, + 2900: 0.011450986607496633, + 2950: 0.009549092638085427, + 3000: 0.012520801965290434, + 3050: 0.011886837308820033, + 3100: 0.01065853078690863, + 3150: 0.011807591726761234, + 3200: 0.006696251683968619, + 3250: 0.01022268008558523, + 3300: 0.006815120057056819, + 3350: 0.0044773753863222125, + 3400: 0.0037245423567636104, + 3450: 0.005071717251763214, + 3500: 0.0045566209683810125, + 3550: 0.005150962833822014, + 3600: 0.0031302004913226085, + 3650: 0.006260400982645217, + 3700: 0.0026547269989698075, + 3750: 0.0028924637451462083, + 3800: 0.004120770267057611, + 3850: 0.004952848878675014, + 3900: 0.004992471669704414, + 3950: 0.005943418654410016, + 4000: 0.004318884222204612, + 4050: 0.005388699579998415, + 4100: 0.004081147476028211, + 4150: 0.0033283144464696093, + 4200: 0.006022664236468817, + 4250: 0.004833980505586814, + 4300: 0.0033283144464696093, + 4350: 0.0038434107298518107, + 4400: 0.004160393058087012, + 4450: 0.0031302004913226085, + 4500: 0.0029320865361756082, + 4550: 0.004200015849116411, + 4600: 0.0032886916554402093, + 4650: 0.0026547269989698075, + 4700: 0.0016245344322054045, + 4750: 0.0009509469847056027, + 4800: 0.0009113241936762026, + 4850: 0.0013471748949996038, + 4900: 0.001386797686029004, + 4950: 0, + }, + 2050: { + 0: 0, + 50: 0.0017032799056644974, + 100: 0.006682098091453029, + 150: 0.008996811809407345, + 200: 0.017382189806524874, + 250: 0.023671223304363016, + 300: 0.026247980084727257, + 350: 0.0328864043324453, + 400: 0.03380355505088003, + 450: 0.023103463335808185, + 500: 0.03175088439533563, + 550: 0.028999432240031445, + 600: 0.018954448180984407, + 650: 0.01650871293182513, + 700: 0.010044984059047036, + 750: 0.009782940996637114, + 800: 0.010307027121456959, + 850: 0.010787439402541817, + 900: 0.010307027121456959, + 950: 0.007555574966152771, + 1000: 0.010132331746517011, + 1050: 0.008123334934707604, + 1100: 0.005852295060488274, + 1150: 0.00952089793422719, + 1200: 0.00742455343494781, + 1250: 0.006026990435428222, + 1300: 0.0057649473730183, + 1350: 0.003799624404943879, + 1400: 0.0036249290300039306, + 1450: 0.0017032799056644974, + 1500: 0.0019653229680744204, + 1550: 0.0024457352491592784, + 1600: 0.009477224090492203, + 1650: 0.0034939074987989692, + 1700: 0.00681311962265799, + 1750: 0.0065074027165130804, + 1800: 0.002664104467834214, + 1850: 0.0013538891557846005, + 1900: 0.005983316591693235, + 1950: 0.008691094903262437, + 2000: 0.005197187404463467, + 2050: 0.02480674324147268, + 2100: 0.019653229680744202, + 2150: 0.019784251211949162, + 2200: 0.025199807835087566, + 2250: 0.01698912521290999, + 2300: 0.025243481678822552, + 2350: 0.028693715333886535, + 2400: 0.029610866052321265, + 2450: 0.019958946586889112, + 2500: 0.019871598899419137, + 2550: 0.012971131589291173, + 2600: 0.014325020745075774, + 2650: 0.014499716120015722, + 2700: 0.01484910686989562, + 2750: 0.025636546272437437, + 2800: 0.020526706555443943, + 2850: 0.012971131589291173, + 2900: 0.012053980870856445, + 2950: 0.013102153120496136, + 3000: 0.021749574180023584, + 3050: 0.00969559330916714, + 3100: 0.011005808621216754, + 3150: 0.00834170415338254, + 3200: 0.008691094903262437, + 3250: 0.007555574966152771, + 3300: 0.006638424247718042, + 3350: 0.005415556623138402, + 3400: 0.004760448967113595, + 3450: 0.0034939074987989692, + 3500: 0.0025767567803642397, + 3550: 0.006725771935188016, + 3600: 0.005197187404463467, + 3650: 0.00288247368650915, + 3700: 0.0027514521553041885, + 3750: 0.0028387998427741624, + 3800: 0.002227366030484343, + 3850: 0.0006987814997597939, + 3900: 0.0003057169061449098, + 3950: 0.0008298030309647552, + 4000: 0.0024020614054242914, + 4050: 0.002664104467834214, + 4100: 0.00227103987421933, + 4150: 0.003319212123859021, + 4200: 0.003712276717473905, + 4250: 0.003799624404943879, + 4300: 0.004978818185788532, + 4350: 0.0055465781543433635, + 4400: 0.00545923046687339, + 4450: 0.00288247368650915, + 4500: 0.0031881905926540595, + 4550: 0.002489409092894266, + 4600: 0.004280036686028737, + 4650: 0.004192688998558763, + 4700: 0.003100842905184085, + 4750: 0.004454732060968686, + 4800: 0.002926147530244137, + 4850: 0.004149015154823776, + 4900: 0.003013495217714111, + 4950: 0, + }, + 2100: { + 0: 0.00003812137846904544, + 50: 0.0014486123818237267, + 100: 0.008157974992375725, + 150: 0.01528667276608722, + 200: 0.02081427264409881, + 250: 0.025236352546508082, + 300: 0.02474077462641049, + 350: 0.026456236657517535, + 400: 0.030725831046050624, + 450: 0.022758462946020127, + 500: 0.03026837450442208, + 550: 0.017764562366575174, + 600: 0.0200518450747179, + 650: 0.014181152790484904, + 700: 0.014104910033546813, + 750: 0.009759072888075633, + 800: 0.007891125343092406, + 850: 0.00953034461726136, + 900: 0.007586154315340043, + 950: 0.005375114364135407, + 1000: 0.0031259530344617263, + 1050: 0.0036596523330283625, + 1100: 0.004231473010064044, + 1150: 0.00301158889905459, + 1200: 0.0027828606282403173, + 1250: 0.002439768222018908, + 1300: 0.0027828606282403173, + 1350: 0.0018298261665141812, + 1400: 0.002439768222018908, + 1450: 0.002096675815797499, + 1500: 0.0035834095760902715, + 1550: 0.003812137846904544, + 1600: 0.003735895089966453, + 1650: 0.0036977737114974076, + 1700: 0.0028972247636474533, + 1750: 0.0011817627325404086, + 1800: 0.002439768222018908, + 1850: 0.004422079902409271, + 1900: 0.004155230253125953, + 1950: 0.005680085391887771, + 2000: 0.013609332113449222, + 2050: 0.029963403476669717, + 2100: 0.05710582494663007, + 2150: 0.02832418420250076, + 2200: 0.027828606282403173, + 2250: 0.03541476059774321, + 2300: 0.03804513571210735, + 2350: 0.026036901494358035, + 2400: 0.026799329063738945, + 2450: 0.02333028362305581, + 2500: 0.017002134797194268, + 2550: 0.01730710582494663, + 2600: 0.01765019823116804, + 2650: 0.017268984446477585, + 2700: 0.014104910033546813, + 2750: 0.011398292162244587, + 2800: 0.014714852089051541, + 2850: 0.013952424519670631, + 2900: 0.00560384263494968, + 2950: 0.008081732235437634, + 3000: 0.00602317779810918, + 3050: 0.00602317779810918, + 3100: 0.0070524550167734065, + 3150: 0.006594998475144861, + 3200: 0.009568465995730406, + 3250: 0.006480634339737725, + 3300: 0.0057182067703568165, + 3350: 0.005870692284232998, + 3400: 0.006251906068923453, + 3450: 0.0031640744129307714, + 3500: 0.003812137846904544, + 3550: 0.003621530954559317, + 3600: 0.00217291857273559, + 3650: 0.004269594388533089, + 3700: 0.004040866117718817, + 3750: 0.004612686794754499, + 3800: 0.0025541323574260447, + 3850: 0.0022872827081427266, + 3900: 0.0036596523330283625, + 3950: 0.001639219274168954, + 4000: 0.0028972247636474533, + 4050: 0.004460201280878317, + 4100: 0.0028972247636474533, + 4150: 0.0033928026837450444, + 4200: 0.005108264714852089, + 4250: 0.0033928026837450444, + 4300: 0.003278438548337908, + 4350: 0.003964623360780726, + 4400: 0.005870692284232998, + 4450: 0.004803293687099725, + 4500: 0.003812137846904544, + 4550: 0.006137541933516316, + 4600: 0.006556877096675816, + 4650: 0.008882281183287587, + 4700: 0.010064043915827997, + 4750: 0.004993900579444953, + 4800: 0.002439768222018908, + 4850: 0.0008767917047880451, + 4900: 0.0010292772186642268, + 4950: 0, + }, + 2150: { + 0: 0.000047323837016705316, + 50: 0.0016090104585679806, + 100: 0.008565614500023662, + 150: 0.011736311580142917, + 200: 0.01940277317684918, + 250: 0.022810089442051963, + 300: 0.02749514930670579, + 350: 0.024419099900619943, + 400: 0.03345795277081066, + 450: 0.0204912214282334, + 500: 0.019355449339832475, + 550: 0.017651791207231083, + 600: 0.012872083668543845, + 650: 0.01372391273484454, + 700: 0.0177937627182812, + 750: 0.014481094127111826, + 800: 0.010742511002792107, + 850: 0.011736311580142917, + 900: 0.005726184279021343, + 950: 0.005489565093937817, + 1000: 0.010269272632625052, + 1050: 0.00676730869338886, + 1100: 0.007145899389522503, + 1150: 0.006341394160238512, + 1200: 0.0027921063839856136, + 1250: 0.003643935450286309, + 1300: 0.0064833656712886285, + 1350: 0.008849557522123894, + 1400: 0.0056315366049879325, + 1450: 0.007950404618806493, + 1500: 0.004164497657470068, + 1550: 0.004401116842553595, + 1600: 0.0033599924281860773, + 1650: 0.0018456296436515072, + 1700: 0.00454308835360371, + 1750: 0.007997728455823198, + 1800: 0.007145899389522503, + 1850: 0.011499692395059392, + 1900: 0.006956604041455681, + 1950: 0.012446169135393498, + 2000: 0.017131229000047325, + 2050: 0.01717855283706403, + 2100: 0.021958260375751267, + 2150: 0.019166153991765654, + 2200: 0.039468080071932234, + 2250: 0.01888221096966542, + 2300: 0.022384174908901613, + 2350: 0.019024182480715537, + 2400: 0.02451374757465335, + 2450: 0.026737967914438502, + 2500: 0.020017983058066346, + 2550: 0.013250674364677488, + 2600: 0.0106951871657754, + 2650: 0.010789834839808811, + 2700: 0.010411244143675169, + 2750: 0.012114902276276561, + 2800: 0.015616866215512754, + 2850: 0.014812360986228764, + 2900: 0.016610666792863566, + 2950: 0.008660262174057073, + 3000: 0.010837158676825517, + 3050: 0.011168425535942455, + 3100: 0.007997728455823198, + 3150: 0.012162226113293265, + 3200: 0.009370119729307652, + 3250: 0.008328995314940135, + 3300: 0.007240547063555913, + 3350: 0.005158298234820879, + 3400: 0.007240547063555913, + 3450: 0.00454308835360371, + 3500: 0.004022526146419952, + 3550: 0.005300269745870995, + 3600: 0.002508163361885382, + 3650: 0.0026974587099522027, + 3700: 0.002413515687851971, + 3750: 0.0027447825469689084, + 3800: 0.0027921063839856136, + 3850: 0.0035019639392361935, + 3900: 0.006388717997255217, + 3950: 0.007098575552505797, + 4000: 0.005110974397804174, + 4050: 0.004306469168520183, + 4100: 0.0038332307983531305, + 4150: 0.005300269745870995, + 4200: 0.008376319151956841, + 4250: 0.008754909848090483, + 4300: 0.00596280346410487, + 4350: 0.00676730869338886, + 4400: 0.0038805546353698358, + 4450: 0.0053475935828877, + 4500: 0.003170697080119256, + 4550: 0.004827031375703942, + 4600: 0.006388717997255217, + 4650: 0.004637736027637121, + 4700: 0.0038332307983531305, + 4750: 0.0023661918508352657, + 4800: 0.0017036581326013913, + 4850: 0.0011830959254176328, + 4900: 0.0014670389475178647, + 4950: 0, + }, + 2200: { + 0: 0.00003490157755130532, + 50: 0.0022337009632835405, + 100: 0.014588859416445624, + 150: 0.01298338684908558, + 200: 0.009667736981711573, + 250: 0.015077481502163897, + 300: 0.023244450649169343, + 350: 0.01947508027362837, + 400: 0.01930057238587184, + 450: 0.008620689655172414, + 500: 0.01095909535110987, + 550: 0.00977244171436549, + 600: 0.007817953371492391, + 650: 0.009632835404160269, + 700: 0.013297501047047326, + 750: 0.009423425938852436, + 800: 0.00649169342454279, + 850: 0.007468937595979338, + 900: 0.0035948624877844477, + 950: 0.004641909814323607, + 1000: 0.007748150216389781, + 1050: 0.006666201312299316, + 1100: 0.004432500349015775, + 1150: 0.007329331285774117, + 1200: 0.004641909814323607, + 1250: 0.005095630322490576, + 1300: 0.0017450788775652658, + 1350: 0.002861929359207036, + 1400: 0.001954488342873098, + 1450: 0.0018846851877704872, + 1500: 0.003141141979617479, + 1550: 0.0026176183163478988, + 1600: 0.002268602540834846, + 1650: 0.0018497836102191819, + 1700: 0.00164037414491135, + 1750: 0.0015705709898087394, + 1800: 0.003455256177579227, + 1850: 0.0027921262041044254, + 1900: 0.00492112243473405, + 1950: 0.004153287728605333, + 2000: 0.0018846851877704872, + 2050: 0.008097165991902834, + 2100: 0.013995532598073433, + 2150: 0.022162501745078878, + 2200: 0.31219461119642605, + 2250: 0.019509981851179675, + 2300: 0.011831634789892503, + 2350: 0.01608962725115175, + 2400: 0.023035041183861512, + 2450: 0.018079017171576155, + 2500: 0.018462934524640515, + 2550: 0.011587323747033366, + 2600: 0.015426497277676952, + 2650: 0.013332402624598632, + 2700: 0.012913583693982968, + 2750: 0.009702638559262879, + 2800: 0.013751221555214296, + 2850: 0.013018288426636883, + 2900: 0.009004607008236772, + 2950: 0.00813206756945414, + 3000: 0.008271673879659361, + 3050: 0.006247382381683652, + 3100: 0.004537205081669692, + 3150: 0.006003071338824515, + 3200: 0.005339941365349714, + 3250: 0.004118386151054028, + 3300: 0.004223090883707943, + 3350: 0.0035948624877844477, + 3400: 0.0038042719530922797, + 3450: 0.005758760295965378, + 3500: 0.006352087114337568, + 3550: 0.007015217087812369, + 3600: 0.0035948624877844477, + 3650: 0.002059193075527014, + 3700: 0.0036646656428870584, + 3750: 0.002268602540834846, + 3800: 0.0014658662571548234, + 3850: 0.0024780120061426774, + 3900: 0.002059193075527014, + 3950: 0.0025129135836939828, + 4000: 0.0019195867653217925, + 4050: 0.0017101773000139607, + 4100: 0.0018497836102191819, + 4150: 0.002373307273488762, + 4200: 0.004467401926567081, + 4250: 0.004292894038810554, + 4300: 0.002861929359207036, + 4350: 0.005339941365349714, + 4400: 0.0035599609102331424, + 4450: 0.0026874214714505094, + 4500: 0.004572106659220997, + 4550: 0.0032807482898227, + 4600: 0.0037693703755409744, + 4650: 0.0023384056959374565, + 4700: 0.0017799804551165712, + 4750: 0.003176043557168784, + 4800: 0.003629764065335753, + 4850: 0.0032807482898227, + 4900: 0.004432500349015775, + 4950: 0, + }, + 2250: { + 0: 0, + 50: 0.001202573507305634, + 100: 0.014671396789128736, + 150: 0.014671396789128736, + 200: 0.011725091696229931, + 250: 0.017497444531296976, + 300: 0.016174613673260778, + 350: 0.02645661716072395, + 400: 0.016475257050087188, + 450: 0.024231856172208525, + 500: 0.024592628224400215, + 550: 0.014911911490589862, + 600: 0.012025735073056341, + 650: 0.015753712945703807, + 700: 0.013949852684745355, + 750: 0.012807407852805004, + 800: 0.012145992423786904, + 850: 0.007215441043833804, + 900: 0.005832481510432325, + 950: 0.00565209548433648, + 1000: 0.005171066081414226, + 1050: 0.006974926342372677, + 1100: 0.00883891527869641, + 1150: 0.004269135950935001, + 1200: 0.0027659190668029585, + 1250: 0.004750165353857255, + 1300: 0.0037881065480127474, + 1350: 0.0015032168841320427, + 1400: 0.0031266911189946484, + 1450: 0.004449521977030846, + 1500: 0.002585533040707113, + 1550: 0.0031266911189946484, + 1600: 0.0033672058204557752, + 1650: 0.0019842462870542964, + 1700: 0.0021045036377848594, + 1750: 0.0067344116409115504, + 1800: 0.00703505501773796, + 1850: 0.004509650652396128, + 1900: 0.0037881065480127474, + 1950: 0.00529132343214479, + 2000: 0.0055919668089711985, + 2050: 0.004509650652396128, + 2100: 0.035055017737959236, + 2150: 0.02224760988515423, + 2200: 0.0367987493235524, + 2250: 0.07654380374000361, + 2300: 0.04184955805423606, + 2350: 0.026637003186819795, + 2400: 0.020564006974926344, + 2450: 0.01623474234862606, + 2500: 0.018820275389333174, + 2550: 0.0183993746617762, + 2600: 0.01166496302086465, + 2650: 0.009921231435271481, + 2700: 0.011845349046960496, + 2750: 0.013709337983284229, + 2800: 0.020323492273465214, + 2850: 0.023690698093920992, + 2900: 0.01695628645300944, + 2950: 0.014611268113763454, + 3000: 0.011424448319403523, + 3050: 0.006012867536528171, + 3100: 0.007636341771390776, + 3150: 0.006193253562624015, + 3200: 0.005952738861162888, + 3250: 0.007455955745294931, + 3300: 0.0039083638987433104, + 3350: 0.0021646323131501413, + 3400: 0.003968492574108593, + 3450: 0.0073958270699296495, + 3500: 0.005471709458240635, + 3550: 0.004750165353857255, + 3600: 0.00282604774216824, + 3650: 0.0019842462870542964, + 3700: 0.0023450183392459863, + 3750: 0.003848235223378029, + 3800: 0.002585533040707113, + 3850: 0.0021045036377848594, + 3900: 0.001202573507305634, + 3950: 0.004329264626300283, + 4000: 0.0029463050928988034, + 4050: 0.004810294029222536, + 4100: 0.005351452107510072, + 4150: 0.005892610185797607, + 4200: 0.0045697793277614095, + 4250: 0.0022848896638807048, + 4300: 0.0033672058204557752, + 4350: 0.00703505501773796, + 4400: 0.009680716733810353, + 4450: 0.006072996211893452, + 4500: 0.007335698394564368, + 4550: 0.0055919668089711985, + 4600: 0.005411580782875353, + 4650: 0.0046900366784919725, + 4700: 0.006674282965546269, + 4750: 0.011965606397691059, + 4800: 0.005411580782875353, + 4850: 0.004329264626300283, + 4900: 0.002886176417533522, + 4950: 0, + }, + 2300: { + 0: 0, + 50: 0.007234311305046794, + 100: 0.010047654590342769, + 150: 0.007578802319572831, + 200: 0.012516506861112706, + 250: 0.009530918068553712, + 300: 0.016191077682723775, + 350: 0.021645518746052708, + 400: 0.016765229373600504, + 450: 0.014124131595567548, + 500: 0.019808233335247172, + 550: 0.012860997875638745, + 600: 0.007521387150485158, + 650: 0.011827524832060631, + 700: 0.009817993913992077, + 750: 0.007865878165011195, + 800: 0.007578802319572831, + 850: 0.007463971981397486, + 900: 0.00912901188494, + 950: 0.012516506861112706, + 1000: 0.014181546764655223, + 1050: 0.01142561864844692, + 1100: 0.009645748406729058, + 1150: 0.008095538841361887, + 1200: 0.00930125739220302, + 1250: 0.010219900097605787, + 1300: 0.00832519951771258, + 1350: 0.00465062869610151, + 1400: 0.007234311305046794, + 1450: 0.0025836826089452834, + 1500: 0.002928173623471321, + 1550: 0.0012057185508411322, + 1600: 0.001837285410805535, + 1650: 0.0008612275363150944, + 1700: 0.001435379227191824, + 1750: 0.003617155652523397, + 1800: 0.002985588792558994, + 1850: 0.001492794396279497, + 1900: 0.0038468163288740884, + 1950: 0.0068898202905207555, + 2000: 0.007463971981397486, + 2050: 0.012631337199288053, + 2100: 0.02497559855313774, + 2150: 0.015904001837285412, + 2200: 0.023540219325945914, + 2250: 0.035138083481655855, + 2300: 0.04449675604294655, + 2350: 0.04449675604294655, + 2400: 0.024114371016822643, + 2450: 0.015329850146408681, + 2500: 0.019865648504334844, + 2550: 0.023023482804156857, + 2600: 0.021243612562438997, + 2650: 0.016592983866337487, + 2700: 0.026698053625767926, + 2750: 0.027099959809381638, + 2800: 0.0155020956536717, + 2850: 0.01297582821381409, + 2900: 0.02939656657288856, + 2950: 0.0155020956536717, + 3000: 0.010334730435781134, + 3050: 0.008956766377676983, + 3100: 0.0057989320778549696, + 3150: 0.010219900097605787, + 3200: 0.009932824252167422, + 3250: 0.008440029855887926, + 3300: 0.004822874203364529, + 3350: 0.011195957972096228, + 3400: 0.007980708503186542, + 3450: 0.005052534879715221, + 3500: 0.002985588792558994, + 3550: 0.001492794396279497, + 3600: 0.002755928116208302, + 3650: 0.003617155652523397, + 3700: 0.0021243612562438998, + 3750: 0.0022391915944192458, + 3800: 0.004306137681575472, + 3850: 0.0032726646379973587, + 3900: 0.001779870241717862, + 3950: 0.001607624734454843, + 4000: 0.0009760578744904404, + 4050: 0.0013205488890164782, + 4100: 0.002870758454383648, + 4150: 0.0035023253143480508, + 4200: 0.006315668599644026, + 4250: 0.0042487225124877995, + 4300: 0.006258253430556353, + 4350: 0.00987540908307975, + 4400: 0.010794051788482518, + 4450: 0.010564391112131826, + 4500: 0.012631337199288053, + 4550: 0.010506975943044151, + 4600: 0.005109950048802893, + 4650: 0.002755928116208302, + 4700: 0.0044783831888384916, + 4750: 0.0032726646379973587, + 4800: 0.0010908882126657864, + 4850: 0.0022391915944192458, + 4900: 0.001492794396279497, + 4950: 0, + }, + 2350: { + 0: 0, + 50: 0.0015064562410329987, + 100: 0.008895265423242468, + 150: 0.010401721664275465, + 200: 0.02496413199426112, + 250: 0.015208034433285509, + 300: 0.0296987087517934, + 350: 0.025538020086083215, + 400: 0.01685796269727403, + 450: 0.013988522238163558, + 500: 0.018938307030129126, + 550: 0.017862266857962696, + 600: 0.021305595408895265, + 650: 0.026829268292682926, + 700: 0.018579626972740317, + 750: 0.013414634146341463, + 800: 0.009110473457675754, + 850: 0.006312769010043041, + 900: 0.006743185078909613, + 950: 0.004734576757532282, + 1000: 0.008034433285509325, + 1050: 0.003658536585365854, + 1100: 0.0077474892395982785, + 1150: 0.006743185078909613, + 1200: 0.004088952654232425, + 1250: 0.006527977044476327, + 1300: 0.007532281205164993, + 1350: 0.004878048780487805, + 1400: 0.004878048780487805, + 1450: 0.004088952654232425, + 1500: 0.001362984218077475, + 1550: 0.001291248206599713, + 1600: 0.0022955523672883787, + 1650: 0.002367288378766141, + 1700: 0.001362984218077475, + 1750: 0.0032281205164992827, + 1800: 0.007317073170731708, + 1850: 0.007101865136298422, + 1900: 0.00860832137733142, + 1950: 0.007819225251076041, + 2000: 0.007245337159253945, + 2050: 0.023242467718794835, + 2100: 0.01592539454806313, + 2150: 0.02187948350071736, + 2200: 0.01671449067431851, + 2250: 0.020014347202295554, + 2300: 0.020875179340028693, + 2350: 0.02109038737446198, + 2400: 0.01800573888091822, + 2450: 0.020875179340028693, + 2500: 0.021664275466284074, + 2550: 0.019583931133428982, + 2600: 0.012338593974175036, + 2650: 0.010043041606886656, + 2700: 0.01291248206599713, + 2750: 0.020516499282639884, + 2800: 0.021233859397417502, + 2850: 0.018292682926829267, + 2900: 0.017360114777618365, + 2950: 0.015853658536585366, + 3000: 0.013558106169296986, + 3050: 0.014921090387374462, + 3100: 0.010688665710186514, + 3150: 0.007245337159253945, + 3200: 0.006886657101865136, + 3250: 0.0058823529411764705, + 3300: 0.005380200860832138, + 3350: 0.007604017216642754, + 3400: 0.004806312769010043, + 3450: 0.006886657101865136, + 3500: 0.0037302725968436155, + 3550: 0.0020803443328550933, + 3600: 0.0027977044476327115, + 3650: 0.00351506456241033, + 3700: 0.0024390243902439024, + 3750: 0.0020803443328550933, + 3800: 0.004232424677187948, + 3850: 0.005595408895265423, + 3900: 0.0030129124820659973, + 3950: 0.008321377331420373, + 4000: 0.006743185078909613, + 4050: 0.005523672883787661, + 4100: 0.006169296987087518, + 4150: 0.00853658536585366, + 4200: 0.008464849354375897, + 4250: 0.00817790530846485, + 4300: 0.005164992826398852, + 4350: 0.008751793400286943, + 4400: 0.008751793400286943, + 4450: 0.015781922525107604, + 4500: 0.01054519368723099, + 4550: 0.004519368723098996, + 4600: 0.003945480631276901, + 4650: 0.0054519368723099, + 4700: 0.005738880918220947, + 4750: 0.006743185078909613, + 4800: 0.0031563845050215206, + 4850: 0.0032281205164992827, + 4900: 0.0054519368723099, + 4950: 0, + }, + 2400: { + 0: 0, + 50: 0.00006906554320049727, + 100: 0.0006906554320049727, + 150: 0.0017266385800124317, + 200: 0.010152634850473099, + 250: 0.008080668554458182, + 300: 0.0037986048760273497, + 350: 0.007459078665653705, + 400: 0.011948338973686029, + 450: 0.013744043096898957, + 500: 0.006561226604047241, + 550: 0.005041784653636301, + 600: 0.004143932592029836, + 650: 0.0018647696664134262, + 700: 0.003384211616824366, + 750: 0.00683748877684923, + 800: 0.008495061813661164, + 850: 0.0034532771600248634, + 900: 0.0024863595552179017, + 950: 0.0019338352096139235, + 1000: 0.0020029007528144208, + 1050: 0.0002071966296014918, + 1100: 0.00034532771600248634, + 1150: 0.00027626217280198907, + 1200: 0.0006215898888044754, + 1250: 0.0004143932592029836, + 1300: 0.0002071966296014918, + 1350: 0.0004834588024034809, + 1400: 0.0006906554320049727, + 1450: 0.0009669176048069618, + 1500: 0.00034532771600248634, + 1550: 0.0008287865184059672, + 1600: 0.0005525243456039781, + 1650: 0.00034532771600248634, + 1700: 0.0002071966296014918, + 1750: 0.00013813108640099454, + 1800: 0.00013813108640099454, + 1850: 0.00034532771600248634, + 1900: 0.00013813108640099454, + 1950: 0.0005525243456039781, + 2000: 0.0020029007528144208, + 2050: 0.0051799157400372955, + 2100: 0.016644795911319843, + 2150: 0.010014503764072105, + 2200: 0.01650666482491885, + 2250: 0.015816009392913874, + 2300: 0.014849091788106913, + 2350: 0.007735340838455694, + 2400: 0.6037709786587472, + 2450: 0.006768423233648732, + 2500: 0.0075972097520546995, + 2550: 0.008495061813661164, + 2600: 0.008909455072864149, + 2650: 0.008495061813661164, + 2700: 0.005387112369638787, + 2750: 0.00835693072726017, + 2800: 0.008218799640859175, + 2850: 0.004627391394433317, + 2900: 0.00455832585123282, + 2950: 0.012224601146488018, + 3000: 0.00987637267767111, + 3050: 0.006423095517646246, + 3100: 0.004351129221631328, + 3150: 0.014849091788106913, + 3200: 0.006906554320049727, + 3250: 0.0017266385800124317, + 3300: 0.002624490641618896, + 3350: 0.0008978520616064645, + 3400: 0.0011050486912079563, + 3450: 0.003107949444022377, + 3500: 0.005248981283237792, + 3550: 0.007044685406450721, + 3600: 0.0037295393328268525, + 3650: 0.0018647696664134262, + 3700: 0.002071966296014918, + 3750: 0.0029698183576213825, + 3800: 0.001795704123212929, + 3850: 0.0012431797776089508, + 3900: 0.0006906554320049727, + 3950: 0.0008287865184059672, + 4000: 0.0017266385800124317, + 4050: 0.0015885074936114372, + 4100: 0.0014503764072104426, + 4150: 0.0019338352096139235, + 4200: 0.0016575730368119344, + 4250: 0.004212998135230334, + 4300: 0.00227916292561641, + 4350: 0.002348228468816907, + 4400: 0.006354029974445749, + 4450: 0.001312245320809448, + 4500: 0.0005525243456039781, + 4550: 0.0014503764072104426, + 4600: 0.001035983148007459, + 4650: 0.0012431797776089508, + 4700: 0.0004834588024034809, + 4750: 0.0008978520616064645, + 4800: 0.00075972097520547, + 4850: 0.00075972097520547, + 4900: 0.00075972097520547, + 4950: 0, + }, + 2450: { + 0: 0.0008629782337712149, + 50: 0.017930769968357466, + 100: 0.011602262920701888, + 150: 0.007383258222264839, + 200: 0.010931057627768722, + 250: 0.01630069997123406, + 300: 0.01141048997986384, + 350: 0.017163678205005275, + 400: 0.02224566113721354, + 450: 0.039601112283056863, + 500: 0.02598523348355547, + 550: 0.01831431585003356, + 600: 0.010355738805254578, + 650: 0.010259852334835555, + 700: 0.009684533512321411, + 750: 0.01236935468405408, + 800: 0.00987630645315946, + 850: 0.011506376450282865, + 900: 0.008246236456036053, + 950: 0.005753188225141433, + 1000: 0.006999712340588743, + 1050: 0.008342122926455078, + 1100: 0.004986096461789241, + 1150: 0.006999712340588743, + 1200: 0.010068079393997507, + 1250: 0.009588647041902388, + 1300: 0.006999712340588743, + 1350: 0.0018218429379614537, + 1400: 0.0014382970562853582, + 1450: 0.0005753188225141433, + 1500: 0.0003835458816760955, + 1550: 0.0005753188225141433, + 1600: 0.00009588647041902388, + 1650: 0.0004794323520951194, + 1700: 0.007191485281426791, + 1750: 0.0011506376450282866, + 1800: 0.0004794323520951194, + 1850: 0.018218429379614536, + 1900: 0.0009588647041902388, + 1950: 0.005657301754722409, + 2000: 0.007958577044778982, + 2050: 0.010259852334835555, + 2100: 0.021095023492185252, + 2150: 0.02157445584428037, + 2200: 0.02675232524690766, + 2250: 0.02665643877648864, + 2300: 0.022629207018889635, + 2350: 0.02099913702176623, + 2400: 0.04132706875059929, + 2450: 0.01754722408668137, + 2500: 0.01332821938824432, + 2550: 0.014382970562853582, + 2600: 0.015821267619138938, + 2650: 0.012848787036149199, + 2700: 0.013903538210758463, + 2750: 0.01735545114584332, + 2800: 0.01802665643877649, + 2850: 0.018122542909195512, + 2900: 0.010835171157349699, + 2950: 0.01112283056860677, + 3000: 0.010068079393997507, + 3050: 0.01265701409531115, + 3100: 0.012465241154473105, + 3150: 0.006712052929331671, + 3200: 0.009492760571483363, + 3250: 0.007191485281426791, + 3300: 0.012081695272797009, + 3350: 0.0036436858759229074, + 3400: 0.0018218429379614537, + 3450: 0.0026848211717326684, + 3500: 0.0043148911688560745, + 3550: 0.0027807076421516924, + 3600: 0.0018218429379614537, + 3650: 0.0028765941125707163, + 3700: 0.0032601399942468116, + 3750: 0.003931345287179979, + 3800: 0.0017259564675424297, + 3850: 0.0019177294083804776, + 3900: 0.004027231757599003, + 3950: 0.0035477994055038834, + 4000: 0.007191485281426791, + 4050: 0.010739284686930674, + 4100: 0.0076709176335219105, + 4150: 0.008725668808131172, + 4200: 0.006520279988493623, + 4250: 0.005657301754722409, + 4300: 0.005369642343465337, + 4350: 0.006616166458912647, + 4400: 0.013424105858663342, + 4450: 0.01265701409531115, + 4500: 0.009972192923578482, + 4550: 0.008725668808131172, + 4600: 0.004986096461789241, + 4650: 0.006328507047655575, + 4700: 0.009013328219388245, + 4750: 0.007479144692683863, + 4800: 0.006328507047655575, + 4850: 0.013040559976987246, + 4900: 0.007191485281426791, + 4950: 0, + }, + 2500: { + 0: 0, + 50: 0.005211726384364821, + 100: 0.005211726384364821, + 150: 0.016395222584147665, + 200: 0.018349619978284472, + 250: 0.025407166123778503, + 300: 0.021498371335504887, + 350: 0.023344191096634093, + 400: 0.02214983713355049, + 450: 0.012920738327904451, + 500: 0.014223669923995657, + 550: 0.00988056460369164, + 600: 0.011292073832790446, + 650: 0.016069489685124866, + 700: 0.019326818675352877, + 750: 0.008686210640608035, + 800: 0.01476655808903366, + 850: 0.014549402823018458, + 900: 0.007274701411509229, + 950: 0.005971769815418024, + 1000: 0.00510314875135722, + 1050: 0.005863192182410423, + 1100: 0.002062975027144408, + 1150: 0.005863192182410423, + 1200: 0.00249728555917481, + 1250: 0.001737242128121607, + 1300: 0.008143322475570033, + 1350: 0.010097719869706841, + 1400: 0.008143322475570033, + 1450: 0.013572204125950055, + 1500: 0.008794788273615635, + 1550: 0.005537459283387622, + 1600: 0.00738327904451683, + 1650: 0.005863192182410423, + 1700: 0.0029315960912052116, + 1750: 0.00249728555917481, + 1800: 0.002062975027144408, + 1850: 0.00249728555917481, + 1900: 0.0016286644951140066, + 1950: 0.0033659066232356134, + 2000: 0.0016286644951140066, + 2050: 0.004777415852334419, + 2100: 0.006406080347448426, + 2150: 0.00738327904451683, + 2200: 0.016938110749185668, + 2250: 0.02290988056460369, + 2300: 0.016286644951140065, + 2350: 0.011834961997828448, + 2400: 0.010966340933767645, + 2450: 0.01965255157437568, + 2500: 0.012920738327904451, + 2550: 0.012812160694896851, + 2600: 0.019218241042345277, + 2650: 0.03496199782844734, + 2700: 0.013137893593919652, + 2750: 0.03279044516829533, + 2800: 0.026058631921824105, + 2850: 0.021281216069489683, + 2900: 0.026492942453854505, + 2950: 0.029424538545059716, + 3000: 0.01509229098805646, + 3050: 0.010966340933767645, + 3100: 0.008469055374592834, + 3150: 0.01530944625407166, + 3200: 0.02258414766558089, + 3250: 0.01476655808903366, + 3300: 0.011074918566775244, + 3350: 0.00998914223669924, + 3400: 0.009771986970684038, + 3450: 0.008903365906623236, + 3500: 0.006406080347448426, + 3550: 0.00760043431053203, + 3600: 0.005537459283387622, + 3650: 0.0068403908794788275, + 3700: 0.006406080347448426, + 3750: 0.0071661237785016286, + 3800: 0.005537459283387622, + 3850: 0.004125950054288816, + 3900: 0.003800217155266015, + 3950: 0.00499457111834962, + 4000: 0.0035830618892508143, + 4050: 0.00510314875135722, + 4100: 0.003800217155266015, + 4150: 0.004451682953311618, + 4200: 0.007274701411509229, + 4250: 0.004125950054288816, + 4300: 0.004668838219326819, + 4350: 0.00760043431053203, + 4400: 0.0040173724212812165, + 4450: 0.006948968512486428, + 4500: 0.006188925081433224, + 4550: 0.004343105320304018, + 4600: 0.005211726384364821, + 4650: 0.005646036916395223, + 4700: 0.0035830618892508143, + 4750: 0.004234527687296417, + 4800: 0.0016286644951140066, + 4850: 0.001954397394136808, + 4900: 0.004234527687296417, + 4950: 0, + }, + 2550: { + 0: 0, + 50: 0.005146736749890495, + 100: 0.010402978537012702, + 150: 0.009088918090232151, + 200: 0.01741130091984231, + 250: 0.019163381515549714, + 300: 0.009526938239159002, + 350: 0.007993867717915024, + 400: 0.018396846254927726, + 450: 0.023981603153745073, + 500: 0.019491896627244855, + 550: 0.01029347349978099, + 600: 0.007117827420061323, + 650: 0.013688129653964083, + 700: 0.00492772667542707, + 750: 0.0042706964520367935, + 800: 0.00788436268068331, + 850: 0.003942181340341655, + 900: 0.003504161191414805, + 950: 0.015111695137976347, + 1000: 0.0086508979413053, + 1050: 0.011279018834866403, + 1100: 0.011060008760402978, + 1150: 0.007336837494524748, + 1200: 0.0056942619360490585, + 1250: 0.003832676303109943, + 1300: 0.004380201489268506, + 1350: 0.0015330705212439773, + 1400: 0.0017520805957074025, + 1450: 0.0018615856329391152, + 1500: 0.0045992115637319315, + 1550: 0.0022996057818659658, + 1600: 0.0022996057818659658, + 1650: 0.0022996057818659658, + 1700: 0.002956636005256242, + 1750: 0.0004380201489268506, + 1800: 0.0020805957074025404, + 1850: 0.006570302233902759, + 1900: 0.003942181340341655, + 1950: 0.002190100744634253, + 2000: 0.0037231712658782304, + 2050: 0.010512483574244415, + 2100: 0.010074463425317565, + 2150: 0.016097240473061762, + 2200: 0.01806833114323259, + 2250: 0.04938677179150241, + 2300: 0.04719667104686816, + 2350: 0.028252299605781867, + 2400: 0.01445466491458607, + 2450: 0.012702584318878668, + 2500: 0.013469119579500657, + 2550: 0.012593079281646956, + 2600: 0.012593079281646956, + 2650: 0.010950503723171266, + 2700: 0.020367936925098553, + 2750: 0.04424003504161191, + 2800: 0.021572492334647395, + 2850: 0.022777047744196234, + 2900: 0.02551467367498905, + 2950: 0.03777923784494087, + 3000: 0.01445466491458607, + 3050: 0.01741130091984231, + 3100: 0.011717038983793254, + 3150: 0.01073149364870784, + 3200: 0.011279018834866403, + 3250: 0.007336837494524748, + 3300: 0.008869908015768726, + 3350: 0.0020805957074025404, + 3400: 0.002518615856329391, + 3450: 0.004161191414805081, + 3500: 0.003175646079719667, + 3550: 0.0028471309680245293, + 3600: 0.005146736749890495, + 3650: 0.006679807271134472, + 3700: 0.0064607971966710465, + 3750: 0.0030661410424879547, + 3800: 0.0036136662286465177, + 3850: 0.003942181340341655, + 3900: 0.005037231712658782, + 3950: 0.0045992115637319315, + 4000: 0.004051686377573368, + 4050: 0.00788436268068331, + 4100: 0.011169513797634692, + 4150: 0.007227332457293035, + 4200: 0.007993867717915024, + 4250: 0.011279018834866403, + 4300: 0.0075558475689881735, + 4350: 0.008322382829610162, + 4400: 0.0027376259307928166, + 4450: 0.0037231712658782304, + 4500: 0.009745948313622427, + 4550: 0.006241787122207621, + 4600: 0.009417433201927288, + 4650: 0.010621988611476127, + 4700: 0.006789312308366185, + 4750: 0.002628120893561104, + 4800: 0.006679807271134472, + 4850: 0.007117827420061323, + 4900: 0.002956636005256242, + 4950: 0, + }, + 2600: { + 0: 0, + 50: 0, + 100: 0.0034883720930232558, + 150: 0.017906976744186048, + 200: 0.013255813953488372, + 250: 0.01953488372093023, + 300: 0.020348837209302327, + 350: 0.014069767441860465, + 400: 0.012093023255813953, + 450: 0.010697674418604652, + 500: 0.014767441860465117, + 550: 0.012558139534883722, + 600: 0.011279069767441861, + 650: 0.023488372093023256, + 700: 0.01697674418604651, + 750: 0.022093023255813953, + 800: 0.01383720930232558, + 850: 0.009534883720930233, + 900: 0.005232558139534884, + 950: 0.006627906976744186, + 1000: 0.006744186046511628, + 1050: 0.007674418604651163, + 1100: 0.0060465116279069765, + 1150: 0.0034883720930232558, + 1200: 0.0060465116279069765, + 1250: 0.004651162790697674, + 1300: 0.005348837209302326, + 1350: 0.003953488372093023, + 1400: 0.0030232558139534882, + 1450: 0.0015116279069767441, + 1500: 0.0022093023255813954, + 1550: 0.0022093023255813954, + 1600: 0.0012790697674418604, + 1650: 0.003372093023255814, + 1700: 0.0022093023255813954, + 1750: 0.004534883720930232, + 1800: 0.0031395348837209304, + 1850: 0.0069767441860465115, + 1900: 0.0036046511627906975, + 1950: 0.0074418604651162795, + 2000: 0.0037209302325581397, + 2050: 0.0074418604651162795, + 2100: 0.008837209302325582, + 2150: 0.01058139534883721, + 2200: 0.010465116279069767, + 2250: 0.017325581395348837, + 2300: 0.022790697674418603, + 2350: 0.022209302325581395, + 2400: 0.012906976744186047, + 2450: 0.006162790697674419, + 2500: 0.012325581395348837, + 2550: 0.017790697674418605, + 2600: 0.016511627906976745, + 2650: 0.016627906976744187, + 2700: 0.010930232558139534, + 2750: 0.018837209302325582, + 2800: 0.028488372093023257, + 2850: 0.027906976744186046, + 2900: 0.03337209302325581, + 2950: 0.022209302325581395, + 3000: 0.016162790697674418, + 3050: 0.011511627906976744, + 3100: 0.014883720930232559, + 3150: 0.01383720930232558, + 3200: 0.025813953488372093, + 3250: 0.019302325581395347, + 3300: 0.037674418604651164, + 3350: 0.019069767441860466, + 3400: 0.01058139534883721, + 3450: 0.008372093023255815, + 3500: 0.009302325581395349, + 3550: 0.003372093023255814, + 3600: 0.0029069767441860465, + 3650: 0.0037209302325581397, + 3700: 0.01383720930232558, + 3750: 0.007790697674418604, + 3800: 0.007093023255813954, + 3850: 0.006279069767441861, + 3900: 0.0030232558139534882, + 3950: 0.0031395348837209304, + 4000: 0.0012790697674418604, + 4050: 0.0034883720930232558, + 4100: 0.0032558139534883722, + 4150: 0.004186046511627907, + 4200: 0.003953488372093023, + 4250: 0.010930232558139534, + 4300: 0.007093023255813954, + 4350: 0.0074418604651162795, + 4400: 0.005348837209302326, + 4450: 0.005348837209302326, + 4500: 0.008023255813953488, + 4550: 0.010813953488372092, + 4600: 0.008023255813953488, + 4650: 0.0027906976744186047, + 4700: 0.002325581395348837, + 4750: 0.0030232558139534882, + 4800: 0.004651162790697674, + 4850: 0.0030232558139534882, + 4900: 0.006627906976744186, + 4950: 0, + }, + 2650: { + 0: 0, + 50: 0.00012616704516780217, + 100: 0.0006308352258390108, + 150: 0.0012616704516780217, + 200: 0.008453192026242746, + 250: 0.029270754478930103, + 300: 0.020817562452687358, + 350: 0.011985869290941207, + 400: 0.020186727226848347, + 450: 0.01703255109765329, + 500: 0.017537219278324502, + 550: 0.016023214736310874, + 600: 0.015013878374968459, + 650: 0.014635377239465052, + 700: 0.01450921019429725, + 750: 0.009967196568256372, + 800: 0.010598031794095382, + 850: 0.011355034065102196, + 900: 0.006056018168054504, + 950: 0.009714862477920767, + 1000: 0.0074438556649003285, + 1050: 0.004415846580873076, + 1100: 0.0027756749936916477, + 1150: 0.005929851122886702, + 1200: 0.010724198839263184, + 1250: 0.0023971738581882412, + 1300: 0.0012616704516780217, + 1350: 0.0025233409033560434, + 1400: 0.0027756749936916477, + 1450: 0.0026495079485238456, + 1500: 0.0040373454453696694, + 1550: 0.003785011355034065, + 1600: 0.0031541761291950542, + 1650: 0.003658844309866263, + 1700: 0.001514004542013626, + 1750: 0.003785011355034065, + 1800: 0.00870552611657835, + 1850: 0.004668180671208681, + 1900: 0.005677517032551098, + 1950: 0.0017663386323492304, + 2000: 0.0063083522583901085, + 2050: 0.008453192026242746, + 2100: 0.02435023971738582, + 2150: 0.013247539742619227, + 2200: 0.019555892001009337, + 2250: 0.036336109008327025, + 2300: 0.03078475902094373, + 2350: 0.026368912440070655, + 2400: 0.042644461266717136, + 2450: 0.02447640676255362, + 2500: 0.019051223820338126, + 2550: 0.017663386323492306, + 2600: 0.018925056775170326, + 2650: 0.0116073681554378, + 2700: 0.015897047691143074, + 2750: 0.015897047691143074, + 2800: 0.012616704516780217, + 2850: 0.00820085793590714, + 2900: 0.00757002271006813, + 2950: 0.010219530658591975, + 3000: 0.012364370426444614, + 3050: 0.013247539742619227, + 3100: 0.006560686348725713, + 3150: 0.004163512490537472, + 3200: 0.008831693161746153, + 3250: 0.013373706787787031, + 3300: 0.00870552611657835, + 3350: 0.018798889730002523, + 3400: 0.0035326772646984608, + 3450: 0.0032803431743628564, + 3500: 0.003658844309866263, + 3550: 0.0063083522583901085, + 3600: 0.004415846580873076, + 3650: 0.0035326772646984608, + 3700: 0.0035326772646984608, + 3750: 0.004289679535705274, + 3800: 0.005299015897047691, + 3850: 0.003028009084027252, + 3900: 0.005046681806712087, + 3950: 0.0070653545293969215, + 4000: 0.013499873832954833, + 4050: 0.007317688619732526, + 4100: 0.008074690890739339, + 4150: 0.012364370426444614, + 4200: 0.010345697703759779, + 4250: 0.007191521574564724, + 4300: 0.005172848851879889, + 4350: 0.008327024981074944, + 4400: 0.009462528387585163, + 4450: 0.012995205652283624, + 4500: 0.00820085793590714, + 4550: 0.011859702245773405, + 4600: 0.01791572041382791, + 4650: 0.01097653292959879, + 4700: 0.005677517032551098, + 4750: 0.005677517032551098, + 4800: 0.0040373454453696694, + 4850: 0.004920514761544285, + 4900: 0.007948523845571537, + 4950: 0, + }, + 2700: { + 0: 0, + 50: 0, + 100: 0.0053912081835775505, + 150: 0.007050041470832181, + 200: 0.009814763616256566, + 250: 0.01285595797622339, + 300: 0.030135471385125796, + 350: 0.020597179983411668, + 400: 0.022670721592479955, + 450: 0.013685374619850706, + 500: 0.015897152336190212, + 550: 0.010505944152612662, + 600: 0.009676527508985348, + 650: 0.015620680121647775, + 700: 0.017141277301631185, + 750: 0.014100082941664363, + 800: 0.013547138512579486, + 850: 0.011611833010782417, + 900: 0.008570638650815593, + 950: 0.0049764998617638926, + 1000: 0.0017970693945258502, + 1050: 0.0026264860381531654, + 1100: 0.0024882499308819463, + 1150: 0.0031794304672380425, + 1200: 0.006358860934476085, + 1250: 0.008847110865358032, + 1300: 0.005667680398119989, + 1350: 0.004700027647221454, + 1400: 0.002350013823610727, + 1450: 0.0006911805363560963, + 1500: 0.0013823610727121925, + 1550: 0.001105888858169754, + 1600: 0.003455902681780481, + 1650: 0.002211777716339508, + 1700: 0.0019353055017970694, + 1750: 0.002211777716339508, + 1800: 0.001105888858169754, + 1850: 0.0008294166436273154, + 1900: 0.000552944429084877, + 1950: 0, + 2000: 0.0019353055017970694, + 2050: 0.007464749792645839, + 2100: 0.011888305225324854, + 2150: 0.01631186065800387, + 2200: 0.017141277301631185, + 2250: 0.028476638097871165, + 2300: 0.026264860381531654, + 2350: 0.02750898534697263, + 2400: 0.023500138236107273, + 2450: 0.014238319048935582, + 2500: 0.013547138512579486, + 2550: 0.013823610727121923, + 2600: 0.015205971799834116, + 2650: 0.029997235277854577, + 2700: 0.02571191595244678, + 2750: 0.03497373513961847, + 2800: 0.01824716615980094, + 2850: 0.013823610727121923, + 2900: 0.0062206248272048655, + 2950: 0.013270666298037047, + 3000: 0.023361902128836053, + 3050: 0.019353055017970695, + 3100: 0.004423555432679016, + 3150: 0.01257948576168095, + 3200: 0.005667680398119989, + 3250: 0.008017694221730716, + 3300: 0.017832457837987283, + 3350: 0.01465302737074924, + 3400: 0.011750069118053636, + 3450: 0.015482444014376555, + 3500: 0.013961846834393143, + 3550: 0.00732651368537462, + 3600: 0.004008847110865358, + 3650: 0.004285319325407796, + 3700: 0.005667680398119989, + 3750: 0.011473596903511197, + 3800: 0.008155930329001936, + 3850: 0.004147083218136578, + 3900: 0.0049764998617638926, + 3950: 0.004561791539950235, + 4000: 0.0033176665745092617, + 4050: 0.004008847110865358, + 4100: 0.005114735969035112, + 4150: 0.005805916505391208, + 4200: 0.004561791539950235, + 4250: 0.008708874758086812, + 4300: 0.007879458114459496, + 4350: 0.01285595797622339, + 4400: 0.015067735692562898, + 4450: 0.011750069118053636, + 4500: 0.007188277578103401, + 4550: 0.013685374619850706, + 4600: 0.01299419408349461, + 4650: 0.004838263754492674, + 4700: 0.0024882499308819463, + 4750: 0.004700027647221454, + 4800: 0.0035941387890517005, + 4850: 0.006497097041747305, + 4900: 0.006358860934476085, + 4950: 0, + }, + 2750: { + 0: 0, + 50: 0, + 100: 0.015143603133159269, + 150: 0.0024369016536118365, + 200: 0.0012184508268059183, + 250: 0.004525674499564839, + 300: 0.005918189730200174, + 350: 0.006614447345517842, + 400: 0.009225413402959095, + 450: 0.006092254134029591, + 500: 0.014447345517841602, + 550: 0.02402088772845953, + 600: 0.013402959094865101, + 650: 0.005395996518711923, + 700: 0.005744125326370757, + 750: 0.004873803307223673, + 800: 0.010269799825935596, + 850: 0.006962576153176675, + 900: 0.007832898172323759, + 950: 0.0026109660574412533, + 1000: 0.0017406440382941688, + 1050: 0.004525674499564839, + 1100: 0.005918189730200174, + 1150: 0.007832898172323759, + 1200: 0.005918189730200174, + 1250: 0.004525674499564839, + 1300: 0.00278503046127067, + 1350: 0.008181026979982594, + 1400: 0.006614447345517842, + 1450: 0.01009573542210618, + 1500: 0.012010443864229765, + 1550: 0.010966057441253264, + 1600: 0.016536118363794605, + 1650: 0.01845082680591819, + 1700: 0.025239338555265448, + 1750: 0.010617928633594429, + 1800: 0.004177545691906005, + 1850: 0.0020887728459530026, + 1900: 0.0036553524804177544, + 1950: 0.004003481288076588, + 2000: 0.00835509138381201, + 2050: 0.0022628372497824193, + 2100: 0.00504786771105309, + 2150: 0.006962576153176675, + 2200: 0.0020887728459530026, + 2250: 0.019669277632724108, + 2300: 0.029939077458659705, + 2350: 0.011836379460400347, + 2400: 0.017754569190600523, + 2450: 0.006440382941688425, + 2500: 0.006092254134029591, + 2550: 0.019495213228894692, + 2600: 0.005221932114882507, + 2650: 0.006614447345517842, + 2700: 0.005918189730200174, + 2750: 0.003307223672758921, + 2800: 0.00278503046127067, + 2850: 0.04473455178416014, + 2900: 0.053611836379460404, + 2950: 0.04804177545691906, + 3000: 0.014447345517841602, + 3050: 0.02628372497824195, + 3100: 0.019147084421235857, + 3150: 0.012706701479547432, + 3200: 0.014969538729329853, + 3250: 0.016884247171453436, + 3300: 0.02228024369016536, + 3350: 0.024891209747606613, + 3400: 0.014099216710182768, + 3450: 0.009225413402959095, + 3500: 0.006266318537859008, + 3550: 0.008006962576153177, + 3600: 0.01723237597911227, + 3650: 0.007832898172323759, + 3700: 0.004525674499564839, + 3750: 0.006092254134029591, + 3800: 0.022976501305483028, + 3850: 0.0034812880765883376, + 3900: 0.008529155787641428, + 3950: 0.014795474325500435, + 4000: 0.007658833768494343, + 4050: 0.006092254134029591, + 4100: 0.0026109660574412533, + 4150: 0.0036553524804177544, + 4200: 0.008703220191470844, + 4250: 0.005918189730200174, + 4300: 0.004873803307223673, + 4350: 0.003307223672758921, + 4400: 0.0008703220191470844, + 4450: 0.005395996518711923, + 4500: 0.003133159268929504, + 4550: 0.00278503046127067, + 4600: 0.00278503046127067, + 4650: 0.007136640557006092, + 4700: 0.004699738903394256, + 4750: 0.012010443864229765, + 4800: 0.014969538729329853, + 4850: 0.007310704960835509, + 4900: 0.0026109660574412533, + 4950: 0, + }, + 2800: { + 0: 0, + 50: 0, + 100: 0, + 150: 0.00033898305084745765, + 200: 0.002033898305084746, + 250: 0.01152542372881356, + 300: 0.011864406779661017, + 350: 0.006101694915254237, + 400: 0.013898305084745762, + 450: 0.006779661016949152, + 500: 0.029491525423728814, + 550: 0.018983050847457626, + 600: 0.013220338983050847, + 650: 0.007796610169491526, + 700: 0.013898305084745762, + 750: 0.015932203389830507, + 800: 0.009491525423728813, + 850: 0.003728813559322034, + 900: 0.004067796610169492, + 950: 0.002033898305084746, + 1000: 0.0013559322033898306, + 1050: 0.001694915254237288, + 1100: 0.0013559322033898306, + 1150: 0.0013559322033898306, + 1200: 0.001694915254237288, + 1250: 0.0030508474576271187, + 1300: 0.0023728813559322033, + 1350: 0.002033898305084746, + 1400: 0.00033898305084745765, + 1450: 0, + 1500: 0.00033898305084745765, + 1550: 0, + 1600: 0, + 1650: 0.00033898305084745765, + 1700: 0.00033898305084745765, + 1750: 0.0006779661016949153, + 1800: 0.001694915254237288, + 1850: 0.017966101694915255, + 1900: 0.08915254237288135, + 1950: 0.023728813559322035, + 2000: 0.013898305084745762, + 2050: 0.014915254237288136, + 2100: 0, + 2150: 0.002711864406779661, + 2200: 0.002711864406779661, + 2250: 0.0023728813559322033, + 2300: 0.010169491525423728, + 2350: 0.009491525423728813, + 2400: 0.02406779661016949, + 2450: 0.02406779661016949, + 2500: 0.012542372881355932, + 2550: 0.04067796610169491, + 2600: 0.030847457627118643, + 2650: 0.01830508474576271, + 2700: 0.013898305084745762, + 2750: 0.056610169491525426, + 2800: 0.018983050847457626, + 2850: 0.08237288135593221, + 2900: 0.004406779661016949, + 2950: 0.013220338983050847, + 3000: 0.009152542372881356, + 3050: 0.015254237288135594, + 3100: 0.005423728813559322, + 3150: 0.005084745762711864, + 3200: 0.004406779661016949, + 3250: 0.003389830508474576, + 3300: 0.004406779661016949, + 3350: 0.006440677966101695, + 3400: 0.006440677966101695, + 3450: 0.0013559322033898306, + 3500: 0.0006779661016949153, + 3550: 0.0006779661016949153, + 3600: 0.02169491525423729, + 3650: 0.0023728813559322033, + 3700: 0.010847457627118645, + 3750: 0.007796610169491526, + 3800: 0.001016949152542373, + 3850: 0.004406779661016949, + 3900: 0.007457627118644068, + 3950: 0.01694915254237288, + 4000: 0.006440677966101695, + 4050: 0.00576271186440678, + 4100: 0.002711864406779661, + 4150: 0, + 4200: 0.022033898305084745, + 4250: 0.008813559322033898, + 4300: 0.0047457627118644066, + 4350: 0.00711864406779661, + 4400: 0.01152542372881356, + 4450: 0.031186440677966103, + 4500: 0.013898305084745762, + 4550: 0.00847457627118644, + 4600: 0.003389830508474576, + 4650: 0.005423728813559322, + 4700: 0.008135593220338983, + 4750: 0.004067796610169492, + 4800: 0.00033898305084745765, + 4850: 0.002033898305084746, + 4900: 0.001694915254237288, + 4950: 0, + }, + 2850: { + 0: 0.00021561017680034498, + 50: 0, + 100: 0.007761966364812419, + 150: 0.00043122035360068997, + 200: 0.016170763260025874, + 250: 0.007330746011211729, + 300: 0.020914187149633463, + 350: 0.03169469598965071, + 400: 0.01078050884001725, + 450: 0.005390254420008625, + 500: 0.011427339370418284, + 550: 0.007977576541612763, + 600: 0.009918068132815868, + 650: 0.013799051315222079, + 700: 0.02414833980163864, + 750: 0.00517464424320828, + 800: 0.009055627425614488, + 850: 0.008624407072013798, + 900: 0.009271237602414833, + 950: 0.008840017248814143, + 1000: 0.004096593359206554, + 1050: 0.002802932298404485, + 1100: 0.01207416990081932, + 1150: 0.01034928848641656, + 1200: 0.004096593359206554, + 1250: 0.00258732212160414, + 1300: 0.004959034066407934, + 1350: 0.0034497628288055198, + 1400: 0.0008624407072013799, + 1450: 0.00258732212160414, + 1500: 0.000646830530401035, + 1550: 0.0008624407072013799, + 1600: 0.0010780508840017248, + 1650: 0.008840017248814143, + 1700: 0.0019404915912031048, + 1750: 0.00301854247520483, + 1800: 0.0019404915912031048, + 1850: 0.0019404915912031048, + 1900: 0.00258732212160414, + 1950: 0.00258732212160414, + 2000: 0.0036653730056058647, + 2050: 0.002802932298404485, + 2100: 0.0021561017680034496, + 2150: 0.000646830530401035, + 2200: 0.0021561017680034496, + 2250: 0.0019404915912031048, + 2300: 0.01034928848641656, + 2350: 0.01250539025442001, + 2400: 0.016386373436826217, + 2450: 0.014877102199223804, + 2500: 0.023932729624838292, + 2550: 0.028029322984044848, + 2600: 0.032772746873652434, + 2650: 0.017680034497628287, + 2700: 0.011858559724018974, + 2750: 0.009271237602414833, + 2800: 0.032125916343251404, + 2850: 0.08279430789133248, + 2900: 0.058645968089693835, + 2950: 0.018326865028029323, + 3000: 0.007761966364812419, + 3050: 0.009486847779215178, + 3100: 0.020482966796032773, + 3150: 0.010133678309616215, + 3200: 0.0071151358344113845, + 3250: 0.005390254420008625, + 3300: 0.012721000431220354, + 3350: 0.0071151358344113845, + 3400: 0.002802932298404485, + 3450: 0.0071151358344113845, + 3500: 0.0038809831824062097, + 3550: 0.0071151358344113845, + 3600: 0.02371711944803795, + 3650: 0.004312203536006899, + 3700: 0.0017248814144027599, + 3750: 0.008624407072013798, + 3800: 0.014877102199223804, + 3850: 0.016817593790426907, + 3900: 0.0068995256576110395, + 3950: 0.0036653730056058647, + 4000: 0.0036653730056058647, + 4050: 0.004312203536006899, + 4100: 0.007546356188012074, + 4150: 0.004743423889607589, + 4200: 0.00560586459680897, + 4250: 0.00603708495040966, + 4300: 0.0068995256576110395, + 4350: 0.007330746011211729, + 4400: 0.021776627856834842, + 4450: 0.01121172919361794, + 4500: 0.015955153083225527, + 4550: 0.024363949978438982, + 4600: 0.015523932729624839, + 4650: 0.0038809831824062097, + 4700: 0.004096593359206554, + 4750: 0.004096593359206554, + 4800: 0.001509271237602415, + 4850: 0.0010780508840017248, + 4900: 0.0034497628288055198, + 4950: 0, + }, + 2900: { + 0: 0, + 50: 0, + 100: 0.002633679169992019, + 150: 0.004948124501197127, + 200: 0.012290502793296089, + 250: 0.002793296089385475, + 300: 0.008300079808459697, + 350: 0.006624102154828412, + 400: 0.005666400638467677, + 450: 0.008140462889066242, + 500: 0.0068635275339185954, + 550: 0.005985634477254589, + 600: 0.0041500399042298484, + 650: 0.004469273743016759, + 700: 0.003272146847565842, + 750: 0.0006384676775738228, + 800: 0.0009577015163607343, + 850: 0.0016759776536312849, + 900: 0.0005586592178770949, + 950: 0.002553870710295291, + 1000: 0.0009577015163607343, + 1050: 0.0015163607342378292, + 1100: 0.0003990422984836393, + 1150: 0.0006384676775738228, + 1200: 0.0011173184357541898, + 1250: 0.002713487629688747, + 1300: 0.003910614525139665, + 1350: 0.0016759776536312849, + 1400: 0.003591380686352753, + 1450: 0.0005586592178770949, + 1500: 0.0003990422984836393, + 1550: 0.0012769353551476455, + 1600: 0.00023942537909018357, + 1650: 0.0016759776536312849, + 1700: 0.0016759776536312849, + 1750: 0.0007182761372705507, + 1800: 0.00023942537909018357, + 1850: 0.0007980845969672786, + 1900: 0.0016759776536312849, + 1950: 0.0024740622505985636, + 2000: 0.0013567438148443735, + 2050: 0.0019952114924181963, + 2100: 0.0008778930566640064, + 2150: 0.0019154030327214685, + 2200: 0.0009577015163607343, + 2250: 0.0010375099760574621, + 2300: 0.0023144453312051077, + 2350: 0.002793296089385475, + 2400: 0.002154828411811652, + 2450: 0.0024740622505985636, + 2500: 0.0035115722266560257, + 2550: 0.002154828411811652, + 2600: 0.0012769353551476455, + 2650: 0.0034317637669592977, + 2700: 0.002873104549082203, + 2750: 0.0039904229848363925, + 2800: 0.0029529130087789304, + 2850: 0.00965682362330407, + 2900: 0.66951316839585, + 2950: 0.006544293695131684, + 3000: 0.007102952913008779, + 3050: 0.004868316041500399, + 3100: 0.006544293695131684, + 3150: 0.005027932960893855, + 3200: 0.009018355945730248, + 3250: 0.007422186751795691, + 3300: 0.005426975259377494, + 3350: 0.004708699122106944, + 3400: 0.0031923383878691143, + 3450: 0.0030327214684756584, + 3500: 0.003272146847565842, + 3550: 0.004309656823623304, + 3600: 0.0031125299281723863, + 3650: 0.0010375099760574621, + 3700: 0.003910614525139665, + 3750: 0.006145251396648044, + 3800: 0.0029529130087789304, + 3850: 0.0016759776536312849, + 3900: 0.0011971268954509178, + 3950: 0.0019952114924181963, + 4000: 0.0034317637669592977, + 4050: 0.004708699122106944, + 4100: 0.005666400638467677, + 4150: 0.002793296089385475, + 4200: 0.004549082202713488, + 4250: 0.005826017557861133, + 4300: 0.003910614525139665, + 4350: 0.002873104549082203, + 4400: 0.003750997605746209, + 4450: 0.004389465283320032, + 4500: 0.004469273743016759, + 4550: 0.011891460494812451, + 4600: 0.009577015163607342, + 4650: 0.0053471667996807665, + 4700: 0.0019154030327214685, + 4750: 0.0010375099760574621, + 4800: 0.0005586592178770949, + 4850: 0.0007980845969672786, + 4900: 0.0019952114924181963, + 4950: 0, + }, + 2950: { + 0: 0, + 50: 0, + 100: 0.0011312217194570137, + 150: 0.00641025641025641, + 200: 0.006221719457013574, + 250: 0.016025641025641024, + 300: 0.01753393665158371, + 350: 0.00471342383107089, + 400: 0.012066365007541479, + 450: 0.014894419306184013, + 500: 0.013763197586726998, + 550: 0.006033182503770739, + 600: 0.00904977375565611, + 650: 0.008672699849170438, + 700: 0.005467571644042232, + 750: 0.004147812971342383, + 800: 0.0024509803921568627, + 850: 0.0007541478129713424, + 900: 0.0020739064856711916, + 950: 0.0022624434389140274, + 1000: 0.006033182503770739, + 1050: 0.0030165912518853697, + 1100: 0.0030165912518853697, + 1150: 0.002828054298642534, + 1200: 0.007541478129713424, + 1250: 0.003770739064856712, + 1300: 0.0022624434389140274, + 1350: 0.0016968325791855204, + 1400: 0.004336349924585219, + 1450: 0.0011312217194570137, + 1500: 0.0011312217194570137, + 1550: 0, + 1600: 0.0013197586726998493, + 1650: 0.0022624434389140274, + 1700: 0.0016968325791855204, + 1750: 0.0003770739064856712, + 1800: 0.004901960784313725, + 1850: 0.0011312217194570137, + 1900: 0.000942684766214178, + 1950: 0.004901960784313725, + 2000: 0.004524886877828055, + 2050: 0.003205128205128205, + 2100: 0.00471342383107089, + 2150: 0.003770739064856712, + 2200: 0.01791101055806938, + 2250: 0.02733785822021116, + 2300: 0.01753393665158371, + 2350: 0.026018099547511313, + 2400: 0.029034690799396683, + 2450: 0.038461538461538464, + 2500: 0.033182503770739065, + 2550: 0.026018099547511313, + 2600: 0.01583710407239819, + 2650: 0.015648567119155354, + 2700: 0.014705882352941176, + 2750: 0.010935143288084464, + 2800: 0.01753393665158371, + 2850: 0.05542986425339366, + 2900: 0.03412518853695324, + 2950: 0.04732277526395173, + 3000: 0.06561085972850679, + 3050: 0.009992458521870286, + 3100: 0.0058446455505279035, + 3150: 0.012066365007541479, + 3200: 0.00471342383107089, + 3250: 0.027526395173453996, + 3300: 0.019230769230769232, + 3350: 0.006975867269984917, + 3400: 0.009238310708898944, + 3450: 0.006598793363499246, + 3500: 0.003205128205128205, + 3550: 0.0024509803921568627, + 3600: 0.000942684766214178, + 3650: 0.001885369532428356, + 3700: 0.0013197586726998493, + 3750: 0.0001885369532428356, + 3800: 0.0022624434389140274, + 3850: 0.0016968325791855204, + 3900: 0.0016968325791855204, + 3950: 0.0030165912518853697, + 4000: 0.0026395173453996985, + 4050: 0.003959276018099547, + 4100: 0.008672699849170438, + 4150: 0.010935143288084464, + 4200: 0.004524886877828055, + 4250: 0.007918552036199095, + 4300: 0.02356711915535445, + 4350: 0.011500754147812972, + 4400: 0.009615384615384616, + 4450: 0.006033182503770739, + 4500: 0.013386123680241327, + 4550: 0.008295625942684766, + 4600: 0.012631975867269985, + 4650: 0.017345399698340876, + 4700: 0.01715686274509804, + 4750: 0.010180995475113122, + 4800: 0.003393665158371041, + 4850: 0.003770739064856712, + 4900: 0.006787330316742082, + 4950: 0, + }, + 3000: { + 0: 0, + 50: 0, + 100: 0, + 150: 0.0021683422038241674, + 200: 0.012221565148827124, + 250: 0.003745318352059925, + 300: 0.0027597082594125765, + 350: 0.008476246796767199, + 400: 0.011433077074709246, + 450: 0.03055391287206781, + 500: 0.013010053222945003, + 550: 0.01655824955647546, + 600: 0.018529469741770156, + 650: 0.03666469544648137, + 700: 0.01616400551941652, + 750: 0.01478415138971023, + 800: 0.013995663315592351, + 850: 0.009856100926473488, + 900: 0.005322294500295683, + 950: 0.004928050463236744, + 1000: 0.0027597082594125765, + 1050: 0.002562586240883107, + 1100: 0.000788488074117879, + 1150: 0.0011827321111768185, + 1200: 0.0009856100926473486, + 1250: 0.004928050463236744, + 1300: 0.002562586240883107, + 1350: 0.0027597082594125765, + 1400: 0.005125172481766214, + 1450: 0.001971220185294697, + 1500: 0.0059136605558840925, + 1550: 0.001576976148235758, + 1600: 0.001576976148235758, + 1650: 0.000788488074117879, + 1700: 0.0009856100926473486, + 1750: 0.0017740981667652277, + 1800: 0.0017740981667652277, + 1850: 0.004139562389118865, + 1900: 0.000788488074117879, + 1950: 0.0017740981667652277, + 2000: 0.0013798541297062883, + 2050: 0.0011827321111768185, + 2100: 0.0033510743150009857, + 2150: 0.0017740981667652277, + 2200: 0.006702148630001971, + 2250: 0.0011827321111768185, + 2300: 0.005322294500295683, + 2350: 0.013010053222945003, + 2400: 0.019515079834417505, + 2450: 0.03765030553912872, + 2500: 0.0508574807806032, + 2550: 0.03666469544648137, + 2600: 0.023851764242065837, + 2650: 0.018923713778829097, + 2700: 0.012221565148827124, + 2750: 0.01596688350088705, + 2800: 0.017938103686181747, + 2850: 0.013404297260003943, + 2900: 0.012418687167356593, + 2950: 0.04021289178001183, + 3000: 0.03055391287206781, + 3050: 0.035876207372363494, + 3100: 0.023063276167947958, + 3150: 0.04316972205795387, + 3200: 0.0234575202050069, + 3250: 0.006505026611472502, + 3300: 0.002365464222353637, + 3350: 0.0033510743150009857, + 3400: 0.0035481963335304554, + 3450: 0.002562586240883107, + 3500: 0.001971220185294697, + 3550: 0.0009856100926473486, + 3600: 0.0005913660555884093, + 3650: 0.0005913660555884093, + 3700: 0.0011827321111768185, + 3750: 0.0017740981667652277, + 3800: 0.003942440370589394, + 3850: 0.002365464222353637, + 3900: 0.003942440370589394, + 3950: 0.0011827321111768185, + 4000: 0.0009856100926473486, + 4050: 0.0013798541297062883, + 4100: 0.000788488074117879, + 4150: 0.006702148630001971, + 4200: 0.009067612852355609, + 4250: 0.010447466982061896, + 4300: 0.019317957815888034, + 4350: 0.024837374334713187, + 4400: 0.02365464222353637, + 4450: 0.018332347723240685, + 4500: 0.011630199093238714, + 4550: 0.004730928444707274, + 4600: 0.009856100926473488, + 4650: 0.01636112753794599, + 4700: 0.02227478809383008, + 4750: 0.009856100926473488, + 4800: 0.006307904592943032, + 4850: 0.005322294500295683, + 4900: 0.003745318352059925, + 4950: 0, + }, + 3050: { + 0: 0, + 50: 0.0003999200159968006, + 100: 0.0061987602479504095, + 150: 0.004199160167966407, + 200: 0.001999600079984003, + 250: 0.008598280343931213, + 300: 0.007998400319936013, + 350: 0.003199360127974405, + 400: 0.011797640471905619, + 450: 0.009598080383923215, + 500: 0.013597280543891222, + 550: 0.006998600279944011, + 600: 0.009598080383923215, + 650: 0.009998000399920015, + 700: 0.010797840431913617, + 750: 0.01219756048790242, + 800: 0.007598480303939212, + 850: 0.0033993201359728054, + 900: 0.0009998000399920016, + 950: 0.001799640071985603, + 1000: 0.0005998800239952009, + 1050: 0.003199360127974405, + 1100: 0.005398920215956809, + 1150: 0.003599280143971206, + 1200: 0.002999400119976005, + 1250: 0.0011997600479904018, + 1300: 0.002999400119976005, + 1350: 0.006798640271945611, + 1400: 0.013397320535892822, + 1450: 0.004999000199960008, + 1500: 0.0033993201359728054, + 1550: 0.001799640071985603, + 1600: 0.003999200159968006, + 1650: 0.004999000199960008, + 1700: 0.004599080183963208, + 1750: 0.005398920215956809, + 1800: 0.001999600079984003, + 1850: 0.0007998400319936012, + 1900: 0.0013997200559888023, + 1950: 0.009198160367926415, + 2000: 0.00599880023995201, + 2050: 0.008598280343931213, + 2100: 0.0027994401119776045, + 2150: 0.011397720455908818, + 2200: 0.020195960807838434, + 2250: 0.049590081983603276, + 2300: 0.03479304139172166, + 2350: 0.011197760447910418, + 2400: 0.009198160367926415, + 2450: 0.011197760447910418, + 2500: 0.01219756048790242, + 2550: 0.016396720655868825, + 2600: 0.007598480303939212, + 2650: 0.008598280343931213, + 2700: 0.011197760447910418, + 2750: 0.0065986802639472104, + 2800: 0.022595480903819236, + 2850: 0.015196960607878424, + 2900: 0.01279744051189762, + 2950: 0.022595480903819236, + 3000: 0.0593881223755249, + 3050: 0.09818036392721456, + 3100: 0.06598680263947211, + 3150: 0.01999600079984003, + 3200: 0.011197760447910418, + 3250: 0.00639872025594881, + 3300: 0.007598480303939212, + 3350: 0.007598480303939212, + 3400: 0.035992801439712056, + 3450: 0.02419516096780644, + 3500: 0.010197960407918417, + 3550: 0.004199160167966407, + 3600: 0.002599480103979204, + 3650: 0.0007998400319936012, + 3700: 0.0013997200559888023, + 3750: 0.004199160167966407, + 3800: 0.0009998000399920016, + 3850: 0.001999600079984003, + 3900: 0.001999600079984003, + 3950: 0.0021995600879824036, + 4000: 0.0027994401119776045, + 4050: 0.0065986802639472104, + 4100: 0.01259748050389922, + 4150: 0.010397920415916816, + 4200: 0.014797040591881624, + 4250: 0.007598480303939212, + 4300: 0.005598880223955209, + 4350: 0.0015996800639872025, + 4400: 0.002599480103979204, + 4450: 0.0009998000399920016, + 4500: 0.003599280143971206, + 4550: 0.008998200359928014, + 4600: 0.009598080383923215, + 4650: 0.007398520295940812, + 4700: 0.005398920215956809, + 4750: 0.003799240151969606, + 4800: 0.0021995600879824036, + 4850: 0.003999200159968006, + 4900: 0.007798440311937612, + 4950: 0, + }, + 3100: { + 0: 0, + 50: 0, + 100: 0.028144744399770247, + 150: 0.018954623779437105, + 200: 0.013785180930499713, + 250: 0.08500861573808156, + 300: 0.03331418724870764, + 350: 0.04422745548535324, + 400: 0.004595060310166571, + 450: 0.0350373348650201, + 500: 0.006318207926479035, + 550: 0.00402067777139575, + 600: 0.009190120620333142, + 650: 0.007466973004020678, + 700: 0.015508328546812177, + 750: 0.01665709362435382, + 800: 0.02067777139574957, + 850: 0.007466973004020678, + 900: 0.005743825387708214, + 950: 0.002871912693854107, + 1000: 0.0017231476163124641, + 1050: 0.0011487650775416428, + 1100: 0.0017231476163124641, + 1150: 0.0017231476163124641, + 1200: 0.0005743825387708214, + 1250: 0, + 1300: 0.0034462952326249283, + 1350: 0.0011487650775416428, + 1400: 0.0017231476163124641, + 1450: 0.00402067777139575, + 1500: 0, + 1550: 0.005169442848937392, + 1600: 0.005743825387708214, + 1650: 0.0022975301550832855, + 1700: 0.0005743825387708214, + 1750: 0.0005743825387708214, + 1800: 0.004595060310166571, + 1850: 0.0011487650775416428, + 1900: 0.0022975301550832855, + 1950: 0.0022975301550832855, + 2000: 0.0017231476163124641, + 2050: 0.0017231476163124641, + 2100: 0, + 2150: 0.005743825387708214, + 2200: 0.004595060310166571, + 2250: 0.00861573808156232, + 2300: 0.00402067777139575, + 2350: 0.0017231476163124641, + 2400: 0.004595060310166571, + 2450: 0.006318207926479035, + 2500: 0.011487650775416428, + 2550: 0.031016657093624354, + 2600: 0.018380241240666284, + 2650: 0.007466973004020678, + 2700: 0.004595060310166571, + 2750: 0.007466973004020678, + 2800: 0.0068925904652498565, + 2850: 0.01263641585295807, + 2900: 0.005743825387708214, + 2950: 0.02871912693854107, + 3000: 0.010913268236645606, + 3050: 0.004595060310166571, + 3100: 0.00402067777139575, + 3150: 0.01665709362435382, + 3200: 0.010338885697874785, + 3250: 0.009190120620333142, + 3300: 0.028144744399770247, + 3350: 0.020103388856978748, + 3400: 0.015508328546812177, + 3450: 0.014359563469270534, + 3500: 0.0080413555427915, + 3550: 0.0034462952326249283, + 3600: 0.005743825387708214, + 3650: 0.016082711085583, + 3700: 0.005743825387708214, + 3750: 0.002871912693854107, + 3800: 0.0034462952326249283, + 3850: 0.004595060310166571, + 3900: 0.0005743825387708214, + 3950: 0.005169442848937392, + 4000: 0.0005743825387708214, + 4050: 0.0005743825387708214, + 4100: 0.005743825387708214, + 4150: 0.009190120620333142, + 4200: 0.02986789201608271, + 4250: 0.0430786904078116, + 4300: 0.011487650775416428, + 4350: 0.004595060310166571, + 4400: 0.022975301550832855, + 4450: 0.01723147616312464, + 4500: 0.019529006318207927, + 4550: 0.026995979322228605, + 4600: 0.026421596783457783, + 4650: 0.006318207926479035, + 4700: 0.0034462952326249283, + 4750: 0.0022975301550832855, + 4800: 0.0034462952326249283, + 4850: 0.0011487650775416428, + 4900: 0.0011487650775416428, + 4950: 0, + }, + 3150: { + 0: 0, + 50: 0, + 100: 0, + 150: 0.005523066926575698, + 200: 0.012020792722547108, + 250: 0.004223521767381416, + 300: 0.007147498375568551, + 350: 0.01916829109811566, + 400: 0.018843404808317088, + 450: 0.008122157244964262, + 500: 0.01397011046133853, + 550: 0.009746588693957114, + 600: 0.005198180636777128, + 650: 0.004873294346978557, + 700: 0.0022742040285899934, + 750: 0.001299545159194282, + 800: 0.010396361273554255, + 850: 0.003248862897985705, + 900: 0.003248862897985705, + 950: 0.009096816114359974, + 1000: 0.01299545159194282, + 1050: 0.006172839506172839, + 1100: 0.005523066926575698, + 1150: 0.004548408057179987, + 1200: 0.011046133853151396, + 1250: 0.0022742040285899934, + 1300: 0.0035737491877842753, + 1350: 0.005198180636777128, + 1400: 0.001949317738791423, + 1450: 0.002599090318388564, + 1500: 0.0009746588693957114, + 1550: 0.0035737491877842753, + 1600: 0.0022742040285899934, + 1650: 0.004873294346978557, + 1700: 0.0016244314489928524, + 1750: 0.004548408057179987, + 1800: 0.001949317738791423, + 1850: 0.005523066926575698, + 1900: 0.006172839506172839, + 1950: 0.002599090318388564, + 2000: 0.0016244314489928524, + 2050: 0, + 2100: 0.001299545159194282, + 2150: 0.004223521767381416, + 2200: 0.008122157244964262, + 2250: 0.010071474983755685, + 2300: 0.01299545159194282, + 2350: 0.01364522417153996, + 2400: 0.014619883040935672, + 2450: 0.014619883040935672, + 2500: 0.014944769330734242, + 2550: 0.018193632228719947, + 2600: 0.017218973359324236, + 2650: 0.011695906432748537, + 2700: 0.011046133853151396, + 2750: 0.02046783625730994, + 2800: 0.028589993502274202, + 2850: 0.09584145549057829, + 2900: 0.03151397011046134, + 2950: 0.02664067576348278, + 3000: 0.0198180636777128, + 3050: 0.012020792722547108, + 3100: 0.042884990253411304, + 3150: 0.03151397011046134, + 3200: 0.051332033788174136, + 3250: 0.002599090318388564, + 3300: 0.0035737491877842753, + 3350: 0.001299545159194282, + 3400: 0.003248862897985705, + 3450: 0.001299545159194282, + 3500: 0.0016244314489928524, + 3550: 0.003898635477582846, + 3600: 0.005847953216374269, + 3650: 0.004873294346978557, + 3700: 0.00649772579597141, + 3750: 0.0022742040285899934, + 3800: 0.000649772579597141, + 3850: 0.0035737491877842753, + 3900: 0.0035737491877842753, + 3950: 0.0022742040285899934, + 4000: 0.000649772579597141, + 4050: 0.000649772579597141, + 4100: 0.0016244314489928524, + 4150: 0.03573749187784275, + 4200: 0.03443794671864847, + 4250: 0.03541260558804418, + 4300: 0.009421702404158544, + 4350: 0.004873294346978557, + 4400: 0.015269655620532813, + 4450: 0.017543859649122806, + 4500: 0.024366471734892786, + 4550: 0.008771929824561403, + 4600: 0.004223521767381416, + 4650: 0.0035737491877842753, + 4700: 0.0003248862897985705, + 4750: 0.001299545159194282, + 4800: 0.001299545159194282, + 4850: 0.001299545159194282, + 4900: 0.008771929824561403, + 4950: 0, + }, + 3200: { + 0: 0, + 50: 0, + 100: 0, + 150: 0, + 200: 0, + 250: 0, + 300: 0, + 350: 0.004242424242424243, + 400: 0.0048484848484848485, + 450: 0.0024242424242424242, + 500: 0, + 550: 0.0036363636363636364, + 600: 0.0006060606060606061, + 650: 0.0036363636363636364, + 700: 0.0024242424242424242, + 750: 0, + 800: 0, + 850: 0, + 900: 0, + 950: 0, + 1000: 0, + 1050: 0, + 1100: 0, + 1150: 0.0036363636363636364, + 1200: 0.0024242424242424242, + 1250: 0.005454545454545455, + 1300: 0.0018181818181818182, + 1350: 0.0012121212121212121, + 1400: 0.004242424242424243, + 1450: 0.011515151515151515, + 1500: 0.0018181818181818182, + 1550: 0, + 1600: 0.0024242424242424242, + 1650: 0.0018181818181818182, + 1700: 0.0030303030303030303, + 1750: 0.0012121212121212121, + 1800: 0.0018181818181818182, + 1850: 0.0012121212121212121, + 1900: 0.0006060606060606061, + 1950: 0.0018181818181818182, + 2000: 0.005454545454545455, + 2050: 0.0036363636363636364, + 2100: 0, + 2150: 0.012727272727272728, + 2200: 0.017575757575757574, + 2250: 0.021212121212121213, + 2300: 0.028484848484848484, + 2350: 0.029696969696969697, + 2400: 0.017575757575757574, + 2450: 0.02303030303030303, + 2500: 0.012121212121212121, + 2550: 0.014545454545454545, + 2600: 0.00909090909090909, + 2650: 0.029696969696969697, + 2700: 0.0036363636363636364, + 2750: 0.0012121212121212121, + 2800: 0, + 2850: 0.0024242424242424242, + 2900: 0.0012121212121212121, + 2950: 0.0036363636363636364, + 3000: 0.06303030303030303, + 3050: 0.09090909090909091, + 3100: 0.06181818181818182, + 3150: 0.1206060606060606, + 3200: 0.11454545454545455, + 3250: 0.06303030303030303, + 3300: 0.04, + 3350: 0.02909090909090909, + 3400: 0.006666666666666667, + 3450: 0.004242424242424243, + 3500: 0.0036363636363636364, + 3550: 0.019393939393939394, + 3600: 0.0048484848484848485, + 3650: 0.0024242424242424242, + 3700: 0.0012121212121212121, + 3750: 0.0012121212121212121, + 3800: 0.0006060606060606061, + 3850: 0.0006060606060606061, + 3900: 0.0036363636363636364, + 3950: 0.0018181818181818182, + 4000: 0.0006060606060606061, + 4050: 0.0024242424242424242, + 4100: 0.0018181818181818182, + 4150: 0.007272727272727273, + 4200: 0.0036363636363636364, + 4250: 0.006060606060606061, + 4300: 0.009696969696969697, + 4350: 0.0048484848484848485, + 4400: 0.004242424242424243, + 4450: 0.007272727272727273, + 4500: 0.0006060606060606061, + 4550: 0, + 4600: 0.006060606060606061, + 4650: 0, + 4700: 0.0006060606060606061, + 4750: 0.0018181818181818182, + 4800: 0.0012121212121212121, + 4850: 0.0024242424242424242, + 4900: 0.0012121212121212121, + 4950: 0, + }, + 3250: { + 0: 0, + 50: 0, + 100: 0.0012970168612191958, + 150: 0.0019455252918287938, + 200: 0.009727626459143969, + 250: 0.02594033722438392, + 300: 0.0012970168612191958, + 350: 0.011024643320363165, + 400: 0.014267185473411154, + 450: 0.008430609597924773, + 500: 0.005836575875486381, + 550: 0.0006485084306095979, + 600: 0, + 650: 0.0038910505836575876, + 700: 0.005836575875486381, + 750: 0.005188067444876783, + 800: 0, + 850: 0.0006485084306095979, + 900: 0, + 950: 0, + 1000: 0, + 1050: 0.0006485084306095979, + 1100: 0.0006485084306095979, + 1150: 0, + 1200: 0, + 1250: 0.0006485084306095979, + 1300: 0.019455252918287938, + 1350: 0.0025940337224383916, + 1400: 0.0006485084306095979, + 1450: 0.007133592736705577, + 1500: 0.007133592736705577, + 1550: 0.0012970168612191958, + 1600: 0.0012970168612191958, + 1650: 0.009727626459143969, + 1700: 0.005836575875486381, + 1750: 0, + 1800: 0.0006485084306095979, + 1850: 0.0006485084306095979, + 1900: 0.0006485084306095979, + 1950: 0, + 2000: 0, + 2050: 0, + 2100: 0.00648508430609598, + 2150: 0.0311284046692607, + 2200: 0.0311284046692607, + 2250: 0.029182879377431907, + 2300: 0.05901426718547341, + 2350: 0.007782101167315175, + 2400: 0.027237354085603113, + 2450: 0.011024643320363165, + 2500: 0.005188067444876783, + 2550: 0.0012970168612191958, + 2600: 0.00648508430609598, + 2650: 0.005188067444876783, + 2700: 0.017509727626459144, + 2750: 0.04474708171206226, + 2800: 0.04345006485084306, + 2850: 0.0907911802853437, + 2900: 0.054474708171206226, + 2950: 0.033073929961089495, + 3000: 0.009727626459143969, + 3050: 0.007133592736705577, + 3100: 0.0012970168612191958, + 3150: 0.0019455252918287938, + 3200: 0.0019455252918287938, + 3250: 0.007133592736705577, + 3300: 0.005188067444876783, + 3350: 0.005836575875486381, + 3400: 0.0038910505836575876, + 3450: 0.004539559014267186, + 3500: 0.005188067444876783, + 3550: 0.011024643320363165, + 3600: 0.020103761348897537, + 3650: 0.0019455252918287938, + 3700: 0.016861219195849545, + 3750: 0.0019455252918287938, + 3800: 0.0012970168612191958, + 3850: 0.0019455252918287938, + 3900: 0.00324254215304799, + 3950: 0.0006485084306095979, + 4000: 0.0006485084306095979, + 4050: 0.007133592736705577, + 4100: 0.0012970168612191958, + 4150: 0.0006485084306095979, + 4200: 0.0012970168612191958, + 4250: 0.014915693904020753, + 4300: 0.03631647211413749, + 4350: 0.009727626459143969, + 4400: 0.010376134889753566, + 4450: 0.01556420233463035, + 4500: 0.016861219195849545, + 4550: 0.0012970168612191958, + 4600: 0.0038910505836575876, + 4650: 0.011024643320363165, + 4700: 0.029831387808041506, + 4750: 0.027237354085603113, + 4800: 0.020103761348897537, + 4850: 0.009079118028534372, + 4900: 0.009727626459143969, + 4950: 0, + }, + 3300: { + 0: 0, + 50: 0, + 100: 0.03125, + 150: 0.06907894736842106, + 200: 0.027960526315789474, + 250: 0.05592105263157895, + 300: 0.02631578947368421, + 350: 0.008223684210526315, + 400: 0.013157894736842105, + 450: 0.029605263157894735, + 500: 0.03289473684210526, + 550: 0.001644736842105263, + 600: 0.013157894736842105, + 650: 0.023026315789473683, + 700: 0, + 750: 0.001644736842105263, + 800: 0, + 850: 0.001644736842105263, + 900: 0, + 950: 0, + 1000: 0, + 1050: 0, + 1100: 0, + 1150: 0, + 1200: 0, + 1250: 0, + 1300: 0, + 1350: 0, + 1400: 0, + 1450: 0, + 1500: 0, + 1550: 0, + 1600: 0, + 1650: 0, + 1700: 0, + 1750: 0, + 1800: 0, + 1850: 0, + 1900: 0, + 1950: 0, + 2000: 0, + 2050: 0, + 2100: 0.001644736842105263, + 2150: 0.006578947368421052, + 2200: 0, + 2250: 0.014802631578947368, + 2300: 0.008223684210526315, + 2350: 0.013157894736842105, + 2400: 0.024671052631578948, + 2450: 0.023026315789473683, + 2500: 0.019736842105263157, + 2550: 0.003289473684210526, + 2600: 0.039473684210526314, + 2650: 0.014802631578947368, + 2700: 0.006578947368421052, + 2750: 0.003289473684210526, + 2800: 0.018092105263157895, + 2850: 0.009868421052631578, + 2900: 0, + 2950: 0, + 3000: 0, + 3050: 0, + 3100: 0, + 3150: 0, + 3200: 0, + 3250: 0, + 3300: 0, + 3350: 0, + 3400: 0, + 3450: 0, + 3500: 0, + 3550: 0, + 3600: 0, + 3650: 0, + 3700: 0, + 3750: 0, + 3800: 0, + 3850: 0, + 3900: 0, + 3950: 0, + 4000: 0, + 4050: 0, + 4100: 0, + 4150: 0.001644736842105263, + 4200: 0.006578947368421052, + 4250: 0.008223684210526315, + 4300: 0.029605263157894735, + 4350: 0.018092105263157895, + 4400: 0.1118421052631579, + 4450: 0.049342105263157895, + 4500: 0.013157894736842105, + 4550: 0.019736842105263157, + 4600: 0.03618421052631579, + 4650: 0.03453947368421053, + 4700: 0.03782894736842105, + 4750: 0.0625, + 4800: 0.024671052631578948, + 4850: 0.001644736842105263, + 4900: 0.001644736842105263, + 4950: 0, + }, + 3350: { + 0: 0, + 50: 0, + 100: 0, + 150: 0, + 200: 0.0036036036036036037, + 250: 0.02702702702702703, + 300: 0.04144144144144144, + 350: 0.0009009009009009009, + 400: 0.00990990990990991, + 450: 0.01891891891891892, + 500: 0.08468468468468468, + 550: 0.03153153153153153, + 600: 0.013513513513513514, + 650: 0.006306306306306306, + 700: 0.006306306306306306, + 750: 0, + 800: 0, + 850: 0, + 900: 0, + 950: 0, + 1000: 0.0009009009009009009, + 1050: 0.0018018018018018018, + 1100: 0.0018018018018018018, + 1150: 0, + 1200: 0.036936936936936934, + 1250: 0.0009009009009009009, + 1300: 0, + 1350: 0, + 1400: 0, + 1450: 0, + 1500: 0, + 1550: 0, + 1600: 0, + 1650: 0, + 1700: 0, + 1750: 0.0045045045045045045, + 1800: 0.002702702702702703, + 1850: 0, + 1900: 0, + 1950: 0, + 2000: 0, + 2050: 0, + 2100: 0, + 2150: 0.0009009009009009009, + 2200: 0.03513513513513514, + 2250: 0.02882882882882883, + 2300: 0.08108108108108109, + 2350: 0.05045045045045045, + 2400: 0.04234234234234234, + 2450: 0.026126126126126126, + 2500: 0.021621621621621623, + 2550: 0.002702702702702703, + 2600: 0.012612612612612612, + 2650: 0.017117117117117116, + 2700: 0.0036036036036036037, + 2750: 0.009009009009009009, + 2800: 0.009009009009009009, + 2850: 0.0045045045045045045, + 2900: 0.04234234234234234, + 2950: 0.013513513513513514, + 3000: 0.02072072072072072, + 3050: 0.018018018018018018, + 3100: 0.018018018018018018, + 3150: 0.005405405405405406, + 3200: 0.0018018018018018018, + 3250: 0.0009009009009009009, + 3300: 0, + 3350: 0.0009009009009009009, + 3400: 0.0009009009009009009, + 3450: 0.005405405405405406, + 3500: 0.0009009009009009009, + 3550: 0.0009009009009009009, + 3600: 0, + 3650: 0.006306306306306306, + 3700: 0.0018018018018018018, + 3750: 0.0009009009009009009, + 3800: 0.0036036036036036037, + 3850: 0.005405405405405406, + 3900: 0.006306306306306306, + 3950: 0.002702702702702703, + 4000: 0.0009009009009009009, + 4050: 0, + 4100: 0.0045045045045045045, + 4150: 0.010810810810810811, + 4200: 0.014414414414414415, + 4250: 0.05405405405405406, + 4300: 0.016216216216216217, + 4350: 0.01981981981981982, + 4400: 0.013513513513513514, + 4450: 0.0036036036036036037, + 4500: 0.008108108108108109, + 4550: 0.0036036036036036037, + 4600: 0.017117117117117116, + 4650: 0.021621621621621623, + 4700: 0.008108108108108109, + 4750: 0, + 4800: 0.0018018018018018018, + 4850: 0.0036036036036036037, + 4900: 0.002702702702702703, + 4950: 0, + }, + 3400: { + 0: 0, + 50: 0, + 100: 0, + 150: 0, + 200: 0, + 250: 0.0012919896640826874, + 300: 0.001937984496124031, + 350: 0.002583979328165375, + 400: 0.002583979328165375, + 450: 0.004521963824289405, + 500: 0.0006459948320413437, + 550: 0, + 600: 0.006459948320413436, + 650: 0.0012919896640826874, + 700: 0.010981912144702842, + 750: 0.0103359173126615, + 800: 0.004521963824289405, + 850: 0.0071059431524547806, + 900: 0.006459948320413436, + 950: 0.0012919896640826874, + 1000: 0.013565891472868217, + 1050: 0.007751937984496124, + 1100: 0.0103359173126615, + 1150: 0.009689922480620155, + 1200: 0.0071059431524547806, + 1250: 0.006459948320413436, + 1300: 0.005813953488372093, + 1350: 0.004521963824289405, + 1400: 0.001937984496124031, + 1450: 0, + 1500: 0.0006459948320413437, + 1550: 0.001937984496124031, + 1600: 0.004521963824289405, + 1650: 0.003229974160206718, + 1700: 0.002583979328165375, + 1750: 0.0012919896640826874, + 1800: 0, + 1850: 0, + 1900: 0, + 1950: 0.0006459948320413437, + 2000: 0.002583979328165375, + 2050: 0.0012919896640826874, + 2100: 0.0071059431524547806, + 2150: 0.005813953488372093, + 2200: 0.006459948320413436, + 2250: 0.0071059431524547806, + 2300: 0.007751937984496124, + 2350: 0.0071059431524547806, + 2400: 0.014211886304909561, + 2450: 0.006459948320413436, + 2500: 0.004521963824289405, + 2550: 0.001937984496124031, + 2600: 0.0006459948320413437, + 2650: 0.0006459948320413437, + 2700: 0.002583979328165375, + 2750: 0.007751937984496124, + 2800: 0.02260981912144703, + 2850: 0.023255813953488372, + 2900: 0.03229974160206718, + 2950: 0.06718346253229975, + 3000: 0.0562015503875969, + 3050: 0.09819121447028424, + 3100: 0.09431524547803617, + 3150: 0.041343669250646, + 3200: 0.007751937984496124, + 3250: 0.0006459948320413437, + 3300: 0.004521963824289405, + 3350: 0.0012919896640826874, + 3400: 0, + 3450: 0.004521963824289405, + 3500: 0.007751937984496124, + 3550: 0.0012919896640826874, + 3600: 0.031007751937984496, + 3650: 0.06524547803617571, + 3700: 0.0355297157622739, + 3750: 0.0012919896640826874, + 3800: 0.0006459948320413437, + 3850: 0.0006459948320413437, + 3900: 0.0006459948320413437, + 3950: 0.012919896640826873, + 4000: 0.003875968992248062, + 4050: 0.002583979328165375, + 4100: 0.02648578811369509, + 4150: 0.011627906976744186, + 4200: 0.021963824289405683, + 4250: 0.015503875968992248, + 4300: 0.014211886304909561, + 4350: 0.001937984496124031, + 4400: 0.01808785529715762, + 4450: 0.007751937984496124, + 4500: 0.00516795865633075, + 4550: 0.0012919896640826874, + 4600: 0.002583979328165375, + 4650: 0.001937984496124031, + 4700: 0.0006459948320413437, + 4750: 0.003229974160206718, + 4800: 0.006459948320413436, + 4850: 0.004521963824289405, + 4900: 0.010981912144702842, + 4950: 0, + }, + 3450: { + 0: 0, + 50: 0, + 100: 0, + 150: 0, + 200: 0, + 250: 0, + 300: 0, + 350: 0.0007616146230007616, + 400: 0, + 450: 0.0015232292460015233, + 500: 0, + 550: 0, + 600: 0.00456968773800457, + 650: 0.006092916984006093, + 700: 0.006854531607006854, + 750: 0.002284843869002285, + 800: 0.002284843869002285, + 850: 0.0015232292460015233, + 900: 0.003808073115003808, + 950: 0.002284843869002285, + 1000: 0.0015232292460015233, + 1050: 0.003808073115003808, + 1100: 0.007616146230007616, + 1150: 0.009900990099009901, + 1200: 0.011424219345011425, + 1250: 0.010662604722010662, + 1300: 0.020563594821020565, + 1350: 0.00913937547600914, + 1400: 0.013709063214013708, + 1450: 0.0030464584920030465, + 1500: 0.00456968773800457, + 1550: 0.003808073115003808, + 1600: 0.0015232292460015233, + 1650: 0.0015232292460015233, + 1700: 0.008377760853008377, + 1750: 0.0030464584920030465, + 1800: 0.002284843869002285, + 1850: 0.005331302361005331, + 1900: 0.006092916984006093, + 1950: 0.007616146230007616, + 2000: 0.003808073115003808, + 2050: 0.006854531607006854, + 2100: 0.0030464584920030465, + 2150: 0.011424219345011425, + 2200: 0.00913937547600914, + 2250: 0.016755521706016754, + 2300: 0.009900990099009901, + 2350: 0.012947448591012947, + 2400: 0.011424219345011425, + 2450: 0.010662604722010662, + 2500: 0.002284843869002285, + 2550: 0.0015232292460015233, + 2600: 0.0015232292460015233, + 2650: 0.0015232292460015233, + 2700: 0.0007616146230007616, + 2750: 0.0015232292460015233, + 2800: 0.0015232292460015233, + 2850: 0.003808073115003808, + 2900: 0.024371667936024372, + 2950: 0.006854531607006854, + 3000: 0.02284843869002285, + 3050: 0.011424219345011425, + 3100: 0.0015232292460015233, + 3150: 0.0030464584920030465, + 3200: 0.0007616146230007616, + 3250: 0.035034272658035034, + 3300: 0.01904036557501904, + 3350: 0.035034272658035034, + 3400: 0.02817974105102818, + 3450: 0.00456968773800457, + 3500: 0.0015232292460015233, + 3550: 0.00456968773800457, + 3600: 0.009900990099009901, + 3650: 0.04950495049504951, + 3700: 0.11271896420411272, + 3750: 0.051028179741051026, + 3800: 0.01904036557501904, + 3850: 0.030464584920030464, + 3900: 0.015993907083015995, + 3950: 0.007616146230007616, + 4000: 0.005331302361005331, + 4050: 0.012185833968012186, + 4100: 0.008377760853008377, + 4150: 0.002284843869002285, + 4200: 0.03351104341203351, + 4250: 0.02361005331302361, + 4300: 0.007616146230007616, + 4350: 0.009900990099009901, + 4400: 0.030464584920030464, + 4450: 0.013709063214013708, + 4500: 0.003808073115003808, + 4550: 0.00456968773800457, + 4600: 0.012185833968012186, + 4650: 0.022086824067022087, + 4700: 0.008377760853008377, + 4750: 0.006092916984006093, + 4800: 0.006854531607006854, + 4850: 0.008377760853008377, + 4900: 0.007616146230007616, + 4950: 0, + }, +} diff --git a/pvtools/functions/regressiondb.csv b/pvtools/composables/regressiondb.csv similarity index 100% rename from pvtools/functions/regressiondb.csv rename to pvtools/composables/regressiondb.csv diff --git a/pvtools/functions/seriescalc.json b/pvtools/composables/seriescalc.json similarity index 100% rename from pvtools/functions/seriescalc.json rename to pvtools/composables/seriescalc.json diff --git a/pvtools/functions/seriescalc2.json b/pvtools/composables/seriescalc2.json similarity index 100% rename from pvtools/functions/seriescalc2.json rename to pvtools/composables/seriescalc2.json diff --git a/pvtools/nuxt.config.ts b/pvtools/nuxt.config.ts new file mode 100644 index 0000000..7de7777 --- /dev/null +++ b/pvtools/nuxt.config.ts @@ -0,0 +1,5 @@ +// https://nuxt.com/docs/api/configuration/nuxt-config +export default defineNuxtConfig({ + modules: ['vuetify-nuxt-module'], + devtools: { enabled: true }, +}) diff --git a/pvtools/package-lock.json b/pvtools/package-lock.json index 48ffad9..7c1a131 100644 --- a/pvtools/package-lock.json +++ b/pvtools/package-lock.json @@ -1,41 +1,29 @@ { - "name": "pvtools", - "version": "1.0.0", + "name": "nuxt-app", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "pvtools", - "version": "1.0.0", + "name": "nuxt-app", + "hasInstallScript": true, "dependencies": { - "@fortawesome/fontawesome-svg-core": "^6.5.1", - "@fortawesome/free-solid-svg-icons": "^6.5.1", - "@fortawesome/vue-fontawesome": "^2.0.10", - "@nuxtjs/axios": "^5.13.6", - "@nuxtjs/google-analytics": "^2.4.0", - "bootstrap": "^4.6.2", - "bootstrap-vue": "^2.21.2", - "chart.js": "^3.9.1", - "core-js": "^3.34.0", - "nuxt": "^2.17.2", + "chart.js": "^4.4.1", "papaparse": "^5.4.1", - "vue": "^2.7.15", - "vue-chartjs": "^4.1.2", - "vue-gtag": "^1.16.1", - "vue-server-renderer": "^2.7.15", - "vue-template-compiler": "^2.7.15", - "webpack": "^4.47.0" + "vue-chartjs": "^5.3.0" }, "devDependencies": { - "csv-parse": "^5.5.2", - "jest": "^28.1.3", - "prettier": "^3.1.1" + "@nuxt/devtools": "latest", + "nuxt": "^3.8.2", + "vue": "^3.3.12", + "vue-router": "^4.2.5", + "vuetify-nuxt-module": "^0.7.3" } }, "node_modules/@ampproject/remapping": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, "dependencies": { "@jridgewell/gen-mapping": "^0.3.0", "@jridgewell/trace-mapping": "^0.3.9" @@ -44,10 +32,20 @@ "node": ">=6.0.0" } }, + "node_modules/@antfu/utils": { + "version": "0.7.7", + "resolved": "https://registry.npmjs.org/@antfu/utils/-/utils-0.7.7.tgz", + "integrity": "sha512-gFPqTG7otEJ8uP6wrhDv6mqwGWYZKNvAcCq6u9hOj0c+IKCEsY4L1oC9trPq2SaWIzAfHvqfBDxF591JkMf+kg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" + } + }, "node_modules/@babel/code-frame": { "version": "7.23.5", "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, "dependencies": { "@babel/highlight": "^7.23.4", "chalk": "^2.4.2" @@ -60,6 +58,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -71,6 +70,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -84,6 +84,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "dependencies": { "color-name": "1.1.3" } @@ -91,20 +92,23 @@ "node_modules/@babel/code-frame/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true }, - "node_modules/@babel/code-frame/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/@babel/code-frame/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=0.8.0" } }, "node_modules/@babel/code-frame/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -116,6 +120,7 @@ "version": "7.23.5", "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -124,6 +129,7 @@ "version": "7.23.6", "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz", "integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==", + "dev": true, "dependencies": { "@ampproject/remapping": "^2.2.0", "@babel/code-frame": "^7.23.5", @@ -149,15 +155,20 @@ "url": "https://opencollective.com/babel" } }, - "node_modules/@babel/core/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + "node_modules/@babel/core/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, "node_modules/@babel/generator": { "version": "7.23.6", "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, "dependencies": { "@babel/types": "^7.23.6", "@jridgewell/gen-mapping": "^0.3.2", @@ -172,6 +183,7 @@ "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, "dependencies": { "@babel/types": "^7.22.5" }, @@ -179,21 +191,11 @@ "node": ">=6.9.0" } }, - "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", - "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", - "dependencies": { - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-compilation-targets": { "version": "7.23.6", "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dev": true, "dependencies": { "@babel/compat-data": "^7.23.5", "@babel/helper-validator-option": "^7.23.5", @@ -205,10 +207,20 @@ "node": ">=6.9.0" } }, + "node_modules/@babel/helper-compilation-targets/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-class-features-plugin": { "version": "7.23.6", "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz", "integrity": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==", + "dev": true, "dependencies": { "@babel/helper-annotate-as-pure": "^7.22.5", "@babel/helper-environment-visitor": "^7.22.20", @@ -227,41 +239,20 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", - "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "regexpu-core": "^5.3.1", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", - "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.6", - "@babel/helper-plugin-utils": "^7.22.5", - "debug": "^4.1.1", - "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" } }, "node_modules/@babel/helper-environment-visitor": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -270,6 +261,7 @@ "version": "7.23.0", "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, "dependencies": { "@babel/template": "^7.22.15", "@babel/types": "^7.23.0" @@ -282,6 +274,7 @@ "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, "dependencies": { "@babel/types": "^7.22.5" }, @@ -293,6 +286,7 @@ "version": "7.23.0", "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dev": true, "dependencies": { "@babel/types": "^7.23.0" }, @@ -304,6 +298,7 @@ "version": "7.22.15", "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, "dependencies": { "@babel/types": "^7.22.15" }, @@ -315,6 +310,7 @@ "version": "7.23.3", "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-module-imports": "^7.22.15", @@ -333,6 +329,7 @@ "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dev": true, "dependencies": { "@babel/types": "^7.22.5" }, @@ -344,30 +341,16 @@ "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", - "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-wrap-function": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, "node_modules/@babel/helper-replace-supers": { "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dev": true, "dependencies": { "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-member-expression-to-functions": "^7.22.15", @@ -384,6 +367,7 @@ "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, "dependencies": { "@babel/types": "^7.22.5" }, @@ -395,6 +379,7 @@ "version": "7.22.5", "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dev": true, "dependencies": { "@babel/types": "^7.22.5" }, @@ -406,6 +391,7 @@ "version": "7.22.6", "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, "dependencies": { "@babel/types": "^7.22.5" }, @@ -417,6 +403,7 @@ "version": "7.23.4", "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -425,6 +412,7 @@ "version": "7.22.20", "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, "engines": { "node": ">=6.9.0" } @@ -433,19 +421,7 @@ "version": "7.23.5", "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/helper-wrap-function": { - "version": "7.22.20", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", - "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", - "dependencies": { - "@babel/helper-function-name": "^7.22.5", - "@babel/template": "^7.22.15", - "@babel/types": "^7.22.19" - }, + "dev": true, "engines": { "node": ">=6.9.0" } @@ -454,6 +430,7 @@ "version": "7.23.6", "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", + "dev": true, "dependencies": { "@babel/template": "^7.22.15", "@babel/traverse": "^7.23.6", @@ -467,6 +444,7 @@ "version": "7.23.4", "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, "dependencies": { "@babel/helper-validator-identifier": "^7.22.20", "chalk": "^2.4.2", @@ -480,6 +458,7 @@ "version": "3.2.1", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, "dependencies": { "color-convert": "^1.9.0" }, @@ -491,6 +470,7 @@ "version": "2.4.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, "dependencies": { "ansi-styles": "^3.2.1", "escape-string-regexp": "^1.0.5", @@ -504,6 +484,7 @@ "version": "1.9.3", "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "dependencies": { "color-name": "1.1.3" } @@ -511,20 +492,23 @@ "node_modules/@babel/highlight/node_modules/color-name": { "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true }, - "node_modules/@babel/highlight/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/@babel/highlight/node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=0.8.0" } }, "node_modules/@babel/highlight/node_modules/supports-color": { "version": "5.5.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, "dependencies": { "has-flag": "^3.0.0" }, @@ -543,78 +527,75 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", - "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.6.tgz", + "integrity": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.23.3" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "node_modules/@babel/plugin-syntax-decorators": { "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", - "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-transform-optional-chaining": "^7.23.3" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.13.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "node_modules/@babel/plugin-syntax-import-attributes": { "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", - "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0" + "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" + "@babel/helper-plugin-utils": "^7.10.4" }, "peerDependencies": { "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-decorators": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.6.tgz", - "integrity": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==", + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.23.6", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/plugin-syntax-decorators": "^7.23.3" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -623,14 +604,13 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -639,15 +619,16 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.21.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", - "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "node_modules/@babel/plugin-transform-typescript": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.23.6.tgz", + "integrity": "sha512-6cBG5mBvUu4VUD04OHKnYzbuHNP8huDsD3EDqqpIpsswTDoqHCjLoHb6+QgsV1WsT2nipRqCPgxD3LXnEO7XfA==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-typescript": "^7.23.3" }, "engines": { "node": ">=6.9.0" @@ -656,10689 +637,3755 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, + "node_modules/@babel/standalone": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/standalone/-/standalone-7.23.6.tgz", + "integrity": "sha512-+AzS6BZwZdSosrgS/TiGDYLxtlefARKClWgJ4ql//XfmV9KbPWbkEekvbvDRJ8a6qog8E9j3CziHLz5dbIEMyw==", + "dev": true, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", - "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", - "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.21.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-syntax-async-generators": { - "version": "7.8.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", - "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "node_modules/@babel/traverse": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", + "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", + "globals": "^11.1.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@babel/plugin-syntax-bigint": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", - "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "node_modules/@babel/types": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/@babel/plugin-syntax-class-properties": { - "version": "7.12.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", - "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "node_modules/@cloudflare/kv-asset-handler": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/@cloudflare/kv-asset-handler/-/kv-asset-handler-0.3.0.tgz", + "integrity": "sha512-9CB/MKf/wdvbfkUdfrj+OkEwZ5b7rws0eogJ4293h+7b6KX5toPwym+VQKmILafNB9YiehqY0DlNrDcDhdWHSQ==", + "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.12.13" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "mime": "^3.0.0" } }, - "node_modules/@babel/plugin-syntax-class-static-block": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", - "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, + "node_modules/@esbuild/aix-ppc64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/aix-ppc64/-/aix-ppc64-0.19.10.tgz", + "integrity": "sha512-Q+mk96KJ+FZ30h9fsJl+67IjNJm3x2eX+GBWGmocAKgzp27cowCOOqSdscX80s0SpdFXZnIv/+1xD1EctFx96Q==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "aix" + ], "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-decorators": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", - "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-dynamic-import": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", - "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-export-namespace-from": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", - "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", - "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-attributes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", - "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-import-meta": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", - "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-json-strings": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", - "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", - "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-logical-assignment-operators": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", - "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", - "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-numeric-separator": { - "version": "7.10.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", - "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.10.4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-object-rest-spread": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", - "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-catch-binding": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", - "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-optional-chaining": { - "version": "7.8.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", - "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.8.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-private-property-in-object": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", - "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-top-level-await": { - "version": "7.14.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", - "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", - "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-syntax-unicode-sets-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", - "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", - "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-generator-functions": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz", - "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", - "dependencies": { - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", - "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", - "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-remap-async-to-generator": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", - "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", - "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", - "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-class-static-block": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", - "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-transform-classes": { - "version": "7.23.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz", - "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-optimise-call-expression": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20", - "@babel/helper-split-export-declaration": "^7.22.6", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", - "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/template": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", - "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", - "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", - "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-dynamic-import": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", - "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", - "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", - "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-export-namespace-from": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", - "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-for-of": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", - "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-function-name": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", - "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", - "dependencies": { - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-json-strings": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", - "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", - "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-logical-assignment-operators": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", - "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", - "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", - "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", - "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-simple-access": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", - "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", - "dependencies": { - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-identifier": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", - "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", - "dependencies": { - "@babel/helper-module-transforms": "^7.23.3", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.22.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", - "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.5", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/plugin-transform-new-target": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", - "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", - "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-numeric-separator": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", - "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-rest-spread": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", - "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", - "dependencies": { - "@babel/compat-data": "^7.23.3", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.23.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-object-super": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", - "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-replace-supers": "^7.22.20" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-catch-binding": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", - "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-optional-chaining": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", - "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-parameters": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", - "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-methods": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", - "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-private-property-in-object": { - "version": "7.23.4", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", - "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.22.5", - "@babel/helper-create-class-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", - "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", - "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "regenerator-transform": "^0.15.2" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", - "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-runtime": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.6.tgz", - "integrity": "sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg==", - "dependencies": { - "@babel/helper-module-imports": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", - "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-spread": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", - "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", - "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", - "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", - "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", - "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-property-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", - "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", - "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-transform-unicode-sets-regex": { - "version": "7.23.3", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", - "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.22.15", - "@babel/helper-plugin-utils": "^7.22.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/@babel/preset-env": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.6.tgz", - "integrity": "sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==", - "dependencies": { - "@babel/compat-data": "^7.23.5", - "@babel/helper-compilation-targets": "^7.23.6", - "@babel/helper-plugin-utils": "^7.22.5", - "@babel/helper-validator-option": "^7.23.5", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", - "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", - "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-class-properties": "^7.12.13", - "@babel/plugin-syntax-class-static-block": "^7.14.5", - "@babel/plugin-syntax-dynamic-import": "^7.8.3", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.23.3", - "@babel/plugin-syntax-import-attributes": "^7.23.3", - "@babel/plugin-syntax-import-meta": "^7.10.4", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.10.4", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5", - "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", - "@babel/plugin-transform-arrow-functions": "^7.23.3", - "@babel/plugin-transform-async-generator-functions": "^7.23.4", - "@babel/plugin-transform-async-to-generator": "^7.23.3", - "@babel/plugin-transform-block-scoped-functions": "^7.23.3", - "@babel/plugin-transform-block-scoping": "^7.23.4", - "@babel/plugin-transform-class-properties": "^7.23.3", - "@babel/plugin-transform-class-static-block": "^7.23.4", - "@babel/plugin-transform-classes": "^7.23.5", - "@babel/plugin-transform-computed-properties": "^7.23.3", - "@babel/plugin-transform-destructuring": "^7.23.3", - "@babel/plugin-transform-dotall-regex": "^7.23.3", - "@babel/plugin-transform-duplicate-keys": "^7.23.3", - "@babel/plugin-transform-dynamic-import": "^7.23.4", - "@babel/plugin-transform-exponentiation-operator": "^7.23.3", - "@babel/plugin-transform-export-namespace-from": "^7.23.4", - "@babel/plugin-transform-for-of": "^7.23.6", - "@babel/plugin-transform-function-name": "^7.23.3", - "@babel/plugin-transform-json-strings": "^7.23.4", - "@babel/plugin-transform-literals": "^7.23.3", - "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", - "@babel/plugin-transform-member-expression-literals": "^7.23.3", - "@babel/plugin-transform-modules-amd": "^7.23.3", - "@babel/plugin-transform-modules-commonjs": "^7.23.3", - "@babel/plugin-transform-modules-systemjs": "^7.23.3", - "@babel/plugin-transform-modules-umd": "^7.23.3", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", - "@babel/plugin-transform-new-target": "^7.23.3", - "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", - "@babel/plugin-transform-numeric-separator": "^7.23.4", - "@babel/plugin-transform-object-rest-spread": "^7.23.4", - "@babel/plugin-transform-object-super": "^7.23.3", - "@babel/plugin-transform-optional-catch-binding": "^7.23.4", - "@babel/plugin-transform-optional-chaining": "^7.23.4", - "@babel/plugin-transform-parameters": "^7.23.3", - "@babel/plugin-transform-private-methods": "^7.23.3", - "@babel/plugin-transform-private-property-in-object": "^7.23.4", - "@babel/plugin-transform-property-literals": "^7.23.3", - "@babel/plugin-transform-regenerator": "^7.23.3", - "@babel/plugin-transform-reserved-words": "^7.23.3", - "@babel/plugin-transform-shorthand-properties": "^7.23.3", - "@babel/plugin-transform-spread": "^7.23.3", - "@babel/plugin-transform-sticky-regex": "^7.23.3", - "@babel/plugin-transform-template-literals": "^7.23.3", - "@babel/plugin-transform-typeof-symbol": "^7.23.3", - "@babel/plugin-transform-unicode-escapes": "^7.23.3", - "@babel/plugin-transform-unicode-property-regex": "^7.23.3", - "@babel/plugin-transform-unicode-regex": "^7.23.3", - "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", - "@babel/preset-modules": "0.1.6-no-external-plugins", - "babel-plugin-polyfill-corejs2": "^0.4.6", - "babel-plugin-polyfill-corejs3": "^0.8.5", - "babel-plugin-polyfill-regenerator": "^0.5.3", - "core-js-compat": "^3.31.0", - "semver": "^6.3.1" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.21.0-placeholder-for-preset-env.2", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", - "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/preset-modules": { - "version": "0.1.6-no-external-plugins", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", - "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@babel/types": "^7.4.4", - "esutils": "^2.0.2" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/@babel/regjsgen": { - "version": "0.8.0", - "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", - "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" - }, - "node_modules/@babel/runtime": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz", - "integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==", - "dependencies": { - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/template": { - "version": "7.22.15", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", - "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", - "dependencies": { - "@babel/code-frame": "^7.22.13", - "@babel/parser": "^7.22.15", - "@babel/types": "^7.22.15" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/traverse": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", - "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", - "dependencies": { - "@babel/code-frame": "^7.23.5", - "@babel/generator": "^7.23.6", - "@babel/helper-environment-visitor": "^7.22.20", - "@babel/helper-function-name": "^7.23.0", - "@babel/helper-hoist-variables": "^7.22.5", - "@babel/helper-split-export-declaration": "^7.22.6", - "@babel/parser": "^7.23.6", - "@babel/types": "^7.23.6", - "debug": "^4.3.1", - "globals": "^11.1.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@babel/types": { - "version": "7.23.6", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", - "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", - "dependencies": { - "@babel/helper-string-parser": "^7.23.4", - "@babel/helper-validator-identifier": "^7.22.20", - "to-fast-properties": "^2.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/@bcoe/v8-coverage": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", - "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", - "dev": true - }, - "node_modules/@csstools/cascade-layer-name-parser": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.6.tgz", - "integrity": "sha512-HkxRNs6ZIV0VjLFw6k5G8K35vd9r+O8B1Vr+QVD8M5Y44eQxyHtc42BdF74FQatXACPnitOR1+sRx2oWdnKTQw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - } - }, - "node_modules/@csstools/color-helpers": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-4.0.0.tgz", - "integrity": "sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/@csstools/css-calc": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-1.1.5.tgz", - "integrity": "sha512-UhI5oSRAUtTHY3MyGahqn0ZzQOHVoPpfvUcOmYipAZ1rILAvCBoyiLSsa/clv1Xxct0SMKIq93KO5Bfl1cb6tQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - } - }, - "node_modules/@csstools/css-color-parser": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-1.5.0.tgz", - "integrity": "sha512-PUhSg1MgU2sjYhA6moOmxYesqVqYTJwcVw12boTNbDX7Af+VK02MkgvmBBY2Z2qU6UN5HOQ+wrF0qQJGsTFY7w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/color-helpers": "^4.0.0", - "@csstools/css-calc": "^1.1.5" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - } - }, - "node_modules/@csstools/css-parser-algorithms": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.4.0.tgz", - "integrity": "sha512-/PPLr2g5PAUCKAPEbfyk6/baZA+WJHQtUhPkoCQMpyRE8I0lXrG1QFRN8e5s3ZYxM8d/g5BZc6lH3s8Op7/VEg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-tokenizer": "^2.2.2" - } - }, - "node_modules/@csstools/css-tokenizer": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.2.tgz", - "integrity": "sha512-wCDUe/MAw7npAHFLyW3QjSyLA66S5QFaV1jIXlNQvdJ8RzXDSgALa49eWcUO6P55ARQaz0TsDdAgdRgkXFYY8g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - } - }, - "node_modules/@csstools/media-query-list-parser": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.6.tgz", - "integrity": "sha512-R6AKl9vaU0It7D7TR2lQn0pre5aQfdeqHRePlaRCY8rHL3l9eVlNRpsEVDKFi/zAjzv68CxH2M5kqbhPFPKjvw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - } - }, - "node_modules/@csstools/postcss-cascade-layers": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.2.tgz", - "integrity": "sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/selector-specificity": "^3.0.1", - "postcss-selector-parser": "^6.0.13" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-color-function": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-3.0.8.tgz", - "integrity": "sha512-jvbF7eCRbIcxWqby0kk2Mt85QtGzRRpFFYdlJCJ80Tuiv43PY+auS/nBl8pDQQ4Ndm4vsm4IC/wCZDcJUmpJmg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-color-mix-function": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.8.tgz", - "integrity": "sha512-sGhk+TdZ2TeXspc6LSYSYC8WgzLlxoknUaObKgB0mk+dNjRQgSSIeCU+qrCwvHmwM+uTNKtiS8mntDzyQLHTTA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-exponential-functions": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.2.tgz", - "integrity": "sha512-VRIYrwNCkZRqzsGB4jGT+XcNXsoiwyqy0Vf7C3I/5OPcf7WcWK3G1sBYFqqgWLGtpwc7m1m8TcorGY1xdh5abg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-calc": "^1.1.5", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-font-format-keywords": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.1.tgz", - "integrity": "sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-gamut-mapping": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.1.tgz", - "integrity": "sha512-GDVzfNbnc7x3GusFklvt0mYXIWVzxEtEtTFEW664NgZh/5V7Z89hZKBMl9piOAHXuxijfHtE+kul/ShfeLUvcA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-gradients-interpolation-method": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.8.tgz", - "integrity": "sha512-bmvCNzuUvWPPdgASh0T14ffTay/FdzXsXfp0wXT1pYoUPmkH9M6yyxwPEkHq5djjzSb2jiLl4Ta3XM1uOREQ2w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-hwb-function": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.7.tgz", - "integrity": "sha512-iXs1gxKtev8YNP5bOF26TAsnMfcxnCRLpKItQ067RphYECKEK/xWm4Z0r4ChmV1U1eq+lbdH5ZIb2cju4o5akA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-ic-unit": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.3.tgz", - "integrity": "sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^3.0.3", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-initial": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-1.0.1.tgz", - "integrity": "sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-is-pseudo-class": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.4.tgz", - "integrity": "sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/selector-specificity": "^3.0.1", - "postcss-selector-parser": "^6.0.13" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-logical-float-and-clear": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.1.tgz", - "integrity": "sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-logical-overflow": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.1.tgz", - "integrity": "sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-logical-overscroll-behavior": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.1.tgz", - "integrity": "sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-logical-resize": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.1.tgz", - "integrity": "sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-logical-viewport-units": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.4.tgz", - "integrity": "sha512-jetp/ArGAniWbjWBh5UQ07ztawfSbqCFd0QelX4R4pVIxrXahUEhz5VZHebMPVCg02J8GsQn0br6fdRpY6t7lw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-tokenizer": "^2.2.2" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-media-minmax": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.1.tgz", - "integrity": "sha512-mBY46/Hr+A8cDjoX0OoPRBOVrkANym9540dSB9rN3dllPZdM1E112i/tVxWsrR1s1yE9gfF0pk+7lf9l+qSeHA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-calc": "^1.1.5", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/media-query-list-parser": "^2.1.6" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.4.tgz", - "integrity": "sha512-IaIZZhH0Qy9UDn7u+N3cuwwPG0Po3ZKOdDh+ClR7xvisSqniG+PuVrOEWYJrFKOt2//UHLhd7KHDqr2u9LKS9Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/media-query-list-parser": "^2.1.6" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-nested-calc": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.1.tgz", - "integrity": "sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-normalize-display-values": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.2.tgz", - "integrity": "sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-oklab-function": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.8.tgz", - "integrity": "sha512-L4xrwbgg+k08v+a88LDxJeIM6+kqaBJlYb/QgmEMfQpUbrfXTp87DuRc7utcRdDvY+qWK5vqz3h1xUtceB5LJQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-progressive-custom-properties": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.3.tgz", - "integrity": "sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-relative-color-syntax": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.8.tgz", - "integrity": "sha512-wu/Oh7QKINpRXnmLMUbObVNlqwr843PSF4a3x3fMC0I+vUeoGqMfZuSPFtT+NnYYxfzUjEZ091GURPxee22VLQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-scope-pseudo-class": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.1.tgz", - "integrity": "sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-selector-parser": "^6.0.13" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-stepped-value-functions": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.3.tgz", - "integrity": "sha512-hzo9Wr3u7JJiM65/EyHgE/gJpBzhDwBSGOobFs2YQ0ZNTywUliYQoYJud1KKlByMRuhqvDLh9V95eIkLf/fZTQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-calc": "^1.1.5", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-text-decoration-shorthand": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.4.tgz", - "integrity": "sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/color-helpers": "^4.0.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-trigonometric-functions": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.3.tgz", - "integrity": "sha512-T/npTbDuMZ3vktEMuA05p1oeVd12Sy47qZP1vFhzNMUOdXGCK9vlm0tUSIlV5DdlbTJqKqq9FhGitZH9VTKrfQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/css-calc": "^1.1.5", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/postcss-unset-value": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.1.tgz", - "integrity": "sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/@csstools/selector-specificity": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz", - "integrity": "sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss-selector-parser": "^6.0.13" - } - }, - "node_modules/@discoveryjs/json-ext": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", - "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/@fortawesome/fontawesome-common-types": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.1.tgz", - "integrity": "sha512-GkWzv+L6d2bI5f/Vk6ikJ9xtl7dfXtoRu3YGE6nq0p/FFqA1ebMOAWg3XgRyb0I6LYyYkiAo+3/KrwuBp8xG7A==", - "hasInstallScript": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/fontawesome-svg-core": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.1.tgz", - "integrity": "sha512-MfRCYlQPXoLlpem+egxjfkEuP9UQswTrlCOsknus/NcMoblTH2g0jPrapbcIb04KGA7E2GZxbAccGZfWoYgsrQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/free-solid-svg-icons": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.1.tgz", - "integrity": "sha512-S1PPfU3mIJa59biTtXJz1oI0+KAXW6bkAb31XKhxdxtuXDiUIFsih4JR1v5BbxY7hVHsD1RKq+jRkVRaf773NQ==", - "hasInstallScript": true, - "dependencies": { - "@fortawesome/fontawesome-common-types": "6.5.1" - }, - "engines": { - "node": ">=6" - } - }, - "node_modules/@fortawesome/vue-fontawesome": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-2.0.10.tgz", - "integrity": "sha512-OTETSXz+3ygD2OK2/vy82cmUBpuJqeOAg4gfnnv+f2Rir1tDIhQg026Q3NQxznq83ZLz8iNqGG9XJm26inpDeg==", - "peerDependencies": { - "@fortawesome/fontawesome-svg-core": "~1 || ~6", - "vue": "~2" - } - }, - "node_modules/@gar/promisify": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", - "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" - }, - "node_modules/@istanbuljs/load-nyc-config": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", - "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", - "dev": true, - "dependencies": { - "camelcase": "^5.3.1", - "find-up": "^4.1.0", - "get-package-type": "^0.1.0", - "js-yaml": "^3.13.1", - "resolve-from": "^5.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/@istanbuljs/schema": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", - "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/@jest/console": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", - "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", - "dev": true, - "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3", - "slash": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/core": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz", - "integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==", - "dev": true, - "dependencies": { - "@jest/console": "^28.1.3", - "@jest/reporters": "^28.1.3", - "@jest/test-result": "^28.1.3", - "@jest/transform": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "jest-changed-files": "^28.1.3", - "jest-config": "^28.1.3", - "jest-haste-map": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-regex-util": "^28.0.2", - "jest-resolve": "^28.1.3", - "jest-resolve-dependencies": "^28.1.3", - "jest-runner": "^28.1.3", - "jest-runtime": "^28.1.3", - "jest-snapshot": "^28.1.3", - "jest-util": "^28.1.3", - "jest-validate": "^28.1.3", - "jest-watcher": "^28.1.3", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "rimraf": "^3.0.0", - "slash": "^3.0.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/environment": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz", - "integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==", - "dev": true, - "dependencies": { - "@jest/fake-timers": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "jest-mock": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/expect": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-28.1.3.tgz", - "integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==", - "dev": true, - "dependencies": { - "expect": "^28.1.3", - "jest-snapshot": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/expect-utils": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz", - "integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==", - "dev": true, - "dependencies": { - "jest-get-type": "^28.0.2" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/fake-timers": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.3.tgz", - "integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==", - "dev": true, - "dependencies": { - "@jest/types": "^28.1.3", - "@sinonjs/fake-timers": "^9.1.2", - "@types/node": "*", - "jest-message-util": "^28.1.3", - "jest-mock": "^28.1.3", - "jest-util": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/globals": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-28.1.3.tgz", - "integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==", - "dev": true, - "dependencies": { - "@jest/environment": "^28.1.3", - "@jest/expect": "^28.1.3", - "@jest/types": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/reporters": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.3.tgz", - "integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==", - "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@jest/console": "^28.1.3", - "@jest/test-result": "^28.1.3", - "@jest/transform": "^28.1.3", - "@jest/types": "^28.1.3", - "@jridgewell/trace-mapping": "^0.3.13", - "@types/node": "*", - "chalk": "^4.0.0", - "collect-v8-coverage": "^1.0.0", - "exit": "^0.1.2", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "istanbul-lib-coverage": "^3.0.0", - "istanbul-lib-instrument": "^5.1.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-lib-source-maps": "^4.0.0", - "istanbul-reports": "^3.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3", - "jest-worker": "^28.1.3", - "slash": "^3.0.0", - "string-length": "^4.0.1", - "strip-ansi": "^6.0.0", - "terminal-link": "^2.0.0", - "v8-to-istanbul": "^9.0.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/@jest/schemas": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", - "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", - "dev": true, - "dependencies": { - "@sinclair/typebox": "^0.24.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/source-map": { - "version": "28.1.2", - "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-28.1.2.tgz", - "integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==", - "dev": true, - "dependencies": { - "@jridgewell/trace-mapping": "^0.3.13", - "callsites": "^3.0.0", - "graceful-fs": "^4.2.9" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/test-result": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", - "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", - "dev": true, - "dependencies": { - "@jest/console": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "collect-v8-coverage": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/test-sequencer": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz", - "integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==", - "dev": true, - "dependencies": { - "@jest/test-result": "^28.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^28.1.3", - "slash": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/transform": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", - "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^28.1.3", - "@jridgewell/trace-mapping": "^0.3.13", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^28.1.3", - "jest-regex-util": "^28.0.2", - "jest-util": "^28.1.3", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jest/types": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", - "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", - "dev": true, - "dependencies": { - "@jest/schemas": "^28.1.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/@jridgewell/gen-mapping": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", - "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", - "dependencies": { - "@jridgewell/set-array": "^1.0.1", - "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" - }, - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/resolve-uri": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", - "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/set-array": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", - "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", - "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/@jridgewell/source-map": { - "version": "0.3.5", - "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", - "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", - "dependencies": { - "@jridgewell/gen-mapping": "^0.3.0", - "@jridgewell/trace-mapping": "^0.3.9" - } - }, - "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.15", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", - "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" - }, - "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.20", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", - "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", - "dependencies": { - "@jridgewell/resolve-uri": "^3.1.0", - "@jridgewell/sourcemap-codec": "^1.4.14" - } - }, - "node_modules/@nodelib/fs.scandir": { - "version": "2.1.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", - "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", - "dependencies": { - "@nodelib/fs.stat": "2.0.5", - "run-parallel": "^1.1.9" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.stat": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", - "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@nodelib/fs.walk": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", - "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", - "dependencies": { - "@nodelib/fs.scandir": "2.1.5", - "fastq": "^1.6.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/@npmcli/fs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", - "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", - "dependencies": { - "@gar/promisify": "^1.0.1", - "semver": "^7.3.5" - } - }, - "node_modules/@npmcli/fs/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@npmcli/fs/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@npmcli/fs/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/@npmcli/move-file": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", - "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", - "deprecated": "This functionality has been moved to @npmcli/fs", - "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@npmcli/move-file/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/babel-preset-app": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/babel-preset-app/-/babel-preset-app-2.17.2.tgz", - "integrity": "sha512-LJmL19mlzcwBOcyjiuwsgj0WSUHQglEEgZ2C0IE+5GfKblyVnzHi8PLBr4M8U78QzRkMoZXdRg7bIyW4VBANCQ==", - "dependencies": { - "@babel/compat-data": "^7.23.2", - "@babel/core": "^7.23.2", - "@babel/helper-compilation-targets": "^7.22.15", - "@babel/helper-module-imports": "^7.22.15", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-decorators": "^7.23.2", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.21.0", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.21.11", - "@babel/plugin-transform-runtime": "^7.23.2", - "@babel/preset-env": "^7.23.2", - "@babel/runtime": "^7.23.2", - "@vue/babel-preset-jsx": "^1.4.0", - "core-js": "^3.33.1", - "core-js-compat": "^3.33.1", - "regenerator-runtime": "^0.14.0" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/builder": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/builder/-/builder-2.17.2.tgz", - "integrity": "sha512-6NYsLD2Ss3QjJ8vgNVhdXvn44CPVLotnNAnq3/WGpkxRloebqBxjUTzLQUjsZ/U7STH00TWCUAkhq8zpSzEogw==", - "dependencies": { - "@nuxt/devalue": "^2.0.2", - "@nuxt/utils": "2.17.2", - "@nuxt/vue-app": "2.17.2", - "@nuxt/webpack": "2.17.2", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "consola": "^3.2.3", - "fs-extra": "^10.1.0", - "glob": "^8.1.0", - "hash-sum": "^2.0.0", - "ignore": "^5.2.4", - "lodash": "^4.17.21", - "pify": "^5.0.0", - "serialize-javascript": "^6.0.1", - "upath": "^2.0.1" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/builder/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@nuxt/builder/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/builder/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nuxt/builder/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/cli": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/cli/-/cli-2.17.2.tgz", - "integrity": "sha512-jEDxBqrKINJrJunewamghqOFcR/6FhDU6kGlO10kWKvE5QzTRQUKLUgBQVag7yRqnnMjL5NcZoUC4iUeBT/63Q==", - "dependencies": { - "@nuxt/config": "2.17.2", - "@nuxt/utils": "2.17.2", - "boxen": "^5.1.2", - "chalk": "^4.1.2", - "compression": "^1.7.4", - "connect": "^3.7.0", - "consola": "^3.2.3", - "crc": "^4.3.2", - "defu": "^6.1.2", - "destr": "^2.0.1", - "execa": "^5.1.1", - "exit": "^0.1.2", - "fs-extra": "^10.1.0", - "globby": "^11.0.4", - "hable": "^3.0.0", - "lodash": "^4.17.21", - "minimist": "^1.2.8", - "opener": "1.5.2", - "pretty-bytes": "^5.6.0", - "semver": "^7.5.4", - "serve-static": "^1.15.0", - "std-env": "^3.4.3", - "upath": "^2.0.1", - "wrap-ansi": "^7.0.0" - }, - "bin": { - "nuxt-cli": "bin/nuxt-cli.js" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/cli/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/cli/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/@nuxt/cli/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/cli/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/cli/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/@nuxt/components": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/@nuxt/components/-/components-2.2.1.tgz", - "integrity": "sha512-r1LHUzifvheTnJtYrMuA+apgsrEJbxcgFKIimeXKb+jl8TnPWdV3egmrxBCaDJchrtY/wmHyP47tunsft7AWwg==", - "dependencies": { - "chalk": "^4.1.2", - "chokidar": "^3.5.2", - "glob": "^7.1.7", - "globby": "^11.0.4", - "scule": "^0.2.1", - "semver": "^7.3.5", - "upath": "^2.0.1", - "vue-template-compiler": "^2.6.14" - }, - "peerDependencies": { - "consola": "*" - } - }, - "node_modules/@nuxt/components/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/components/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/components/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/@nuxt/config": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/config/-/config-2.17.2.tgz", - "integrity": "sha512-e40+37nwLDnf7DGOfoK1D1GkWvNh4sNkZdgKGDkJZCVBkj9a6dgKwCdBvwtxphbJHhI6X05YG/K3mB41t8cEvg==", - "dependencies": { - "@nuxt/utils": "2.17.2", - "consola": "^3.2.3", - "defu": "^6.1.2", - "destr": "^2.0.1", - "dotenv": "^16.3.1", - "lodash": "^4.17.21", - "rc9": "^2.1.1", - "std-env": "^3.4.3", - "ufo": "^1.3.1" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/config/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/config/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/@nuxt/core": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/core/-/core-2.17.2.tgz", - "integrity": "sha512-DNJZ7dsMQShdXLQZg2ruIpk10dbU1HrgEXMD4DYmSBUPN0fT1LyWp6e5xIkDmyPXcsHeQYDQPezYddM9LhQn+A==", - "dependencies": { - "@nuxt/config": "2.17.2", - "@nuxt/server": "2.17.2", - "@nuxt/utils": "2.17.2", - "consola": "^3.2.3", - "fs-extra": "^10.1.0", - "hable": "^3.0.0", - "hash-sum": "^2.0.0", - "lodash": "^4.17.21" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/core/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/devalue": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", - "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==" - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/@nuxt/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-2.6.0.tgz", - "integrity": "sha512-3IZj6MXbzlvUxDncAxgBMLQwGPY/JlNhy2i+AGyOHCAReR5HcBxYjVRBvyaKM9R3s5k4OODYKeHAbrToZH/47w==", - "dependencies": { - "chalk": "^2.4.2", - "consola": "^3.2.3", - "error-stack-parser": "^2.1.4", - "string-width": "^4.2.3" - }, - "engines": { - "node": ">=14.18.0", - "npm": ">=5.0.0" - }, - "peerDependencies": { - "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" - } - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" - } - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", - "engines": { - "node": ">=4" - } - }, - "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/@nuxt/generator": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/generator/-/generator-2.17.2.tgz", - "integrity": "sha512-nYkxUtp+geqPYH1KngE+0L9vPVS+zZ6O9cm3yzSqy/KuzPxQYYK+YAgC+cORo3pnxr4MNvRTj3vpPBvEnt2KVA==", - "dependencies": { - "@nuxt/utils": "2.17.2", - "chalk": "^4.1.2", - "consola": "^3.2.3", - "defu": "^6.1.2", - "devalue": "^2.0.1", - "fs-extra": "^10.1.0", - "html-minifier": "^4.0.0", - "node-html-parser": "^6.1.10", - "ufo": "^1.3.1" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/generator/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/generator/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/@nuxt/loading-screen": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@nuxt/loading-screen/-/loading-screen-2.0.4.tgz", - "integrity": "sha512-xpEDAoRu75tLUYCkUJCIvJkWJSuwr8pqomvQ+fkXpSrkxZ/9OzlBFjAbVdOAWTMj4aV/LVQso4vcEdircKeFIQ==", - "dependencies": { - "connect": "^3.7.0", - "defu": "^5.0.0", - "get-port-please": "^2.2.0", - "node-res": "^5.0.1", - "serve-static": "^1.14.1" - } - }, - "node_modules/@nuxt/opencollective": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@nuxt/opencollective/-/opencollective-0.3.3.tgz", - "integrity": "sha512-6IKCd+gP0HliixqZT/p8nW3tucD6Sv/u/eR2A9X4rxT/6hXlMzA4GZQzq4d2qnBAwSwGpmKyzkyTjNjrhaA25A==", - "dependencies": { - "chalk": "^4.1.0", - "consola": "^2.15.0", - "node-fetch": "^2.6.7" - }, - "bin": { - "opencollective": "bin/opencollective.js" - }, - "engines": { - "node": ">=8.0.0", - "npm": ">=5.0.0" - } - }, - "node_modules/@nuxt/server": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/server/-/server-2.17.2.tgz", - "integrity": "sha512-PjIpxC9B7heH6f+uzPTAleConC8uhfmaPZaj+A96RXwxw/zAYHbv/QKFz4Q+Pw6v4aONOYsPZFBuLoMTGov3tA==", - "dependencies": { - "@nuxt/utils": "2.17.2", - "@nuxt/vue-renderer": "2.17.2", - "@nuxtjs/youch": "^4.2.3", - "compression": "^1.7.4", - "connect": "^3.7.0", - "consola": "^3.2.3", - "etag": "^1.8.1", - "fresh": "^0.5.2", - "fs-extra": "^10.1.0", - "ip": "^1.1.8", - "launch-editor-middleware": "^2.6.1", - "on-headers": "^1.0.2", - "pify": "^5.0.0", - "serve-placeholder": "^2.0.1", - "serve-static": "^1.15.0", - "server-destroy": "^1.0.1", - "ufo": "^1.3.1" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/server/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/telemetry": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-1.5.0.tgz", - "integrity": "sha512-MhxiiYCFe0MayN2TvmpcsCV66zBePtrSVkFLJHwTFuneQ5Qma5x0NmCwdov7O4NSuTfgSZels9qPJh0zy0Kc4g==", - "dependencies": { - "arg": "^5.0.2", - "chalk": "^4.1.1", - "ci-info": "^3.7.1", - "consola": "^3.2.3", - "create-require": "^1.1.1", - "defu": "^6.1.3", - "destr": "^2.0.2", - "dotenv": "^9.0.2", - "fs-extra": "^8.1.0", - "git-url-parse": "^13.1.1", - "inquirer": "^7.3.3", - "jiti": "^1.21.0", - "nanoid": "^3.1.23", - "node-fetch": "^2.6.1", - "parse-git-config": "^3.0.0", - "rc9": "^2.1.1", - "std-env": "^3.5.0" - }, - "bin": { - "nuxt-telemetry": "bin/nuxt-telemetry.js" - } - }, - "node_modules/@nuxt/telemetry/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/telemetry/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/@nuxt/telemetry/node_modules/dotenv": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", - "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/telemetry/node_modules/fs-extra": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", - "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - }, - "engines": { - "node": ">=6 <7 || >=8" - } - }, - "node_modules/@nuxt/telemetry/node_modules/jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } - }, - "node_modules/@nuxt/telemetry/node_modules/universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "engines": { - "node": ">= 4.0.0" - } - }, - "node_modules/@nuxt/utils": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/utils/-/utils-2.17.2.tgz", - "integrity": "sha512-vb0U/+I5omMQK6Nb3QlWYeStRhWeGJeR3tEGxc+OZw41T1OgqfRlg32tNBkMDqlNpSRjTKyWjIYGHBoNNrB2SA==", - "dependencies": { - "consola": "^3.2.3", - "create-require": "^1.1.1", - "fs-extra": "^10.1.0", - "hash-sum": "^2.0.0", - "jiti": "^1.20.0", - "lodash": "^4.17.21", - "proper-lockfile": "^4.1.2", - "semver": "^7.5.4", - "serialize-javascript": "^6.0.1", - "signal-exit": "^4.1.0", - "ua-parser-js": "^1.0.36", - "ufo": "^1.3.1" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/utils/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/utils/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/utils/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/utils/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nuxt/utils/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/@nuxt/vue-app": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/vue-app/-/vue-app-2.17.2.tgz", - "integrity": "sha512-5bgothZDKBG9p1DKTvI74DfJDk+3fdRbjT6JMmiciyV55IMm7bE6eGVpcnUJ8bGjuKWSOiJbjaGG4qZ18EMd8Q==", - "dependencies": { - "node-fetch-native": "^1.4.0", - "ufo": "^1.3.1", - "unfetch": "^5.0.0", - "vue": "^2.7.10", - "vue-client-only": "^2.1.0", - "vue-meta": "^2.4.0", - "vue-no-ssr": "^1.1.1", - "vue-router": "^3.6.5", - "vue-template-compiler": "^2.7.15", - "vuex": "^3.6.2" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/vue-renderer": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/vue-renderer/-/vue-renderer-2.17.2.tgz", - "integrity": "sha512-08OaxLDwIqR/Wh0+CYhoMJTXz9C9hV5dBE1d4Pw39nUwWRe+eQRcFxrpeWyXMV//cvS6mwlBSYsAK3fjMF3uNA==", - "dependencies": { - "@nuxt/devalue": "^2.0.2", - "@nuxt/utils": "2.17.2", - "consola": "^3.2.3", - "defu": "^6.1.2", - "fs-extra": "^10.1.0", - "lodash": "^4.17.21", - "lru-cache": "^5.1.1", - "ufo": "^1.3.1", - "vue": "^2.7.10", - "vue-meta": "^2.4.0", - "vue-server-renderer": "^2.7.15" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/vue-renderer/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/vue-renderer/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/@nuxt/webpack": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/@nuxt/webpack/-/webpack-2.17.2.tgz", - "integrity": "sha512-QcV5Oo0ObpAG8bAiqYbIIf+SwhVJutTSOgf05NHob9VcPEXwCwDjO8zICrVgKvdjWnmlg5GFySaVMa407puE6g==", - "dependencies": { - "@babel/core": "^7.23.2", - "@nuxt/babel-preset-app": "2.17.2", - "@nuxt/friendly-errors-webpack-plugin": "^2.5.2", - "@nuxt/utils": "2.17.2", - "babel-loader": "^8.3.0", - "cache-loader": "^4.1.0", - "caniuse-lite": "^1.0.30001553", - "consola": "^3.2.3", - "css-loader": "^5.2.7", - "cssnano": "^6.0.1", - "eventsource-polyfill": "^0.9.6", - "extract-css-chunks-webpack-plugin": "^4.10.0", - "file-loader": "^6.2.0", - "glob": "^8.1.0", - "hard-source-webpack-plugin": "^0.13.1", - "hash-sum": "^2.0.0", - "html-webpack-plugin": "^4.5.1", - "lodash": "^4.17.21", - "memory-fs": "^0.5.0", - "optimize-css-assets-webpack-plugin": "^6.0.1", - "pify": "^5.0.0", - "pnp-webpack-plugin": "^1.7.0", - "postcss": "^8.4.31", - "postcss-import": "^15.1.0", - "postcss-import-resolver": "^2.0.0", - "postcss-loader": "^4.3.0", - "postcss-preset-env": "^9.2.0", - "postcss-url": "^10.1.3", - "semver": "^7.5.4", - "std-env": "^3.4.3", - "style-resources-loader": "^1.5.0", - "terser-webpack-plugin": "^4.2.3", - "thread-loader": "^3.0.4", - "time-fix-plugin": "^2.0.7", - "ufo": "^1.3.1", - "upath": "^2.0.1", - "url-loader": "^4.1.1", - "vue-loader": "^15.11.1", - "vue-style-loader": "^4.1.3", - "vue-template-compiler": "^2.7.15", - "watchpack": "^2.4.0", - "webpack": "^4.47.0", - "webpack-bundle-analyzer": "^4.9.1", - "webpack-dev-middleware": "^5.0.0", - "webpack-hot-middleware": "^2.25.4", - "webpack-node-externals": "^3.0.0", - "webpackbar": "^5.0.2" - }, - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/webpack/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dependencies": { - "balanced-match": "^1.0.0" - } - }, - "node_modules/@nuxt/webpack/node_modules/consola": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", - "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", - "engines": { - "node": "^14.18.0 || >=16.10.0" - } - }, - "node_modules/@nuxt/webpack/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/@nuxt/webpack/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/webpack/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/webpack/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/@nuxt/webpack/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/@nuxtjs/axios": { - "version": "5.13.6", - "resolved": "https://registry.npmjs.org/@nuxtjs/axios/-/axios-5.13.6.tgz", - "integrity": "sha512-XS+pOE0xsDODs1zAIbo95A0LKlilvJi8YW0NoXYuq3/jjxGgWDxizZ6Yx0AIIjZOoGsXJOPc0/BcnSEUQ2mFBA==", - "dependencies": { - "@nuxtjs/proxy": "^2.1.0", - "axios": "^0.21.1", - "axios-retry": "^3.1.9", - "consola": "^2.15.3", - "defu": "^5.0.0" - } - }, - "node_modules/@nuxtjs/google-analytics": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@nuxtjs/google-analytics/-/google-analytics-2.4.0.tgz", - "integrity": "sha512-rDQTwHIjyjVrx8GywHPuWykJ3jRFGaHl5Iqji/y8tQWUc0yGEeHxOoR0yimzxnTS1Ph2/PubQYpgnVeEPEdL/A==", - "dependencies": { - "vue-analytics": "^5.22.1" - } - }, - "node_modules/@nuxtjs/proxy": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/@nuxtjs/proxy/-/proxy-2.1.0.tgz", - "integrity": "sha512-/qtoeqXgZ4Mg6LRg/gDUZQrFpOlOdHrol/vQYMnKu3aN3bP90UfOUB3QSDghUUK7OISAJ0xp8Ld78aHyCTcKCQ==", - "dependencies": { - "http-proxy-middleware": "^1.0.6" - } - }, - "node_modules/@nuxtjs/youch": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/@nuxtjs/youch/-/youch-4.2.3.tgz", - "integrity": "sha512-XiTWdadTwtmL/IGkNqbVe+dOlT+IMvcBu7TvKI7plWhVQeBCQ9iKhk3jgvVWFyiwL2yHJDlEwOM5v9oVES5Xmw==", - "dependencies": { - "cookie": "^0.3.1", - "mustache": "^2.3.0", - "stack-trace": "0.0.10" - } - }, - "node_modules/@polka/url": { - "version": "1.0.0-next.24", - "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", - "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==" - }, - "node_modules/@sinclair/typebox": { - "version": "0.24.51", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", - "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", - "dev": true - }, - "node_modules/@sinonjs/commons": { - "version": "1.8.6", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", - "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", - "dev": true, - "dependencies": { - "type-detect": "4.0.8" - } - }, - "node_modules/@sinonjs/fake-timers": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", - "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", - "dev": true, - "dependencies": { - "@sinonjs/commons": "^1.7.0" - } - }, - "node_modules/@trysound/sax": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", - "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/@types/babel__core": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", - "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" - } - }, - "node_modules/@types/babel__generator": { - "version": "7.6.8", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", - "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", - "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__template": { - "version": "7.4.4", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", - "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", - "dev": true, - "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" - } - }, - "node_modules/@types/babel__traverse": { - "version": "7.20.4", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", - "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", - "dev": true, - "dependencies": { - "@babel/types": "^7.20.7" - } - }, - "node_modules/@types/graceful-fs": { - "version": "4.1.9", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", - "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", - "dev": true, - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/html-minifier-terser": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", - "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" - }, - "node_modules/@types/http-proxy": { - "version": "1.17.14", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", - "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", - "dependencies": { - "@types/node": "*" - } - }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", - "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", - "dev": true - }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", - "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "*" - } - }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", - "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-report": "*" - } - }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" - }, - "node_modules/@types/node": { - "version": "20.10.4", - "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.4.tgz", - "integrity": "sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==", - "dependencies": { - "undici-types": "~5.26.4" - } - }, - "node_modules/@types/parse-json": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", - "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" - }, - "node_modules/@types/prettier": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", - "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", - "dev": true - }, - "node_modules/@types/source-list-map": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", - "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==" - }, - "node_modules/@types/stack-utils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", - "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", - "dev": true - }, - "node_modules/@types/tapable": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", - "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==" - }, - "node_modules/@types/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-Hm/T0kV3ywpJyMGNbsItdivRhYNCQQf1IIsYsXnoVPES4t+FMLyDe0/K+Ea7ahWtMtSNb22ZdY7MIyoD9rqARg==", - "dependencies": { - "source-map": "^0.6.1" - } - }, - "node_modules/@types/webpack": { - "version": "4.41.38", - "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.38.tgz", - "integrity": "sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==", - "dependencies": { - "@types/node": "*", - "@types/tapable": "^1", - "@types/uglify-js": "*", - "@types/webpack-sources": "*", - "anymatch": "^3.0.0", - "source-map": "^0.6.0" - } - }, - "node_modules/@types/webpack-sources": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", - "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", - "dependencies": { - "@types/node": "*", - "@types/source-list-map": "*", - "source-map": "^0.7.3" - } - }, - "node_modules/@types/webpack-sources/node_modules/source-map": { - "version": "0.7.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", - "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", - "engines": { - "node": ">= 8" - } - }, - "node_modules/@types/yargs": { - "version": "17.0.32", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", - "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@types/yargs-parser": { - "version": "21.0.3", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", - "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", - "dev": true - }, - "node_modules/@vue/babel-helper-vue-jsx-merge-props": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz", - "integrity": "sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==" - }, - "node_modules/@vue/babel-plugin-transform-vue-jsx": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.4.0.tgz", - "integrity": "sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==", - "dependencies": { - "@babel/helper-module-imports": "^7.0.0", - "@babel/plugin-syntax-jsx": "^7.2.0", - "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", - "html-tags": "^2.0.0", - "lodash.kebabcase": "^4.1.1", - "svg-tags": "^1.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-preset-jsx": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.4.0.tgz", - "integrity": "sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==", - "dependencies": { - "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", - "@vue/babel-plugin-transform-vue-jsx": "^1.4.0", - "@vue/babel-sugar-composition-api-inject-h": "^1.4.0", - "@vue/babel-sugar-composition-api-render-instance": "^1.4.0", - "@vue/babel-sugar-functional-vue": "^1.4.0", - "@vue/babel-sugar-inject-h": "^1.4.0", - "@vue/babel-sugar-v-model": "^1.4.0", - "@vue/babel-sugar-v-on": "^1.4.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0", - "vue": "*" - }, - "peerDependenciesMeta": { - "vue": { - "optional": true - } - } - }, - "node_modules/@vue/babel-sugar-composition-api-inject-h": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.4.0.tgz", - "integrity": "sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==", - "dependencies": { - "@babel/plugin-syntax-jsx": "^7.2.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-sugar-composition-api-render-instance": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.4.0.tgz", - "integrity": "sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==", - "dependencies": { - "@babel/plugin-syntax-jsx": "^7.2.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-sugar-functional-vue": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.4.0.tgz", - "integrity": "sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==", - "dependencies": { - "@babel/plugin-syntax-jsx": "^7.2.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-sugar-inject-h": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.4.0.tgz", - "integrity": "sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==", - "dependencies": { - "@babel/plugin-syntax-jsx": "^7.2.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-sugar-v-model": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.4.0.tgz", - "integrity": "sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==", - "dependencies": { - "@babel/plugin-syntax-jsx": "^7.2.0", - "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", - "@vue/babel-plugin-transform-vue-jsx": "^1.4.0", - "camelcase": "^5.0.0", - "html-tags": "^2.0.0", - "svg-tags": "^1.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/babel-sugar-v-on": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.4.0.tgz", - "integrity": "sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==", - "dependencies": { - "@babel/plugin-syntax-jsx": "^7.2.0", - "@vue/babel-plugin-transform-vue-jsx": "^1.4.0", - "camelcase": "^5.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@vue/compiler-sfc": { - "version": "2.7.15", - "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz", - "integrity": "sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==", - "dependencies": { - "@babel/parser": "^7.18.4", - "postcss": "^8.4.14", - "source-map": "^0.6.1" - } - }, - "node_modules/@vue/component-compiler-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", - "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", - "dependencies": { - "consolidate": "^0.15.1", - "hash-sum": "^1.0.2", - "lru-cache": "^4.1.2", - "merge-source-map": "^1.1.0", - "postcss": "^7.0.36", - "postcss-selector-parser": "^6.0.2", - "source-map": "~0.6.1", - "vue-template-es2015-compiler": "^1.9.0" - }, - "optionalDependencies": { - "prettier": "^1.18.2 || ^2.0.0" - } - }, - "node_modules/@vue/component-compiler-utils/node_modules/hash-sum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==" - }, - "node_modules/@vue/component-compiler-utils/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "node_modules/@vue/component-compiler-utils/node_modules/picocolors": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", - "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" - }, - "node_modules/@vue/component-compiler-utils/node_modules/postcss": { - "version": "7.0.39", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", - "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", - "dependencies": { - "picocolors": "^0.2.1", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=6.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - } - }, - "node_modules/@vue/component-compiler-utils/node_modules/prettier": { - "version": "2.8.8", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", - "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", - "optional": true, - "bin": { - "prettier": "bin-prettier.js" - }, - "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/@vue/component-compiler-utils/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", - "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", - "dependencies": { - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0" - } - }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", - "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" - }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", - "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" - }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", - "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" - }, - "node_modules/@webassemblyjs/helper-code-frame": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", - "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", - "dependencies": { - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "node_modules/@webassemblyjs/helper-fsm": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", - "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" - }, - "node_modules/@webassemblyjs/helper-module-context": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", - "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0" - } - }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", - "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" - }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", - "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0" - } - }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", - "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", - "dependencies": { - "@xtuc/ieee754": "^1.2.0" - } - }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", - "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", - "dependencies": { - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", - "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" - }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", - "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/helper-wasm-section": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-opt": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "@webassemblyjs/wast-printer": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", - "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", - "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-buffer": "1.9.0", - "@webassemblyjs/wasm-gen": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", - "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-wasm-bytecode": "1.9.0", - "@webassemblyjs/ieee754": "1.9.0", - "@webassemblyjs/leb128": "1.9.0", - "@webassemblyjs/utf8": "1.9.0" - } - }, - "node_modules/@webassemblyjs/wast-parser": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", - "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/floating-point-hex-parser": "1.9.0", - "@webassemblyjs/helper-api-error": "1.9.0", - "@webassemblyjs/helper-code-frame": "1.9.0", - "@webassemblyjs/helper-fsm": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", - "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/wast-parser": "1.9.0", - "@xtuc/long": "4.2.2" - } - }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" - }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", - "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/acorn": { - "version": "6.4.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", - "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/acorn-walk": { - "version": "8.3.1", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", - "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", - "engines": { - "node": ">=0.4.0" - } - }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-errors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", - "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", - "peerDependencies": { - "ajv": ">=5.0.0" - } - }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", - "dependencies": { - "ajv": "^8.0.0" - }, - "peerDependencies": { - "ajv": "^8.0.0" - }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } - } - }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" - }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", - "peerDependencies": { - "ajv": "^6.9.1" - } - }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", - "dependencies": { - "string-width": "^4.1.0" - } - }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", - "dependencies": { - "type-fest": "^0.21.3" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" - } - }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", - "engines": { - "node": ">=8" - } - }, - "node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/anymatch": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", - "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", - "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" - }, - "node_modules/arg": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", - "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "dependencies": { - "sprintf-js": "~1.0.2" - } - }, - "node_modules/arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", - "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", - "dependencies": { - "call-bind": "^1.0.2", - "is-array-buffer": "^3.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", - "engines": { - "node": ">=8" - } - }, - "node_modules/array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/array.prototype.reduce": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", - "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", - "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "is-array-buffer": "^3.0.2", - "is-shared-array-buffer": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/asn1.js": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", - "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", - "dependencies": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "safer-buffer": "^2.1.0" - } - }, - "node_modules/asn1.js/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/assert": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", - "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", - "dependencies": { - "object.assign": "^4.1.4", - "util": "^0.10.4" - } - }, - "node_modules/assert/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" - }, - "node_modules/assert/node_modules/util": { - "version": "0.10.4", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", - "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", - "dependencies": { - "inherits": "2.0.3" - } - }, - "node_modules/assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/async-each": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", - "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "optional": true - }, - "node_modules/atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "bin": { - "atob": "bin/atob.js" - }, - "engines": { - "node": ">= 4.5.0" - } - }, - "node_modules/autoprefixer": { - "version": "10.4.16", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", - "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/autoprefixer" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "browserslist": "^4.21.10", - "caniuse-lite": "^1.0.30001538", - "fraction.js": "^4.3.6", - "normalize-range": "^0.1.2", - "picocolors": "^1.0.0", - "postcss-value-parser": "^4.2.0" - }, - "bin": { - "autoprefixer": "bin/autoprefixer" - }, - "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.1.0" - } - }, - "node_modules/available-typed-arrays": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", - "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/axios": { - "version": "0.21.4", - "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", - "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", - "dependencies": { - "follow-redirects": "^1.14.0" - } - }, - "node_modules/axios-retry": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/axios-retry/-/axios-retry-3.9.1.tgz", - "integrity": "sha512-8PJDLJv7qTTMMwdnbMvrLYuvB47M81wRtxQmEdV5w4rgbTXTt+vtPkXwajOfOdSyv/wZICJOC+/UhXH4aQ/R+w==", - "dependencies": { - "@babel/runtime": "^7.15.4", - "is-retry-allowed": "^2.2.0" - } - }, - "node_modules/babel-jest": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.3.tgz", - "integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==", - "dev": true, - "dependencies": { - "@jest/transform": "^28.1.3", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^28.1.3", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, - "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" - } - }, - "node_modules/babel-loader/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/babel-plugin-jest-hoist": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz", - "integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==", - "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.1.14", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz", - "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==", - "dependencies": { - "@babel/compat-data": "^7.22.6", - "@babel/helper-define-polyfill-provider": "^0.4.4", - "semver": "^6.3.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.8.7", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", - "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.4", - "core-js-compat": "^3.33.1" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz", - "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==", - "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.4.4" - }, - "peerDependencies": { - "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" - } - }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", - "dev": true, - "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/babel-preset-jest": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz", - "integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==", - "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^28.1.3", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" - }, - "node_modules/base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dependencies": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "engines": { - "node": "*" - } - }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", - "engines": { - "node": ">=8" - } - }, - "node_modules/bindings": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", - "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", - "optional": true, - "dependencies": { - "file-uri-to-path": "1.0.0" - } - }, - "node_modules/bluebird": { - "version": "3.7.2", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", - "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" - }, - "node_modules/bn.js": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", - "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" - }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" - }, - "node_modules/bootstrap": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz", - "integrity": "sha512-51Bbp/Uxr9aTuy6ca/8FbFloBUJZLHwnhTcnjIeRn2suQWsWzcuJhGjKDB5eppVte/8oCdOL3VuwxvZDUggwGQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/twbs" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/bootstrap" - } - ], - "peerDependencies": { - "jquery": "1.9.1 - 3", - "popper.js": "^1.16.1" - } - }, - "node_modules/bootstrap-vue": { - "version": "2.23.1", - "resolved": "https://registry.npmjs.org/bootstrap-vue/-/bootstrap-vue-2.23.1.tgz", - "integrity": "sha512-SEWkG4LzmMuWjQdSYmAQk1G/oOKm37dtNfjB5kxq0YafnL2W6qUAmeDTcIZVbPiQd2OQlIkWOMPBRGySk/zGsg==", - "hasInstallScript": true, - "dependencies": { - "@nuxt/opencollective": "^0.3.2", - "bootstrap": "^4.6.1", - "popper.js": "^1.16.1", - "portal-vue": "^2.1.7", - "vue-functional-data-merge": "^3.1.0" - } - }, - "node_modules/boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", - "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/boxen/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", - "dependencies": { - "fill-range": "^7.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" - }, - "node_modules/browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dependencies": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dependencies": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "node_modules/browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dependencies": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "node_modules/browserify-rsa": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", - "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", - "dependencies": { - "bn.js": "^5.0.0", - "randombytes": "^2.0.1" - } - }, - "node_modules/browserify-sign": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", - "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", - "dependencies": { - "bn.js": "^5.2.1", - "browserify-rsa": "^4.1.0", - "create-hash": "^1.2.0", - "create-hmac": "^1.1.7", - "elliptic": "^6.5.4", - "inherits": "^2.0.4", - "parse-asn1": "^5.1.6", - "readable-stream": "^3.6.2", - "safe-buffer": "^5.2.1" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/browserify-sign/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, - "engines": { - "node": ">= 6" - } - }, - "node_modules/browserify-sign/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dependencies": { - "pako": "~1.0.5" - } - }, - "node_modules/browserslist": { - "version": "4.22.2", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", - "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], - "dependencies": { - "caniuse-lite": "^1.0.30001565", - "electron-to-chromium": "^1.4.601", - "node-releases": "^2.0.14", - "update-browserslist-db": "^1.0.13" - }, - "bin": { - "browserslist": "cli.js" - }, - "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" - } - }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, - "dependencies": { - "node-int64": "^0.4.0" - } - }, - "node_modules/buffer": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", - "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "optional": true, - "peer": true, - "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.2.1" - } - }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" - }, - "node_modules/buffer-json": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz", - "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==" - }, - "node_modules/buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" - }, - "node_modules/builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" - }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", - "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/cacache/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cacache/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/cacache/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dependencies": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/cache-loader": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz", - "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==", - "dependencies": { - "buffer-json": "^2.0.0", - "find-cache-dir": "^3.0.0", - "loader-utils": "^1.2.3", - "mkdirp": "^0.5.1", - "neo-async": "^2.6.1", - "schema-utils": "^2.0.0" - }, - "engines": { - "node": ">= 8.9.0" - }, - "peerDependencies": { - "webpack": "^4.0.0" - } - }, - "node_modules/cache-loader/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" - } - }, - "node_modules/cache-loader/node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/call-bind": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", - "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", - "dependencies": { - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.1", - "set-function-length": "^1.1.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", - "engines": { - "node": ">=6" - } - }, - "node_modules/camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", - "dependencies": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" - } - }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", - "engines": { - "node": ">=6" - } - }, - "node_modules/caniuse-api": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", - "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", - "dependencies": { - "browserslist": "^4.0.0", - "caniuse-lite": "^1.0.0", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "node_modules/caniuse-lite": { - "version": "1.0.30001570", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz", - "integrity": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ] - }, - "node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", - "dev": true, - "engines": { - "node": ">=10" - } - }, - "node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" - }, - "node_modules/chart.js": { - "version": "3.9.1", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", - "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" - }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], - "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" - }, - "optionalDependencies": { - "fsevents": "~2.3.2" - } - }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", - "engines": { - "node": ">=6.0" - } - }, - "node_modules/ci-info": { - "version": "3.9.0", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", - "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/sibiraj-s" - } - ], - "engines": { - "node": ">=8" - } - }, - "node_modules/cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "node_modules/cjs-module-lexer": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", - "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", - "dev": true - }, - "node_modules/class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dependencies": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/class-utils/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/clean-css": { - "version": "4.2.4", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", - "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", - "dependencies": { - "source-map": "~0.6.0" - }, - "engines": { - "node": ">= 4.0" - } - }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", - "engines": { - "node": ">=6" - } - }, - "node_modules/cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", - "dependencies": { - "restore-cursor": "^3.1.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/cli-width": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", - "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", - "engines": { - "node": ">= 10" - } - }, - "node_modules/cliui": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", - "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", - "dev": true, - "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^7.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", - "dev": true, - "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" - } - }, - "node_modules/collect-v8-coverage": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", - "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", - "dev": true - }, - "node_modules/collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", - "dependencies": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", - "dependencies": { - "color-name": "~1.1.4" - }, - "engines": { - "node": ">=7.0.0" - } - }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - }, - "node_modules/colorette": { - "version": "2.0.20", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", - "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" - }, - "node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" - }, - "node_modules/component-emitter": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", - "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", - "dependencies": { - "mime-db": ">= 1.43.0 < 2" - }, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" - }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" - } - }, - "node_modules/connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dependencies": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/connect/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/connect/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/consola": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", - "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" - }, - "node_modules/console-browserify": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", - "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" - }, - "node_modules/consolidate": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", - "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==", - "deprecated": "Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog", - "dependencies": { - "bluebird": "^3.1.1" - }, - "engines": { - "node": ">= 0.10.0" - } - }, - "node_modules/constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" - }, - "node_modules/convert-source-map": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", - "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", - "dev": true - }, - "node_modules/cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/copy-concurrently": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", - "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", - "dependencies": { - "aproba": "^1.1.1", - "fs-write-stream-atomic": "^1.0.8", - "iferr": "^0.1.5", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.0" - } - }, - "node_modules/copy-concurrently/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/core-js": { - "version": "3.34.0", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.34.0.tgz", - "integrity": "sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==", - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-js-compat": { - "version": "3.34.0", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.34.0.tgz", - "integrity": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==", - "dependencies": { - "browserslist": "^4.22.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" - } - }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/crc": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/crc/-/crc-4.3.2.tgz", - "integrity": "sha512-uGDHf4KLLh2zsHa8D8hIQ1H/HtFQhyHrc0uhHBcoKGol/Xnb+MPYfUMw7cvON6ze/GUESTudKayDcJC5HnJv1A==", - "engines": { - "node": ">=12" - }, - "peerDependencies": { - "buffer": ">=6.0.3" - }, - "peerDependenciesMeta": { - "buffer": { - "optional": true - } - } - }, - "node_modules/create-ecdh": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", - "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", - "dependencies": { - "bn.js": "^4.1.0", - "elliptic": "^6.5.3" - } - }, - "node_modules/create-ecdh/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dependencies": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "node_modules/create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dependencies": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dependencies": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - }, - "engines": { - "node": "*" - } - }, - "node_modules/css-blank-pseudo": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-6.0.1.tgz", - "integrity": "sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-selector-parser": "^6.0.13" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/css-declaration-sorter": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", - "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.0.9" - } - }, - "node_modules/css-has-pseudo": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-6.0.1.tgz", - "integrity": "sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "@csstools/selector-specificity": "^3.0.1", - "postcss-selector-parser": "^6.0.13", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/css-loader": { - "version": "5.2.7", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", - "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", - "dependencies": { - "icss-utils": "^5.1.0", - "loader-utils": "^2.0.0", - "postcss": "^8.2.15", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.1.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.5" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.27.0 || ^5.0.0" - } - }, - "node_modules/css-loader/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/css-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/css-loader/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/css-loader/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/css-prefers-color-scheme": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.1.tgz", - "integrity": "sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/css-select": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", - "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.1.0", - "domhandler": "^5.0.2", - "domutils": "^3.0.1", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/css-tree": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", - "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", - "dependencies": { - "mdn-data": "2.0.30", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" - } - }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", - "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } - }, - "node_modules/cssdb": { - "version": "7.9.1", - "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.9.1.tgz", - "integrity": "sha512-fqy6ZnNfpb8qAvTT0qijWyTsUmYThsDX2F2ctMG4ceI7mI4DtsMILSiMBiuuDnVIYTyWvCctdp9Nb08p/6m2SQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - } - ] - }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", - "bin": { - "cssesc": "bin/cssesc" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/cssnano": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.2.tgz", - "integrity": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==", - "dependencies": { - "cssnano-preset-default": "^6.0.2", - "lilconfig": "^3.0.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/cssnano-preset-default": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.2.tgz", - "integrity": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==", - "dependencies": { - "css-declaration-sorter": "^7.0.0", - "cssnano-utils": "^4.0.1", - "postcss-calc": "^9.0.1", - "postcss-colormin": "^6.0.1", - "postcss-convert-values": "^6.0.1", - "postcss-discard-comments": "^6.0.1", - "postcss-discard-duplicates": "^6.0.1", - "postcss-discard-empty": "^6.0.1", - "postcss-discard-overridden": "^6.0.1", - "postcss-merge-longhand": "^6.0.1", - "postcss-merge-rules": "^6.0.2", - "postcss-minify-font-values": "^6.0.1", - "postcss-minify-gradients": "^6.0.1", - "postcss-minify-params": "^6.0.1", - "postcss-minify-selectors": "^6.0.1", - "postcss-normalize-charset": "^6.0.1", - "postcss-normalize-display-values": "^6.0.1", - "postcss-normalize-positions": "^6.0.1", - "postcss-normalize-repeat-style": "^6.0.1", - "postcss-normalize-string": "^6.0.1", - "postcss-normalize-timing-functions": "^6.0.1", - "postcss-normalize-unicode": "^6.0.1", - "postcss-normalize-url": "^6.0.1", - "postcss-normalize-whitespace": "^6.0.1", - "postcss-ordered-values": "^6.0.1", - "postcss-reduce-initial": "^6.0.1", - "postcss-reduce-transforms": "^6.0.1", - "postcss-svgo": "^6.0.1", - "postcss-unique-selectors": "^6.0.1" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/cssnano-utils": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", - "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" - } - }, - "node_modules/csso": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", - "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", - "dependencies": { - "css-tree": "~2.2.0" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/css-tree": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", - "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", - "dependencies": { - "mdn-data": "2.0.28", - "source-map-js": "^1.0.1" - }, - "engines": { - "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", - "npm": ">=7.0.0" - } - }, - "node_modules/csso/node_modules/mdn-data": { - "version": "2.0.28", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", - "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" - }, - "node_modules/csstype": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", - "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" - }, - "node_modules/csv-parse": { - "version": "5.5.3", - "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.3.tgz", - "integrity": "sha512-v0KW6C0qlZzoGjk6u5tLmVfyZxNgPGXZsWTXshpAgKVGmGXzaVWGdlCFxNx5iuzcXT/oJN1HHM9DZKwtAtYa+A==", - "dev": true - }, - "node_modules/cuint": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", - "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==" - }, - "node_modules/cyclist": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz", - "integrity": "sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==" - }, - "node_modules/de-indent": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", - "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==" - }, - "node_modules/debounce": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", - "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" - }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", - "dependencies": { - "ms": "2.1.2" - }, - "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } - } - }, - "node_modules/decode-uri-component": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", - "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", - "engines": { - "node": ">=0.10" - } - }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", - "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/define-data-property": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", - "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", - "dependencies": { - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dependencies": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/defu": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/defu/-/defu-5.0.1.tgz", - "integrity": "sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==" - }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/des.js": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", - "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", - "dependencies": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "node_modules/destr": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.2.tgz", - "integrity": "sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==" - }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", - "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" - } - }, - "node_modules/detect-indent": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", - "integrity": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==", - "engines": { - "node": ">=4" - } - }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/devalue": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/devalue/-/devalue-2.0.1.tgz", - "integrity": "sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q==" - }, - "node_modules/diff-sequences": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz", - "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", - "dev": true, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dependencies": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "node_modules/diffie-hellman/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", - "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "dependencies": { - "utila": "~0.4" - } - }, - "node_modules/dom-serializer": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", - "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", - "dependencies": { - "domelementtype": "^2.3.0", - "domhandler": "^5.0.2", - "entities": "^4.2.0" - }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" - } - }, - "node_modules/domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "engines": { - "node": ">=0.4", - "npm": ">=1.2" - } - }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domhandler": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", - "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", - "dependencies": { - "domelementtype": "^2.3.0" - }, - "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" - } - }, - "node_modules/domutils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", - "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", - "dependencies": { - "dom-serializer": "^2.0.0", - "domelementtype": "^2.3.0", - "domhandler": "^5.0.3" - }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" - } - }, - "node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-case/node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dependencies": { - "tslib": "^2.0.3" - } - }, - "node_modules/dot-case/node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", - "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/dot-case/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/dotenv": { - "version": "16.3.1", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", - "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/motdotla/dotenv?sponsor=1" - } - }, - "node_modules/duplexer": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", - "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" - }, - "node_modules/duplexify": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", - "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", - "dependencies": { - "end-of-stream": "^1.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.0.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" - }, - "node_modules/electron-to-chromium": { - "version": "1.4.614", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.614.tgz", - "integrity": "sha512-X4ze/9Sc3QWs6h92yerwqv7aB/uU8vCjZcrMjA8N9R1pjMFRe44dLsck5FzLilOYvcXuDn93B+bpGYyufc70gQ==" - }, - "node_modules/elliptic": { - "version": "6.5.4", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", - "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", - "dependencies": { - "bn.js": "^4.11.9", - "brorand": "^1.1.0", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.1", - "inherits": "^2.0.4", - "minimalistic-assert": "^1.0.1", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "node_modules/elliptic/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/emittery": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", - "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" - } - }, - "node_modules/emoji-regex": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", - "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", - "engines": { - "node": ">= 4" - } - }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" - } - }, - "node_modules/enhanced-resolve": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", - "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", - "dependencies": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - }, - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/entities": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", - "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", - "engines": { - "node": ">=0.12" - }, - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/errno": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", - "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", - "dependencies": { - "prr": "~1.0.1" - }, - "bin": { - "errno": "cli.js" - } - }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dependencies": { - "is-arrayish": "^0.2.1" - } - }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", - "dependencies": { - "stackframe": "^1.3.4" - } - }, - "node_modules/es-abstract": { - "version": "1.22.3", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", - "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", - "dependencies": { - "array-buffer-byte-length": "^1.0.0", - "arraybuffer.prototype.slice": "^1.0.2", - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.5", - "es-set-tostringtag": "^2.0.1", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.2", - "get-symbol-description": "^1.0.0", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0", - "internal-slot": "^1.0.5", - "is-array-buffer": "^3.0.2", - "is-callable": "^1.2.7", - "is-negative-zero": "^2.0.2", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.12", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.5.1", - "safe-array-concat": "^1.0.1", - "safe-regex-test": "^1.0.0", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.0", - "typed-array-byte-length": "^1.0.0", - "typed-array-byte-offset": "^1.0.0", - "typed-array-length": "^1.0.4", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.13" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" - }, - "node_modules/es-set-tostringtag": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", - "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", - "dependencies": { - "get-intrinsic": "^1.2.2", - "has-tostringtag": "^1.0.0", - "hasown": "^2.0.0" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", - "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", - "engines": { - "node": ">=6" - } - }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", - "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/eslint-scope": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", - "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", - "dependencies": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" - }, - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", - "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", - "dependencies": { - "estraverse": "^5.2.0" - }, - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esrecurse/node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "engines": { - "node": ">=4.0" - } - }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" - }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", - "engines": { - "node": ">=0.8.x" - } - }, - "node_modules/eventsource-polyfill": { - "version": "0.9.6", - "resolved": "https://registry.npmjs.org/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz", - "integrity": "sha512-LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg==" - }, - "node_modules/evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dependencies": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" - } - }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", - "dependencies": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/expand-brackets/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dependencies": { - "is-descriptor": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" - }, - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/expand-brackets/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/expand-brackets/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/expect": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz", - "integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==", - "dev": true, - "dependencies": { - "@jest/expect-utils": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", - "dependencies": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", - "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dependencies": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", - "dependencies": { - "is-descriptor": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extglob/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/extract-css-chunks-webpack-plugin": { - "version": "4.10.0", - "resolved": "https://registry.npmjs.org/extract-css-chunks-webpack-plugin/-/extract-css-chunks-webpack-plugin-4.10.0.tgz", - "integrity": "sha512-D/wb/Tbexq8XMBl4uhthto25WBaHI9P8vucDdzwPtLTyVi4Rdw/aiRLSL2rHaF6jZfPAjThWXepFU9PXsdtIbA==", - "dependencies": { - "loader-utils": "^2.0.4", - "normalize-url": "1.9.1", - "schema-utils": "^1.0.0", - "webpack-sources": "^1.1.0" - }, - "engines": { - "node": ">= 6.9.0" - }, - "peerDependencies": { - "webpack": "^4.4.0 || ^5.0.0" - } - }, - "node_modules/extract-css-chunks-webpack-plugin/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" - }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", - "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" - } - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fastq": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", - "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/fb-watchman": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", - "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", - "dev": true, - "dependencies": { - "bser": "2.1.1" - } - }, - "node_modules/figgy-pudding": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", - "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", - "deprecated": "This module is no longer supported." - }, - "node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", - "dependencies": { - "escape-string-regexp": "^1.0.5" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/file-loader": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", - "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", - "dependencies": { - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" - } - }, - "node_modules/file-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, - "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - } - }, - "node_modules/file-uri-to-path": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", - "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", - "optional": true - }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", - "dependencies": { - "to-regex-range": "^5.0.1" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" - } - }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } - }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" - } - }, - "node_modules/find-cache-dir/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", - "dependencies": { - "semver": "^6.0.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", - "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/flat": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", - "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", - "bin": { - "flat": "cli.js" - } - }, - "node_modules/flush-write-stream": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", - "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", - "dependencies": { - "inherits": "^2.0.3", - "readable-stream": "^2.3.6" - } - }, - "node_modules/follow-redirects": { - "version": "1.15.3", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", - "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], - "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } - } - }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", - "dependencies": { - "is-callable": "^1.1.3" - } - }, - "node_modules/for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fraction.js": { - "version": "4.3.7", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", - "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://github.com/sponsors/rawify" - } - }, - "node_modules/fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", - "dependencies": { - "map-cache": "^0.2.2" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/from2": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", - "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", - "dependencies": { - "inherits": "^2.0.1", - "readable-stream": "^2.0.0" - } - }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } - }, - "node_modules/fs-memo": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fs-memo/-/fs-memo-1.2.0.tgz", - "integrity": "sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==" - }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", - "dependencies": { - "minipass": "^3.0.0" - }, - "engines": { - "node": ">= 8" - } - }, - "node_modules/fs-monkey": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", - "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" - }, - "node_modules/fs-write-stream-atomic": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", - "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", - "dependencies": { - "graceful-fs": "^4.1.2", - "iferr": "^0.1.5", - "imurmurhash": "^0.1.4", - "readable-stream": "1 || 2" - } - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" - }, - "node_modules/fsevents": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", - "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" - } - }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", - "engines": { - "node": ">=6.9.0" - } - }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", - "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" - } - }, - "node_modules/get-intrinsic": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", - "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", - "dependencies": { - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", - "dev": true, - "engines": { - "node": ">=8.0.0" - } - }, - "node_modules/get-port-please": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-2.6.1.tgz", - "integrity": "sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==", - "dependencies": { - "fs-memo": "^1.2.0" - } - }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/get-symbol-description": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", - "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/git-config-path": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", - "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", - "engines": { - "node": ">=4" - } - }, - "node_modules/git-up": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", - "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", - "dependencies": { - "is-ssh": "^1.4.0", - "parse-url": "^8.1.0" - } - }, - "node_modules/git-url-parse": { - "version": "13.1.1", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.1.tgz", - "integrity": "sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==", - "dependencies": { - "git-up": "^7.0.0" - } - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, - "engines": { - "node": "*" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=12" } }, - "node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", - "dependencies": { - "is-glob": "^4.0.1" - }, + "node_modules/@esbuild/android-arm": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.10.tgz", + "integrity": "sha512-7W0bK7qfkw1fc2viBfrtAEkDKHatYfHzr/jKAHNr9BvkYDXPcC6bodtm8AyLJNNuqClLNaeTLuwURt4PRT9d7w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 6" + "node": ">=12" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" - }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/@esbuild/android-arm64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.10.tgz", + "integrity": "sha512-1X4CClKhDgC3by7k8aOWZeBXQX8dHT5QAMCAQDArCLaYfkppoARvh0fit3X2Qs+MXDngKcHv6XXyQCpY0hkK1Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", - "dependencies": { - "define-properties": "^1.1.3" - }, + "node_modules/@esbuild/android-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.10.tgz", + "integrity": "sha512-O/nO/g+/7NlitUxETkUv/IvADKuZXyH4BHf/g/7laqKC4i/7whLpB0gvpPc2zpF0q9Q6FXS3TS75QHac9MvVWw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", - "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" - }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.10.tgz", + "integrity": "sha512-YSRRs2zOpwypck+6GL3wGXx2gNP7DXzetmo5pHXLrY/VIMsS59yKfjPizQ4lLt5vEI80M41gjm2BxrGZ5U+VMA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dependencies": { - "get-intrinsic": "^1.1.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/graceful-fs": { - "version": "4.2.11", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", - "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" - }, - "node_modules/gzip-size": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", - "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", - "dependencies": { - "duplexer": "^0.1.2" - }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.10.tgz", + "integrity": "sha512-alfGtT+IEICKtNE54hbvPg13xGBe4GkVxyGWtzr+yHO7HIiRJppPDhOKq3zstTcVf8msXb/t4eavW3jCDpMSmA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/hable": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/hable/-/hable-3.0.0.tgz", - "integrity": "sha512-7+G0/2/COR8pwteYFqHIVYfQpuEiO2HXwJrhCBJVgrNrl9O5eaUoJVDGXUJX+0RpGncNVTuestexjk1afj01wQ==" - }, - "node_modules/hard-source-webpack-plugin": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/hard-source-webpack-plugin/-/hard-source-webpack-plugin-0.13.1.tgz", - "integrity": "sha512-r9zf5Wq7IqJHdVAQsZ4OP+dcUSvoHqDMxJlIzaE2J0TZWn3UjMMrHqwDHR8Jr/pzPfG7XxSe36E7Y8QGNdtuAw==", - "dependencies": { - "chalk": "^2.4.1", - "find-cache-dir": "^2.0.0", - "graceful-fs": "^4.1.11", - "lodash": "^4.15.0", - "mkdirp": "^0.5.1", - "node-object-hash": "^1.2.0", - "parse-json": "^4.0.0", - "pkg-dir": "^3.0.0", - "rimraf": "^2.6.2", - "semver": "^5.6.0", - "tapable": "^1.0.0-beta.5", - "webpack-sources": "^1.0.1", - "write-json-file": "^2.3.0" - }, - "engines": { - "node": ">=8.0.0" - }, - "peerDependencies": { - "webpack": "*" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dependencies": { - "color-convert": "^1.9.0" - }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.10.tgz", + "integrity": "sha512-dMtk1wc7FSH8CCkE854GyGuNKCewlh+7heYP/sclpOG6Cectzk14qdUIY5CrKDbkA/OczXq9WesqnPl09mj5dg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.10.tgz", + "integrity": "sha512-G5UPPspryHu1T3uX8WiOEUa6q6OlQh6gNl4CO4Iw5PS+Kg5bVggVFehzXBJY6X6RSOMS8iXDv2330VzaObm4Ag==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=4" - } - }, - "node_modules/hard-source-webpack-plugin/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dependencies": { - "color-name": "1.1.3" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" - }, - "node_modules/hard-source-webpack-plugin/node_modules/find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, + "node_modules/@esbuild/linux-arm": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.10.tgz", + "integrity": "sha512-j6gUW5aAaPgD416Hk9FHxn27On28H4eVI9rJ4az7oCGTFW48+LcgNDBN+9f8rKZz7EEowo889CPKyeaD0iw9Kg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dependencies": { - "locate-path": "^3.0.0" - }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.10.tgz", + "integrity": "sha512-QxaouHWZ+2KWEj7cGJmvTIHVALfhpGxo3WLmlYfJ+dA5fJB6lDEIg+oe/0//FuyVHuS3l79/wyBxbHr0NgtxJQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/@esbuild/linux-ia32": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.10.tgz", + "integrity": "sha512-4ub1YwXxYjj9h1UIZs2hYbnTZBtenPw5NfXCRgEkGb0b6OJ2gpkMvDqRDYIDRjRdWSe/TBiZltm3Y3Q8SN1xNg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.10.tgz", + "integrity": "sha512-lo3I9k+mbEKoxtoIbM0yC/MZ1i2wM0cIeOejlVdZ3D86LAcFXFRdeuZmh91QJvUTW51bOK5W2BznGNIl4+mDaA==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" - }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.10.tgz", + "integrity": "sha512-J4gH3zhHNbdZN0Bcr1QUGVNkHTdpijgx5VMxeetSk6ntdt+vR1DqGmHxQYHRmNb77tP6GVvD+K0NyO4xjd7y4A==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.10.tgz", + "integrity": "sha512-tgT/7u+QhV6ge8wFMzaklOY7KqiyitgT1AUHMApau32ZlvTB/+efeCtMk4eXS+uEymYK249JsoiklZN64xt6oQ==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dependencies": { - "p-limit": "^2.0.0" - }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.10.tgz", + "integrity": "sha512-0f/spw0PfBMZBNqtKe5FLzBDGo0SKZKvMl5PHYQr3+eiSscfJ96XEknCe+JoOayybWUFQbcJTrk946i3j9uYZA==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", - "dependencies": { - "error-ex": "^1.3.1", - "json-parse-better-errors": "^1.0.1" - }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.10.tgz", + "integrity": "sha512-pZFe0OeskMHzHa9U38g+z8Yx5FNCLFtUnJtQMpwhS+r4S566aK2ci3t4NCP4tjt6d5j5uo4h7tExZMjeKoehAA==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/@esbuild/linux-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.10.tgz", + "integrity": "sha512-SpYNEqg/6pZYoc+1zLCjVOYvxfZVZj6w0KROZ3Fje/QrM3nfvT2llI+wmKSrWuX6wmZeTapbarvuNNK/qepSgA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "node_modules/@esbuild/netbsd-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.10.tgz", + "integrity": "sha512-ACbZ0vXy9zksNArWlk2c38NdKg25+L9pr/mVaj9SUq6lHZu/35nx2xnQVRGLrC1KKQqJKRIB0q8GspiHI3J80Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dependencies": { - "find-up": "^3.0.0" - }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.10.tgz", + "integrity": "sha512-PxcgvjdSjtgPMiPQrM3pwSaG4kGphP+bLSb+cihuP0LYdZv1epbAIecHVl5sD3npkfYBZ0ZnOjR878I7MdJDFg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dependencies": { - "glob": "^7.1.3" - }, - "bin": { - "rimraf": "bin.js" + "node_modules/@esbuild/sunos-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.10.tgz", + "integrity": "sha512-ZkIOtrRL8SEJjr+VHjmW0znkPs+oJXhlJbNwfI37rvgeMtk3sxOQevXPXjmAPZPigVTncvFqLMd+uV0IBSEzqA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" + "node_modules/@esbuild/win32-arm64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.10.tgz", + "integrity": "sha512-+Sa4oTDbpBfGpl3Hn3XiUe4f8TU2JF7aX8cOfqFYMMjXp6ma6NJDztl5FDG8Ezx0OjwGikIHw+iA54YLDNNVfw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "node_modules/hard-source-webpack-plugin/node_modules/supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dependencies": { - "has-flag": "^3.0.0" - }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.10.tgz", + "integrity": "sha512-EOGVLK1oWMBXgfttJdPHDTiivYSjX6jDNaATeNOaCOFEVcfMjtbx7WVQwPSE1eIfCp/CaSF2nSrDtzc4I9f8TQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/@esbuild/win32-x64": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.10.tgz", + "integrity": "sha512-whqLG6Sc70AbU73fFYvuYzaE4MNMBIlR1Y/IrUeOXFrWHxBEjjbZaQ3IXIQS8wJdAzue2GwYZCjOrgrU1oUHoA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@fastify/busboy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@fastify/busboy/-/busboy-2.1.0.tgz", + "integrity": "sha512-+KpH+QxZU7O4675t3mnkQKcZZg56u+K/Ct2K+N2AZYNVK8kyeo/bI18tI8aPm3tvNNRyTWfj6s5tnGNlcbQRsA==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=14" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", - "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "node_modules/@ioredis/commands": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ioredis/commands/-/commands-1.2.0.tgz", + "integrity": "sha512-Sx1pU8EM64o2BrqNpEO1CNLtKQwyhuXuqyfH7oGKCk+1a33d2r5saW8zNwm3j6BTExtjrv2BxTgzzkMwts6vGg==", + "dev": true + }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2" + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=12" } }, - "node_modules/has-proto": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", - "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/has-tostringtag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", - "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "node_modules/@isaacs/cliui/node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", - "dependencies": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "engines": { - "node": ">=0.10.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, "dependencies": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" + "ansi-regex": "^6.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dependencies": { - "kind-of": "^3.0.2" + "node": ">=12" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/has-values/node_modules/kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", - "dependencies": { - "is-buffer": "^1.1.5" + "node": ">=12" }, - "engines": { - "node": ">=0.10.0" + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/hash-base": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", - "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, "dependencies": { - "inherits": "^2.0.4", - "readable-stream": "^3.6.0", - "safe-buffer": "^5.2.0" + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" }, "engines": { - "node": ">=4" + "node": ">=6.0.0" } }, - "node_modules/hash-base/node_modules/readable-stream": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", - "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", - "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" - }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, "engines": { - "node": ">= 6" - } - }, - "node_modules/hash-base/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/hash-sum": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", - "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" - }, - "node_modules/hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dependencies": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" + "node": ">=6.0.0" } }, - "node_modules/hasown": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", - "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", - "dependencies": { - "function-bind": "^1.1.2" - }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "bin": { - "he": "bin/he" - } - }, - "node_modules/hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", - "dependencies": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" + "node": ">=6.0.0" } }, - "node_modules/html-entities": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", - "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/mdevils" - }, - { - "type": "patreon", - "url": "https://patreon.com/mdevils" - } - ] - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" - }, - "node_modules/html-minifier": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz", - "integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==", + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, "dependencies": { - "camel-case": "^3.0.0", - "clean-css": "^4.2.1", - "commander": "^2.19.0", - "he": "^1.2.0", - "param-case": "^2.1.1", - "relateurl": "^0.2.7", - "uglify-js": "^3.5.1" - }, - "bin": { - "html-minifier": "cli.js" - }, - "engines": { - "node": ">=6" + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" } }, - "node_modules/html-minifier-terser": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", - "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", - "dependencies": { - "camel-case": "^4.1.1", - "clean-css": "^4.2.3", - "commander": "^4.1.1", - "he": "^1.2.0", - "param-case": "^3.0.3", - "relateurl": "^0.2.7", - "terser": "^4.6.3" - }, - "bin": { - "html-minifier-terser": "cli.js" - }, - "engines": { - "node": ">=6" - } + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" }, - "node_modules/html-minifier-terser/node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dev": true, "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, - "node_modules/html-minifier-terser/node_modules/commander": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", - "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", - "engines": { - "node": ">= 6" - } + "node_modules/@kurkle/color": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/@kurkle/color/-/color-0.3.2.tgz", + "integrity": "sha512-fuscdXJ9G1qb7W8VdHi+IwRqij3lBkosAm4ydQtEmbY58OzHXqQhvlxqEkoz0yssNVn38bcpRWgA9PP+OGoisw==" }, - "node_modules/html-minifier-terser/node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "node_modules/@kwsites/file-exists": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@kwsites/file-exists/-/file-exists-1.1.1.tgz", + "integrity": "sha512-m9/5YGR18lIwxSFDwfE3oA7bWuq9kdau6ugN4H2rJeyhFQZcG9AgSHkQtSD15a8WvTgfz9aikZMrKPHvbpqFiw==", + "dev": true, "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "debug": "^4.1.1" } }, - "node_modules/html-minifier-terser/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + "node_modules/@kwsites/promise-deferred": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@kwsites/promise-deferred/-/promise-deferred-1.1.1.tgz", + "integrity": "sha512-GaHYm+c0O9MjZRu0ongGBRbinu8gVAMd2UZjji6jVmqKtZluZnptXGWhz1E8j8D2HJ3f/yMxKAUC0b+57wncIw==", + "dev": true }, - "node_modules/html-tags": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", - "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", - "engines": { - "node": ">=4" + "node_modules/@mapbox/node-pre-gyp": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@mapbox/node-pre-gyp/-/node-pre-gyp-1.0.11.tgz", + "integrity": "sha512-Yhlar6v9WQgUp/He7BdgzOz8lqMQ8sU+jkCq7Wx8Myc5YFJLbEe7lgui/V7G1qB1DJykHSGwreceSaD60Y0PUQ==", + "dev": true, + "dependencies": { + "detect-libc": "^2.0.0", + "https-proxy-agent": "^5.0.0", + "make-dir": "^3.1.0", + "node-fetch": "^2.6.7", + "nopt": "^5.0.0", + "npmlog": "^5.0.1", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.11" + }, + "bin": { + "node-pre-gyp": "bin/node-pre-gyp" } }, - "node_modules/html-webpack-plugin": { - "version": "4.5.2", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", - "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "node_modules/@mapbox/node-pre-gyp/node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, "dependencies": { - "@types/html-minifier-terser": "^5.0.0", - "@types/tapable": "^1.0.5", - "@types/webpack": "^4.41.8", - "html-minifier-terser": "^5.0.1", - "loader-utils": "^1.2.3", - "lodash": "^4.17.20", - "pretty-error": "^2.1.1", - "tapable": "^1.1.3", - "util.promisify": "1.0.0" + "debug": "4" }, "engines": { - "node": ">=6.9" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "node": ">= 6.0.0" } }, - "node_modules/html-webpack-plugin/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/@mapbox/node-pre-gyp/node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, "dependencies": { - "minimist": "^1.2.0" + "agent-base": "6", + "debug": "4" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">= 6" } }, - "node_modules/html-webpack-plugin/node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "node_modules/@netlify/functions": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@netlify/functions/-/functions-2.4.1.tgz", + "integrity": "sha512-sRFYBaz6dJP1MdUtk/5QNmshhg5UDmB+DUssmH6v9WUG85MrwyExEfGfJA5eClXATjXm0coTvO5nLAlyCpK7QQ==", + "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "@netlify/serverless-functions-api": "1.12.3", + "is-promise": "^4.0.0" }, "engines": { - "node": ">=4.0.0" + "node": ">=14.0.0" } }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "node_modules/@netlify/node-cookies": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@netlify/node-cookies/-/node-cookies-0.1.0.tgz", + "integrity": "sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==", + "dev": true, + "engines": { + "node": "^14.16.0 || >=16.0.0" } }, - "node_modules/htmlparser2/node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/@netlify/serverless-functions-api": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/@netlify/serverless-functions-api/-/serverless-functions-api-1.12.3.tgz", + "integrity": "sha512-g1AZ78pCvMnalZtbnViVLGfG5ufjKyKoi3plLSUtZqh0wVuMR7ZGegeZHhOoY4wRfkkETVvWfhgfcpLMbGM5Lg==", + "dev": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "@netlify/node-cookies": "^0.1.0", + "urlpattern-polyfill": "8.0.2" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "engines": { + "node": "^14.18.0 || >=16.0.0" } }, - "node_modules/htmlparser2/node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, "dependencies": { - "domelementtype": "^2.2.0" + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" }, "engines": { - "node": ">= 4" - }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" } }, - "node_modules/htmlparser2/node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "engines": { + "node": ">= 8" } }, - "node_modules/htmlparser2/node_modules/entities": { + "node_modules/@npmcli/agent": { "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "resolved": "https://registry.npmjs.org/@npmcli/agent/-/agent-2.2.0.tgz", + "integrity": "sha512-2yThA1Es98orMkpSLVqlDZAMPK3jHJhifP2gnNUdk1754uZ8yI5c+ulCoVG+WlntQA6MzhrURMXjSd9Z7dJ2/Q==", + "dev": true, "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "agent-base": "^7.1.0", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.1", + "lru-cache": "^10.0.1", + "socks-proxy-agent": "^8.0.1" }, "engines": { - "node": ">= 0.8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/http-errors/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "node_modules/@npmcli/agent/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, "engines": { - "node": ">= 0.8" + "node": "14 || >=16.14" } }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "node_modules/@npmcli/fs": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-3.1.0.tgz", + "integrity": "sha512-7kZUAaLscfgbwBQRbvdMYaZOWyMEcPTH/tJjnyAWJ/dvvs9Ef+CERx/qJb9GExJpl1qipaDGn7KqHnFGGixd0w==", + "dev": true, "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" + "semver": "^7.3.5" }, "engines": { - "node": ">=8.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/http-proxy-middleware": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", - "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", + "node_modules/@npmcli/git": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/@npmcli/git/-/git-5.0.3.tgz", + "integrity": "sha512-UZp9NwK+AynTrKvHn5k3KviW/hA5eENmFsu3iAPe7sWRt0lFUdsY/wXIYjpDFe7cdSNwOIzbObfwgt6eL5/2zw==", + "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.5", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "@npmcli/promise-spawn": "^7.0.0", + "lru-cache": "^10.0.1", + "npm-pick-manifest": "^9.0.0", + "proc-log": "^3.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^4.0.0" }, "engines": { - "node": ">=8.0.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + "node_modules/@npmcli/git/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, + "engines": { + "node": ">=16" + } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/@npmcli/git/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, "engines": { - "node": ">=10.17.0" + "node": "14 || >=16.14" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/@npmcli/git/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" }, "engines": { - "node": ">=0.10.0" + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", - "engines": { - "node": "^10 || ^12 || >= 14" + "node_modules/@npmcli/installed-package-contents": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/installed-package-contents/-/installed-package-contents-2.0.2.tgz", + "integrity": "sha512-xACzLPhnfD51GKvTOOuNX2/V4G4mz9/1I2MfDoye9kBM3RYe5g2YbscsaGoTlaWqkxeiapBWyseULVKpSVHtKQ==", + "dev": true, + "dependencies": { + "npm-bundled": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "bin": { + "installed-package-contents": "lib/index.js" + }, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/iferr": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", - "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==" - }, - "node_modules/ignore": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", - "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "node_modules/@npmcli/node-gyp": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/node-gyp/-/node-gyp-3.0.0.tgz", + "integrity": "sha512-gp8pRXC2oOxu0DUE1/M3bYtb1b3/DbJ5aM113+XJBgfXdussRAsX0YOrOhdd8WvnAR6auDBvJomGAkLKA5ydxA==", + "dev": true, "engines": { - "node": ">= 4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/@npmcli/promise-spawn": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/@npmcli/promise-spawn/-/promise-spawn-7.0.0.tgz", + "integrity": "sha512-wBqcGsMELZna0jDblGd7UXgOby45TQaMWmbFwWX+SEotk4HV6zG2t6rT9siyLhPk4P6YYqgfL1UO8nMWDBVJXQ==", + "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "which": "^4.0.0" }, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/import-fresh/node_modules/resolve-from": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "node_modules/@npmcli/promise-spawn/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=16" } }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "node_modules/@npmcli/promise-spawn/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", "dev": true, "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" + "isexe": "^3.1.1" }, "bin": { - "import-local-fixture": "fixtures/cli.js" + "node-which": "bin/which.js" }, "engines": { - "node": ">=8" + "node": "^16.13.0 || >=18.0.0" + } + }, + "node_modules/@npmcli/run-script": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/@npmcli/run-script/-/run-script-7.0.2.tgz", + "integrity": "sha512-Omu0rpA8WXvcGeY6DDzyRoY1i5DkCBkzyJ+m2u7PD6quzb0TvSqdIPOkTn8ZBOj7LbbcbMfZ3c5skwSu6m8y2w==", + "dev": true, + "dependencies": { + "@npmcli/node-gyp": "^3.0.0", + "@npmcli/promise-spawn": "^7.0.0", + "node-gyp": "^10.0.0", + "read-package-json-fast": "^3.0.0", + "which": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/@npmcli/run-script/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, "engines": { - "node": ">=0.8.19" + "node": ">=16" } }, - "node_modules/indent-string": { + "node_modules/@npmcli/run-script/node_modules/which": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, "engines": { - "node": ">=8" + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + "node_modules/@nuxt/devalue": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", + "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==", + "dev": true }, - "node_modules/inflight": { + "node_modules/@nuxt/devtools": { "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "resolved": "https://registry.npmjs.org/@nuxt/devtools/-/devtools-1.0.6.tgz", + "integrity": "sha512-3P914IHBvKl2aYSrwaCAU9E1ndVNnGJR0Jn0XKUFktsbjU5kGlwLGrtRKXAw4Yz1VNiSZPrapVrFOQWbXRGRvg==", + "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "@antfu/utils": "^0.7.7", + "@nuxt/devtools-kit": "1.0.6", + "@nuxt/devtools-wizard": "1.0.6", + "@nuxt/kit": "^3.8.2", + "birpc": "^0.2.14", + "consola": "^3.2.3", + "destr": "^2.0.2", + "error-stack-parser-es": "^0.1.1", + "execa": "^7.2.0", + "fast-glob": "^3.3.2", + "flatted": "^3.2.9", + "get-port-please": "^3.1.1", + "h3": "^1.9.0", + "hookable": "^5.5.3", + "image-meta": "^0.2.0", + "is-installed-globally": "^1.0.0", + "launch-editor": "^2.6.1", + "local-pkg": "^0.5.0", + "magicast": "^0.3.2", + "nitropack": "^2.8.1", + "nypm": "^0.3.3", + "ofetch": "^1.3.3", + "ohash": "^1.1.3", + "pacote": "^17.0.5", + "pathe": "^1.1.1", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "rc9": "^2.1.1", + "scule": "^1.1.1", + "semver": "^7.5.4", + "simple-git": "^3.21.0", + "sirv": "^2.0.3", + "unimport": "^3.6.1", + "vite-plugin-inspect": "^0.8.1", + "vite-plugin-vue-inspector": "^4.0.2", + "which": "^3.0.1", + "ws": "^8.15.0" + }, + "bin": { + "devtools": "cli.mjs" + }, + "peerDependencies": { + "nuxt": "^3.8.2", + "vite": "*" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + "node_modules/@nuxt/devtools-kit": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-kit/-/devtools-kit-1.0.6.tgz", + "integrity": "sha512-CUSE++NRTIwvBWbLsPzLZIDMpXr6oyllaWm8tOR3Wgr/04jW31uyWbXjU/fxRuDotQwZfcTe19uunRoCoBnk1Q==", + "dev": true, + "dependencies": { + "@nuxt/kit": "^3.8.2", + "@nuxt/schema": "^3.8.2", + "execa": "^7.2.0" + }, + "peerDependencies": { + "nuxt": "^3.8.2", + "vite": "*" + } }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "node_modules/inquirer": { - "version": "7.3.3", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", - "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", - "dependencies": { - "ansi-escapes": "^4.2.1", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-width": "^3.0.0", - "external-editor": "^3.0.3", - "figures": "^3.0.0", - "lodash": "^4.17.19", - "mute-stream": "0.0.8", - "run-async": "^2.4.0", - "rxjs": "^6.6.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0", - "through": "^2.3.6" + "node_modules/@nuxt/devtools-wizard": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@nuxt/devtools-wizard/-/devtools-wizard-1.0.6.tgz", + "integrity": "sha512-44G+t2sQQii3TPnmktlrZryC4pw7t77GUV7wneEicLGU+w5I5ib7taVMJy8+yBC3kpTs5eYHOmqI63Dqvr73tw==", + "dev": true, + "dependencies": { + "consola": "^3.2.3", + "diff": "^5.1.0", + "execa": "^7.2.0", + "global-directory": "^4.0.1", + "magicast": "^0.3.2", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "prompts": "^2.4.2", + "rc9": "^2.1.1", + "semver": "^7.5.4" }, - "engines": { - "node": ">=8.0.0" + "bin": { + "devtools-wizard": "cli.mjs" } }, - "node_modules/internal-slot": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", - "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "node_modules/@nuxt/kit": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@nuxt/kit/-/kit-3.8.2.tgz", + "integrity": "sha512-LrXCm8hAkw+zpX8teUSD/LqXRarlXjbRiYxDkaqw739JSHFReWzBFgJbojsJqL4h1XIEScDGGOWiEgO4QO1sMg==", + "dev": true, "dependencies": { - "get-intrinsic": "^1.2.2", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "@nuxt/schema": "3.8.2", + "c12": "^1.5.1", + "consola": "^3.2.3", + "defu": "^6.1.3", + "globby": "^14.0.0", + "hash-sum": "^2.0.0", + "ignore": "^5.3.0", + "jiti": "^1.21.0", + "knitwork": "^1.0.0", + "mlly": "^1.4.2", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "scule": "^1.1.0", + "semver": "^7.5.4", + "ufo": "^1.3.2", + "unctx": "^2.3.1", + "unimport": "^3.5.0", + "untyped": "^1.4.0" }, "engines": { - "node": ">= 0.4" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/ip": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", - "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" - }, - "node_modules/is-accessor-descriptor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", - "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "node_modules/@nuxt/schema": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@nuxt/schema/-/schema-3.8.2.tgz", + "integrity": "sha512-AMpysQ/wHK2sOujLShqYdC4OSj/S3fFJGjhYXqA2g6dgmz+FNQWJRG/ie5sI9r2EX9Ela1wt0GN1jZR3wYNE8Q==", + "dev": true, "dependencies": { - "hasown": "^2.0.0" + "@nuxt/ui-templates": "^1.3.1", + "consola": "^3.2.3", + "defu": "^6.1.3", + "hookable": "^5.5.3", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "scule": "^1.1.0", + "std-env": "^3.5.0", + "ufo": "^1.3.2", + "unimport": "^3.5.0", + "untyped": "^1.4.0" }, "engines": { - "node": ">= 0.10" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/is-array-buffer": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", - "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "node_modules/@nuxt/telemetry": { + "version": "2.5.3", + "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-2.5.3.tgz", + "integrity": "sha512-Ghv2MgWbJcUM9G5Dy3oQP0cJkUwEgaiuQxEF61FXJdn0a69Q4StZEP/hLF0MWPM9m6EvAwI7orxkJHM7MrmtVg==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.0", - "is-typed-array": "^1.1.10" + "@nuxt/kit": "^3.8.2", + "ci-info": "^4.0.0", + "consola": "^3.2.3", + "create-require": "^1.1.1", + "defu": "^6.1.3", + "destr": "^2.0.2", + "dotenv": "^16.3.1", + "git-url-parse": "^13.1.1", + "is-docker": "^3.0.0", + "jiti": "^1.21.0", + "mri": "^1.2.0", + "nanoid": "^4.0.2", + "ofetch": "^1.3.3", + "parse-git-config": "^3.0.0", + "pathe": "^1.1.1", + "rc9": "^2.1.1", + "std-env": "^3.5.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "bin": { + "nuxt-telemetry": "bin/nuxt-telemetry.mjs" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", - "dependencies": { - "has-bigints": "^1.0.1" + "node_modules/@nuxt/telemetry/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/@nuxt/ui-templates": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/@nuxt/ui-templates/-/ui-templates-1.3.1.tgz", + "integrity": "sha512-5gc02Pu1HycOVUWJ8aYsWeeXcSTPe8iX8+KIrhyEtEoOSkY0eMBuo0ssljB8wALuEmepv31DlYe5gpiRwkjESA==", + "dev": true + }, + "node_modules/@nuxt/vite-builder": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/@nuxt/vite-builder/-/vite-builder-3.8.2.tgz", + "integrity": "sha512-l/lzDDTbd3M89BpmWqjhVLgLVRqfkKp0tyYgV5seJQjj3SX+IeqI7k6k8+dMEifdeO34jUajVWptNpITXQryyg==", + "dev": true, "dependencies": { - "binary-extensions": "^2.0.0" + "@nuxt/kit": "3.8.2", + "@rollup/plugin-replace": "^5.0.5", + "@vitejs/plugin-vue": "^4.5.0", + "@vitejs/plugin-vue-jsx": "^3.1.0", + "autoprefixer": "^10.4.16", + "clear": "^0.1.0", + "consola": "^3.2.3", + "cssnano": "^6.0.1", + "defu": "^6.1.3", + "esbuild": "^0.19.6", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "externality": "^1.0.2", + "fs-extra": "^11.1.1", + "get-port-please": "^3.1.1", + "h3": "^1.9.0", + "knitwork": "^1.0.0", + "magic-string": "^0.30.5", + "mlly": "^1.4.2", + "ohash": "^1.1.3", + "pathe": "^1.1.1", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "postcss": "^8.4.31", + "rollup-plugin-visualizer": "^5.9.2", + "std-env": "^3.5.0", + "strip-literal": "^1.3.0", + "ufo": "^1.3.2", + "unplugin": "^1.5.1", + "vite": "^4.5.0", + "vite-node": "^0.33.0", + "vite-plugin-checker": "^0.6.2", + "vue-bundle-renderer": "^2.0.0" }, "engines": { - "node": ">=8" + "node": "^14.18.0 || >=16.10.0" + }, + "peerDependencies": { + "vue": "^3.3.4" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/@parcel/watcher": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher/-/watcher-2.3.0.tgz", + "integrity": "sha512-pW7QaFiL11O0BphO+bq3MgqeX/INAk9jgBldVDYjlQPO4VddoZnF22TcF9onMhnLVHuNqBJeRf+Fj7eezi/+rQ==", + "dev": true, + "hasInstallScript": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "detect-libc": "^1.0.3", + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "node-addon-api": "^7.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/parcel" + }, + "optionalDependencies": { + "@parcel/watcher-android-arm64": "2.3.0", + "@parcel/watcher-darwin-arm64": "2.3.0", + "@parcel/watcher-darwin-x64": "2.3.0", + "@parcel/watcher-freebsd-x64": "2.3.0", + "@parcel/watcher-linux-arm-glibc": "2.3.0", + "@parcel/watcher-linux-arm64-glibc": "2.3.0", + "@parcel/watcher-linux-arm64-musl": "2.3.0", + "@parcel/watcher-linux-x64-glibc": "2.3.0", + "@parcel/watcher-linux-x64-musl": "2.3.0", + "@parcel/watcher-win32-arm64": "2.3.0", + "@parcel/watcher-win32-ia32": "2.3.0", + "@parcel/watcher-win32-x64": "2.3.0" + } + }, + "node_modules/@parcel/watcher-android-arm64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-android-arm64/-/watcher-android-arm64-2.3.0.tgz", + "integrity": "sha512-f4o9eA3dgk0XRT3XhB0UWpWpLnKgrh1IwNJKJ7UJek7eTYccQ8LR7XUWFKqw6aEq5KUNlCcGvSzKqSX/vtWVVA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" - }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/@parcel/watcher-darwin-arm64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-arm64/-/watcher-darwin-arm64-2.3.0.tgz", + "integrity": "sha512-mKY+oijI4ahBMc/GygVGvEdOq0L4DxhYgwQqYAz/7yPzuGi79oXrZG52WdpGA1wLBPrYb0T8uBaGFo7I6rvSKw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.4" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-core-module": { - "version": "2.13.1", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", - "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", - "dependencies": { - "hasown": "^2.0.0" + "node_modules/@parcel/watcher-darwin-x64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-darwin-x64/-/watcher-darwin-x64-2.3.0.tgz", + "integrity": "sha512-20oBj8LcEOnLE3mgpy6zuOq8AplPu9NcSSSfyVKgfOhNAc4eF4ob3ldj0xWjGGbOF7Dcy1Tvm6ytvgdjlfUeow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-data-descriptor": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", - "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", - "dependencies": { - "hasown": "^2.0.0" - }, + "node_modules/@parcel/watcher-freebsd-x64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-freebsd-x64/-/watcher-freebsd-x64-2.3.0.tgz", + "integrity": "sha512-7LftKlaHunueAEiojhCn+Ef2CTXWsLgTl4hq0pkhkTBFI3ssj2bJXmH2L67mKpiAD5dz66JYk4zS66qzdnIOgw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">= 0.4" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", - "dependencies": { - "has-tostringtag": "^1.0.0" - }, + "node_modules/@parcel/watcher-linux-arm-glibc": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm-glibc/-/watcher-linux-arm-glibc-2.3.0.tgz", + "integrity": "sha512-1apPw5cD2xBv1XIHPUlq0cO6iAaEUQ3BcY0ysSyD9Kuyw4MoWm1DV+W9mneWI+1g6OeP6dhikiFE6BlU+AToTQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" + "node": ">= 10.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-descriptor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", - "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "node_modules/@parcel/watcher-linux-arm64-glibc": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-glibc/-/watcher-linux-arm64-glibc-2.3.0.tgz", + "integrity": "sha512-mQ0gBSQEiq1k/MMkgcSB0Ic47UORZBmWoAWlMrTW6nbAGoLZP+h7AtUM7H3oDu34TBFFvjy4JCGP43JlylkTQA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-arm64-musl": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-arm64-musl/-/watcher-linux-arm64-musl-2.3.0.tgz", + "integrity": "sha512-LXZAExpepJew0Gp8ZkJ+xDZaTQjLHv48h0p0Vw2VMFQ8A+RKrAvpFuPVCVwKJCr5SE+zvaG+Etg56qXvTDIedw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 0.4" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dependencies": { - "is-plain-object": "^2.0.4" + "node_modules/@parcel/watcher-linux-x64-glibc": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-glibc/-/watcher-linux-x64-glibc-2.3.0.tgz", + "integrity": "sha512-P7Wo91lKSeSgMTtG7CnBS6WrA5otr1K7shhSjKHNePVmfBHDoAOHYRXgUmhiNfbcGk0uMCHVcdbfxtuiZCHVow==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">= 10.0.0" }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" + } + }, + "node_modules/@parcel/watcher-linux-x64-musl": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-linux-x64-musl/-/watcher-linux-x64-musl-2.3.0.tgz", + "integrity": "sha512-+kiRE1JIq8QdxzwoYY+wzBs9YbJ34guBweTK8nlzLKimn5EQ2b2FSC+tAOpq302BuIMjyuUGvBiUhEcLIGMQ5g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-extendable/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/@parcel/watcher-wasm": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-wasm/-/watcher-wasm-2.3.0.tgz", + "integrity": "sha512-ejBAX8H0ZGsD8lSICDNyMbSEtPMWgDL0WFCt/0z7hyf5v8Imz4rAM8xY379mBsECkq/Wdqa5WEDLqtjZ+6NxfA==", + "bundleDependencies": [ + "napi-wasm" + ], + "dev": true, "dependencies": { - "isobject": "^3.0.1" + "is-glob": "^4.0.3", + "micromatch": "^4.0.5", + "napi-wasm": "^1.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/@parcel/watcher-wasm/node_modules/napi-wasm": { + "version": "1.1.0", + "dev": true, + "inBundle": true, + "license": "MIT" }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/@parcel/watcher-win32-arm64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-arm64/-/watcher-win32-arm64-2.3.0.tgz", + "integrity": "sha512-35gXCnaz1AqIXpG42evcoP2+sNL62gZTMZne3IackM+6QlfMcJLy3DrjuL6Iks7Czpd3j4xRBzez3ADCj1l7Aw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "node_modules/@parcel/watcher-win32-ia32": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-ia32/-/watcher-win32-ia32-2.3.0.tgz", + "integrity": "sha512-FJS/IBQHhRpZ6PiCjFt1UAcPr0YmCLHRbTc00IBTrelEjlmmgIVLeOx4MSXzx2HFEy5Jo5YdhGpxCuqCyDJ5ow==", + "cpu": [ + "ia32" + ], "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=6" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", - "dependencies": { - "is-extglob": "^2.1.1" - }, + "node_modules/@parcel/watcher-win32-x64": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@parcel/watcher-win32-x64/-/watcher-win32-x64-2.3.0.tgz", + "integrity": "sha512-dLx+0XRdMnVI62kU3wbXvbIRhLck4aE28bIGKbRGS7BJNt54IIj9+c/Dkqb+7DJEbHUZAX1bwaoM8PqVlHJmCA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=0.10.0" + "node": ">= 10.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/parcel" } }, - "node_modules/is-negative-zero": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", - "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", - "engines": { - "node": ">= 0.4" + "node_modules/@parcel/watcher/node_modules/detect-libc": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-1.0.3.tgz", + "integrity": "sha512-pGjwhsmsp4kL2RTz08wcOlGN83otlqHeD/Z5T8GXZB+/YcpQ/dgo+lbU8ZsGxV0HIvqqxo9l7mqYwyYMD9bKDg==", + "dev": true, + "bin": { + "detect-libc": "bin/detect-libc.js" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=0.10" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, "engines": { - "node": ">=0.12.0" + "node": ">=14" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/@polka/url": { + "version": "1.0.0-next.24", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", + "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==", + "dev": true + }, + "node_modules/@rollup/plugin-alias": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-alias/-/plugin-alias-5.1.0.tgz", + "integrity": "sha512-lpA3RZ9PdIG7qqhEfv79tBffNaoDuukFDrmhLqg9ifv99u/ehn+lOg30x2zmhf8AQqQUZaMk/B9fZraQ6/acDQ==", + "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "slash": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "node_modules/@rollup/plugin-alias/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "node_modules/@rollup/plugin-commonjs": { + "version": "25.0.7", + "resolved": "https://registry.npmjs.org/@rollup/plugin-commonjs/-/plugin-commonjs-25.0.7.tgz", + "integrity": "sha512-nEvcR+LRjEjsaSsc4x3XZfCCvZIaSMenZu/OiwOKGN2UhQpAYI7ru7czFvyWbErlpoGjnSX3D5Ch5FcMA3kRWQ==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.0.1", + "commondir": "^1.0.1", + "estree-walker": "^2.0.2", + "glob": "^8.0.3", + "is-reference": "1.2.1", + "magic-string": "^0.30.3" + }, "engines": { - "node": ">=0.10.0" + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.68.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/@rollup/plugin-commonjs/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@rollup/plugin-inject": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@rollup/plugin-inject/-/plugin-inject-5.0.5.tgz", + "integrity": "sha512-2+DEJbNBoPROPkgTDNe8/1YXWcqxbN5DTjASVIOx8HS+pITXushyNiBV56RB08zuptzz8gT3YfkqriTBVycepg==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@rollup/pluginutils": "^5.0.1", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.3" }, "engines": { - "node": ">= 0.4" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-retry-allowed": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-2.2.0.tgz", - "integrity": "sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==", + "node_modules/@rollup/plugin-inject/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@rollup/plugin-json": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@rollup/plugin-json/-/plugin-json-6.1.0.tgz", + "integrity": "sha512-EGI2te5ENk1coGeADSIwZ7G2Q8CJS2sF120T7jLw4xFw9n7wIOXHo+kIYRAoVpJAN+kmqZSoO3Fp4JtoNF4ReA==", + "dev": true, + "dependencies": { + "@rollup/pluginutils": "^5.1.0" + }, "engines": { - "node": ">=10" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", - "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "node_modules/@rollup/plugin-node-resolve": { + "version": "15.2.3", + "resolved": "https://registry.npmjs.org/@rollup/plugin-node-resolve/-/plugin-node-resolve-15.2.3.tgz", + "integrity": "sha512-j/lym8nf5E21LwBT4Df1VD6hRO2L2iwUeUmP7litikRsVp1H6NWx20NEp0Y7su+7XGc476GnXXc4kFeZNGmaSQ==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "@rollup/pluginutils": "^5.0.1", + "@types/resolve": "1.20.2", + "deepmerge": "^4.2.2", + "is-builtin-module": "^3.2.1", + "is-module": "^1.0.0", + "resolve": "^1.22.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^2.78.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-ssh": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", - "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", + "node_modules/@rollup/plugin-replace": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/@rollup/plugin-replace/-/plugin-replace-5.0.5.tgz", + "integrity": "sha512-rYO4fOi8lMaTg/z5Jb+hKnrHHVn8j2lwkqwyS4kTRhKyWOLf2wST2sWXr4WzWiTcoHTp2sTjqUbqIj2E39slKQ==", + "dev": true, "dependencies": { - "protocols": "^2.0.1" + "@rollup/pluginutils": "^5.0.1", + "magic-string": "^0.30.3" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "node_modules/@rollup/plugin-terser": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@rollup/plugin-terser/-/plugin-terser-0.4.4.tgz", + "integrity": "sha512-XHeJC5Bgvs8LfukDwWZp7yeqin6ns8RTl2B9avbejt6tZqsqvVoWI7ZTQrcNsfKEDWBTnTxM8nMDkO2IFFbd0A==", + "dev": true, + "dependencies": { + "serialize-javascript": "^6.0.1", + "smob": "^1.0.0", + "terser": "^5.17.4" + }, "engines": { - "node": ">=8" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "rollup": "^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "node_modules/@rollup/plugin-wasm": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/@rollup/plugin-wasm/-/plugin-wasm-6.2.2.tgz", + "integrity": "sha512-gpC4R1G9Ni92ZIRTexqbhX7U+9estZrbhP+9SRb0DW9xpB9g7j34r+J2hqrcW/lRI7dJaU84MxZM0Rt82tqYPQ==", + "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "@rollup/pluginutils": "^5.0.2" }, "engines": { - "node": ">= 0.4" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/@rollup/pluginutils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-5.1.0.tgz", + "integrity": "sha512-XTIWOPPcpvyKI6L1NHo0lFlCyznUEyPmPY1mc3KpPVDYulHSTvyeLNVW00QTLIAFNhR3kYnJTQHeGqU4M3n09g==", + "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "@types/estree": "^1.0.0", + "estree-walker": "^2.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": ">= 0.4" + "node": ">=14.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "rollup": "^1.20.0||^2.0.0||^3.0.0||^4.0.0" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/is-typed-array": { - "version": "1.1.12", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", - "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "node_modules/@rollup/pluginutils/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.9.1.tgz", + "integrity": "sha512-6vMdBZqtq1dVQ4CWdhFwhKZL6E4L1dV6jUjuBvsavvNJSppzi6dLBbuV+3+IyUREaj9ZFvQefnQm28v4OCXlig==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.9.1.tgz", + "integrity": "sha512-Jto9Fl3YQ9OLsTDWtLFPtaIMSL2kwGyGoVCmPC8Gxvym9TCZm4Sie+cVeblPO66YZsYH8MhBKDMGZ2NDxuk/XQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.9.1.tgz", + "integrity": "sha512-LtYcLNM+bhsaKAIGwVkh5IOWhaZhjTfNOkGzGqdHvhiCUVuJDalvDxEdSnhFzAn+g23wgsycmZk1vbnaibZwwA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.9.1.tgz", + "integrity": "sha512-KyP/byeXu9V+etKO6Lw3E4tW4QdcnzDG/ake031mg42lob5tN+5qfr+lkcT/SGZaH2PdW4Z1NX9GHEkZ8xV7og==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.9.1.tgz", + "integrity": "sha512-Yqz/Doumf3QTKplwGNrCHe/B2p9xqDghBZSlAY0/hU6ikuDVQuOUIpDP/YcmoT+447tsZTmirmjgG3znvSCR0Q==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.9.1.tgz", + "integrity": "sha512-u3XkZVvxcvlAOlQJ3UsD1rFvLWqu4Ef/Ggl40WAVCuogf4S1nJPHh5RTgqYFpCOvuGJ7H5yGHabjFKEZGExk5Q==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.9.1.tgz", + "integrity": "sha512-0XSYN/rfWShW+i+qjZ0phc6vZ7UWI8XWNz4E/l+6edFt+FxoEghrJHjX1EY/kcUGCnZzYYRCl31SNdfOi450Aw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-riscv64-gnu": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.9.1.tgz", + "integrity": "sha512-LmYIO65oZVfFt9t6cpYkbC4d5lKHLYv5B4CSHRpnANq0VZUQXGcCPXHzbCXCz4RQnx7jvlYB1ISVNCE/omz5cw==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.9.1.tgz", + "integrity": "sha512-kr8rEPQ6ns/Lmr/hiw8sEVj9aa07gh1/tQF2Y5HrNCCEPiCBGnBUt9tVusrcBBiJfIt1yNaXN6r1CCmpbFEDpg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.9.1.tgz", + "integrity": "sha512-t4QSR7gN+OEZLG0MiCgPqMWZGwmeHhsM4AkegJ0Kiy6TnJ9vZ8dEIwHw1LcZKhbHxTY32hp9eVCMdR3/I8MGRw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.9.1.tgz", + "integrity": "sha512-7XI4ZCBN34cb+BH557FJPmh0kmNz2c25SCQeT9OiFWEgf8+dL6ZwJ8f9RnUIit+j01u07Yvrsuu1rZGxJCc51g==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.9.1.tgz", + "integrity": "sha512-yE5c2j1lSWOH5jp+Q0qNL3Mdhr8WuqCNVjc6BxbVfS5cAS6zRmdiw7ktb8GNpDCEUJphILY6KACoFoRtKoqNQg==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.9.1.tgz", + "integrity": "sha512-PyJsSsafjmIhVgaI1Zdj7m8BB8mMckFah/xbpplObyHfiXzKcI5UOUXRyOdHW7nz4DpMCuzLnF7v5IWHenCwYA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sigstore/bundle": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@sigstore/bundle/-/bundle-2.1.0.tgz", + "integrity": "sha512-89uOo6yh/oxaU8AeOUnVrTdVMcGk9Q1hJa7Hkvalc6G3Z3CupWk4Xe9djSgJm9fMkH69s0P0cVHUoKSOemLdng==", + "dev": true, "dependencies": { - "which-typed-array": "^1.1.11" + "@sigstore/protobuf-specs": "^0.2.1" }, "engines": { - "node": ">= 0.4" + "node": "^16.14.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/protobuf-specs": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@sigstore/protobuf-specs/-/protobuf-specs-0.2.1.tgz", + "integrity": "sha512-XTWVxnWJu+c1oCshMLwnKvz8ZQJJDVOlciMfgpJBQbThVjKTCG8dwyhgLngBD2KN0ap9F/gOV8rFDEx8uh7R2A==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" + } + }, + "node_modules/@sigstore/sign": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/sign/-/sign-2.2.0.tgz", + "integrity": "sha512-AAbmnEHDQv6CSfrWA5wXslGtzLPtAtHZleKOgxdQYvx/s76Fk6T6ZVt7w2IGV9j1UrFeBocTTQxaXG2oRrDhYA==", + "dev": true, + "dependencies": { + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "make-fetch-happen": "^13.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/@sigstore/tuf": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/@sigstore/tuf/-/tuf-2.2.0.tgz", + "integrity": "sha512-KKATZ5orWfqd9ZG6MN8PtCIx4eevWSuGRKQvofnWXRpyMyUEpmrzg5M5BrCpjM+NfZ0RbNGOh5tCz/P2uoRqOA==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "@sigstore/protobuf-specs": "^0.2.1", + "tuf-js": "^2.1.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "node_modules/@sindresorhus/merge-streams": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-1.0.0.tgz", + "integrity": "sha512-rUV5WyJrJLoloD4NDN1V1+LDMDWOa4OTsT4yYJwQNpTU6FWxkxHpL7eu4w+DmiH8x/EAM1otkPE1+LaspIbplw==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/is-wsl": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", - "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=10.13.0" } }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/isexe": { + "node_modules/@tufjs/canonical-json": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "resolved": "https://registry.npmjs.org/@tufjs/canonical-json/-/canonical-json-2.0.0.tgz", + "integrity": "sha512-yVtV8zsdo8qFHe+/3kw81dSLyF7D576A5cCFCi4X7B39tWT7SekaEFUnvnWJHz+9qO7qJTah1JbrDjWKqFtdWA==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", - "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "node_modules/@tufjs/models": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tufjs/models/-/models-2.0.0.tgz", + "integrity": "sha512-c8nj8BaOExmZKO2DXhDfegyhSGcG9E/mPN3U13L+/PsoWm1uaGiHHjxqSHQiasDBQwDA3aHuw9+9spYAP1qvvg==", "dev": true, + "dependencies": { + "@tufjs/canonical-json": "2.0.0", + "minimatch": "^9.0.3" + }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", - "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "node_modules/@tufjs/models/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/istanbul-lib-report": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", - "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "node_modules/@types/estree": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.5.tgz", + "integrity": "sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", "dev": true, "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^4.0.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" + "@types/node": "*" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "node_modules/@types/node": { + "version": "20.10.5", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.5.tgz", + "integrity": "sha512-nNPsNE65wjMxEKI93yOP+NPGGBJz/PoN3kZsVLee0XMiJolxSekEVD8wRwBUBqkwc7UWop0edW50yrCQW4CyRw==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" + "undici-types": "~5.26.4" } }, - "node_modules/istanbul-reports": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", - "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "node_modules/@types/resolve": { + "version": "1.20.2", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.2.tgz", + "integrity": "sha512-60BCwRFOZCQhDncwQdxxeOEEkbc5dIMccYLwbxsS4TUNeVECQ/pBJ0j09mrHOl/JJvpRPGwO9SvE4nR2Nb/a4Q==", + "dev": true + }, + "node_modules/@unhead/dom": { + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/@unhead/dom/-/dom-1.8.9.tgz", + "integrity": "sha512-qY4CUVNKEM7lEAcTz5t71QYca+NXgUY5RwhSzB6sBBzZxQTiFOeTVKC6uWXU0N+3jBUdP/zdD3iN1JIjziDlng==", "dev": true, "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "@unhead/schema": "1.8.9", + "@unhead/shared": "1.8.9" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/jest": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest/-/jest-28.1.3.tgz", - "integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==", + "node_modules/@unhead/schema": { + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/@unhead/schema/-/schema-1.8.9.tgz", + "integrity": "sha512-Cumjt2uLfBMEXflvq7Nk8KNqa/JS4MlRGWkjXx/uUXJ1vUeQqeMV8o3hrnRvDDoTXr9LwPapTMUbtClN3TSBgw==", "dev": true, "dependencies": { - "@jest/core": "^28.1.3", - "@jest/types": "^28.1.3", - "import-local": "^3.0.2", - "jest-cli": "^28.1.3" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + "hookable": "^5.5.3", + "zhead": "^2.2.4" }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/jest-changed-files": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.1.3.tgz", - "integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==", + "node_modules/@unhead/shared": { + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/@unhead/shared/-/shared-1.8.9.tgz", + "integrity": "sha512-0o4+CBCi9EnTKPF6cEuLacnUHUkF0u/FfiKrWnKWUiB8wTD1v3UCf5ZCrNCjuJmKHTqj6ZtZ2hIfXsqWfc+3tA==", "dev": true, "dependencies": { - "execa": "^5.0.0", - "p-limit": "^3.1.0" + "@unhead/schema": "1.8.9" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/jest-circus": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.3.tgz", - "integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==", + "node_modules/@unhead/ssr": { + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/@unhead/ssr/-/ssr-1.8.9.tgz", + "integrity": "sha512-sQaA4FDFD1tRD2JiiHfdEY5rF1i54qFxCRqdX0pB+15JJCYBfIPJMr5T1SLJBgc9pqX4rS3MPg2Fc9DW+0p9yw==", "dev": true, "dependencies": { - "@jest/environment": "^28.1.3", - "@jest/expect": "^28.1.3", - "@jest/test-result": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "is-generator-fn": "^2.0.0", - "jest-each": "^28.1.3", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-runtime": "^28.1.3", - "jest-snapshot": "^28.1.3", - "jest-util": "^28.1.3", - "p-limit": "^3.1.0", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "@unhead/schema": "1.8.9", + "@unhead/shared": "1.8.9" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/jest-cli": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz", - "integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==", + "node_modules/@unhead/vue": { + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/@unhead/vue/-/vue-1.8.9.tgz", + "integrity": "sha512-sL1d2IRBZd5rjzhgTYni2DiociSpt+Cfz3iVWKb0EZwQHgg0GzV8Hkoj5TjZYZow6EjDSPRfVPXDwOwxkVOgug==", "dev": true, "dependencies": { - "@jest/core": "^28.1.3", - "@jest/test-result": "^28.1.3", - "@jest/types": "^28.1.3", - "chalk": "^4.0.0", - "exit": "^0.1.2", - "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^28.1.3", - "jest-util": "^28.1.3", - "jest-validate": "^28.1.3", - "prompts": "^2.0.1", - "yargs": "^17.3.1" - }, - "bin": { - "jest": "bin/jest.js" + "@unhead/schema": "1.8.9", + "@unhead/shared": "1.8.9", + "hookable": "^5.5.3", + "unhead": "1.8.9" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "funding": { + "url": "https://github.com/sponsors/harlan-zw" }, "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "vue": ">=2.7 || >=3" } }, - "node_modules/jest-config": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz", - "integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==", + "node_modules/@vercel/nft": { + "version": "0.24.4", + "resolved": "https://registry.npmjs.org/@vercel/nft/-/nft-0.24.4.tgz", + "integrity": "sha512-KjYAZty7boH5fi5udp6p+lNu6nawgs++pHW+3koErMgbRkkHuToGX/FwjN5clV1FcaM3udfd4zW/sUapkMgpZw==", "dev": true, "dependencies": { - "@babel/core": "^7.11.6", - "@jest/test-sequencer": "^28.1.3", - "@jest/types": "^28.1.3", - "babel-jest": "^28.1.3", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", + "@mapbox/node-pre-gyp": "^1.0.5", + "@rollup/pluginutils": "^4.0.0", + "acorn": "^8.6.0", + "async-sema": "^3.1.1", + "bindings": "^1.4.0", + "estree-walker": "2.0.2", "glob": "^7.1.3", "graceful-fs": "^4.2.9", - "jest-circus": "^28.1.3", - "jest-environment-node": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-regex-util": "^28.0.2", - "jest-resolve": "^28.1.3", - "jest-runner": "^28.1.3", - "jest-util": "^28.1.3", - "jest-validate": "^28.1.3", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "micromatch": "^4.0.2", + "node-gyp-build": "^4.2.2", + "resolve-from": "^5.0.0" }, - "peerDependencies": { - "@types/node": "*", - "ts-node": ">=9.0.0" + "bin": { + "nft": "out/cli.js" }, - "peerDependenciesMeta": { - "@types/node": { - "optional": true - }, - "ts-node": { - "optional": true - } + "engines": { + "node": ">=16" } }, - "node_modules/jest-diff": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", - "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", + "node_modules/@vercel/nft/node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "diff-sequences": "^28.1.1", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 8.0.0" } }, - "node_modules/jest-docblock": { - "version": "28.1.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz", - "integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==", + "node_modules/@vercel/nft/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, "dependencies": { - "detect-newline": "^3.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/jest-each": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-28.1.3.tgz", - "integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==", + "node_modules/@vercel/nft/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/@vercel/nft/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", "dev": true, "dependencies": { - "@jest/types": "^28.1.3", - "chalk": "^4.0.0", - "jest-get-type": "^28.0.2", - "jest-util": "^28.1.3", - "pretty-format": "^28.1.3" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/jest-environment-node": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz", - "integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==", + "node_modules/@vercel/nft/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "@jest/environment": "^28.1.3", - "@jest/fake-timers": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "jest-mock": "^28.1.3", - "jest-util": "^28.1.3" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "*" } }, - "node_modules/jest-get-type": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", - "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", + "node_modules/@vitejs/plugin-vue": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue/-/plugin-vue-4.5.2.tgz", + "integrity": "sha512-UGR3DlzLi/SaVBPX0cnSyE37vqxU3O6chn8l0HJNzQzDia6/Au2A4xKv+iIJW8w2daf80G7TYHhi1pAUjdZ0bQ==", "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.18.0 || >=16.0.0" + }, + "peerDependencies": { + "vite": "^4.0.0 || ^5.0.0", + "vue": "^3.2.25" } }, - "node_modules/jest-haste-map": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", - "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", + "node_modules/@vitejs/plugin-vue-jsx": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/@vitejs/plugin-vue-jsx/-/plugin-vue-jsx-3.1.0.tgz", + "integrity": "sha512-w9M6F3LSEU5kszVb9An2/MmXNxocAnUb3WhRr8bHlimhDrXNt6n6D2nJQR3UXpGlZHh/EsgouOHCsM8V3Ln+WA==", "dev": true, "dependencies": { - "@jest/types": "^28.1.3", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^28.0.2", - "jest-util": "^28.1.3", - "jest-worker": "^28.1.3", - "micromatch": "^4.0.4", - "walker": "^1.0.8" + "@babel/core": "^7.23.3", + "@babel/plugin-transform-typescript": "^7.23.3", + "@vue/babel-plugin-jsx": "^1.1.5" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": "^14.18.0 || >=16.0.0" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "peerDependencies": { + "vite": "^4.0.0 || ^5.0.0", + "vue": "^3.0.0" } }, - "node_modules/jest-leak-detector": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz", - "integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==", + "node_modules/@vue-macros/common": { + "version": "1.10.0", + "resolved": "https://registry.npmjs.org/@vue-macros/common/-/common-1.10.0.tgz", + "integrity": "sha512-4DZsPeQA/nBQDw2RkYAmH7KrFjJVrMdAhJhO1JCl1bbbFXCGeoGjXfkg9wHPppj47s2HpAB3GrqNwqVGbi12NQ==", "dev": true, "dependencies": { - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" + "@babel/types": "^7.23.5", + "@rollup/pluginutils": "^5.1.0", + "@vue/compiler-sfc": "^3.3.10", + "ast-kit": "^0.11.3", + "local-pkg": "^0.5.0", + "magic-string-ast": "^0.3.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=16.14.0" + }, + "peerDependencies": { + "vue": "^2.7.0 || ^3.2.25" + }, + "peerDependenciesMeta": { + "vue": { + "optional": true + } } }, - "node_modules/jest-matcher-utils": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz", - "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", + "node_modules/@vue/babel-helper-vue-transform-on": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-transform-on/-/babel-helper-vue-transform-on-1.1.5.tgz", + "integrity": "sha512-SgUymFpMoAyWeYWLAY+MkCK3QEROsiUnfaw5zxOVD/M64KQs8D/4oK6Q5omVA2hnvEOE0SCkH2TZxs/jnnUj7w==", + "dev": true + }, + "node_modules/@vue/babel-plugin-jsx": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-jsx/-/babel-plugin-jsx-1.1.5.tgz", + "integrity": "sha512-nKs1/Bg9U1n3qSWnsHhCVQtAzI6aQXqua8j/bZrau8ywT1ilXQbK4FwEJGmU8fV7tcpuFvWmmN7TMmV1OBma1g==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "pretty-format": "^28.1.3" + "@babel/helper-module-imports": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/template": "^7.22.5", + "@babel/traverse": "^7.22.5", + "@babel/types": "^7.22.5", + "@vue/babel-helper-vue-transform-on": "^1.1.5", + "camelcase": "^6.3.0", + "html-tags": "^3.3.1", + "svg-tags": "^1.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/jest-message-util": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", - "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", - "dev": true, + "node_modules/@vue/compiler-core": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-core/-/compiler-core-3.3.13.tgz", + "integrity": "sha512-bwi9HShGu7uaZLOErZgsH2+ojsEdsjerbf2cMXPwmvcgZfVPZ2BVZzCVnwZBxTAYd6Mzbmf6izcUNDkWnBBQ6A==", "dependencies": { - "@babel/code-frame": "^7.12.13", - "@jest/types": "^28.1.3", - "@types/stack-utils": "^2.0.0", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^28.1.3", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "@babel/parser": "^7.23.5", + "@vue/shared": "3.3.13", + "estree-walker": "^2.0.2", + "source-map-js": "^1.0.2" } }, - "node_modules/jest-mock": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", - "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", - "dev": true, + "node_modules/@vue/compiler-core/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/@vue/compiler-dom": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-dom/-/compiler-dom-3.3.13.tgz", + "integrity": "sha512-EYRDpbLadGtNL0Gph+HoKiYqXLqZ0xSSpR5Dvnu/Ep7ggaCbjRDIus1MMxTS2Qm0koXED4xSlvTZaTnI8cYAsw==", "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*" + "@vue/compiler-core": "3.3.13", + "@vue/shared": "3.3.13" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-3.3.13.tgz", + "integrity": "sha512-DQVmHEy/EKIgggvnGRLx21hSqnr1smUS9Aq8tfxiiot8UR0/pXKHN9k78/qQ7etyQTFj5em5nruODON7dBeumw==", + "dependencies": { + "@babel/parser": "^7.23.5", + "@vue/compiler-core": "3.3.13", + "@vue/compiler-dom": "3.3.13", + "@vue/compiler-ssr": "3.3.13", + "@vue/reactivity-transform": "3.3.13", + "@vue/shared": "3.3.13", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.5", + "postcss": "^8.4.32", + "source-map-js": "^1.0.2" + } + }, + "node_modules/@vue/compiler-sfc/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/@vue/compiler-ssr": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/compiler-ssr/-/compiler-ssr-3.3.13.tgz", + "integrity": "sha512-d/P3bCeUGmkJNS1QUZSAvoCIW4fkOKK3l2deE7zrp0ypJEy+En2AcypIkqvcFQOcw3F0zt2VfMvNsA9JmExTaw==", + "dependencies": { + "@vue/compiler-dom": "3.3.13", + "@vue/shared": "3.3.13" + } + }, + "node_modules/@vue/devtools-api": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@vue/devtools-api/-/devtools-api-6.5.1.tgz", + "integrity": "sha512-+KpckaAQyfbvshdDW5xQylLni1asvNSGme1JFs8I1+/H5pHEhqUKMEQD/qn3Nx5+/nycBq11qAEi8lk+LXI2dA==", + "dev": true + }, + "node_modules/@vue/reactivity": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/reactivity/-/reactivity-3.3.13.tgz", + "integrity": "sha512-fjzCxceMahHhi4AxUBzQqqVhuA21RJ0COaWTbIBl1PruGW1CeY97louZzLi4smpYx+CHfFPPU/CS8NybbGvPKQ==", + "dependencies": { + "@vue/shared": "3.3.13" + } + }, + "node_modules/@vue/reactivity-transform": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/reactivity-transform/-/reactivity-transform-3.3.13.tgz", + "integrity": "sha512-oWnydGH0bBauhXvh5KXUy61xr9gKaMbtsMHk40IK9M4gMuKPJ342tKFarY0eQ6jef8906m35q37wwA8DMZOm5Q==", + "dependencies": { + "@babel/parser": "^7.23.5", + "@vue/compiler-core": "3.3.13", + "@vue/shared": "3.3.13", + "estree-walker": "^2.0.2", + "magic-string": "^0.30.5" + } + }, + "node_modules/@vue/reactivity-transform/node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==" + }, + "node_modules/@vue/runtime-core": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/runtime-core/-/runtime-core-3.3.13.tgz", + "integrity": "sha512-1TzA5TvGuh2zUwMJgdfvrBABWZ7y8kBwBhm7BXk8rvdx2SsgcGfz2ruv2GzuGZNvL1aKnK8CQMV/jFOrxNQUMA==", + "dependencies": { + "@vue/reactivity": "3.3.13", + "@vue/shared": "3.3.13" + } + }, + "node_modules/@vue/runtime-dom": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/runtime-dom/-/runtime-dom-3.3.13.tgz", + "integrity": "sha512-JJkpE8R/hJKXqVTgUoODwS5wqKtOsmJPEqmp90PDVGygtJ4C0PtOkcEYXwhiVEmef6xeXcIlrT3Yo5aQ4qkHhQ==", + "dependencies": { + "@vue/runtime-core": "3.3.13", + "@vue/shared": "3.3.13", + "csstype": "^3.1.3" + } + }, + "node_modules/@vue/server-renderer": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/server-renderer/-/server-renderer-3.3.13.tgz", + "integrity": "sha512-vSnN+nuf6iSqTL3Qgx/9A+BT+0Zf/VJOgF5uMZrKjYPs38GMYyAU1coDyBNHauehXDaP+zl73VhwWv0vBRBHcg==", + "dependencies": { + "@vue/compiler-ssr": "3.3.13", + "@vue/shared": "3.3.13" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "peerDependencies": { + "vue": "3.3.13" } }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", - "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "node_modules/@vue/shared": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/@vue/shared/-/shared-3.3.13.tgz", + "integrity": "sha512-/zYUwiHD8j7gKx2argXEMCUXVST6q/21DFU0sTfNX0URJroCe3b1UF6vLJ3lQDfLNIiiRl2ONp7Nh5UVWS6QnA==" + }, + "node_modules/@vuetify/loader-shared": { + "version": "1.7.1", + "resolved": "https://registry.npmjs.org/@vuetify/loader-shared/-/loader-shared-1.7.1.tgz", + "integrity": "sha512-kLUvuAed6RCvkeeTNJzuy14pqnkur8lTuner7v7pNE/kVhPR97TuyXwBSBMR1cJeiLiOfu6SF5XlCYbXByEx1g==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "find-cache-dir": "^3.3.2", + "upath": "^2.0.1" }, "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } + "vue": "^3.0.0", + "vuetify": "^3.0.0-beta.4" } }, - "node_modules/jest-regex-util": { - "version": "28.0.2", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", - "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", "dev": true, + "bin": { + "acorn": "bin/acorn" + }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=0.4.0" } }, - "node_modules/jest-resolve": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.3.tgz", - "integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==", + "node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", "dev": true, "dependencies": { - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^28.1.3", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^28.1.3", - "jest-validate": "^28.1.3", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" + "debug": "^4.3.4" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 14" } }, - "node_modules/jest-resolve-dependencies": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz", - "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "dependencies": { - "jest-regex-util": "^28.0.2", - "jest-snapshot": "^28.1.3" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=8" + } + }, + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "dev": true, + "engines": { + "node": ">=6" } }, - "node_modules/jest-runner": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz", - "integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { - "@jest/console": "^28.1.3", - "@jest/environment": "^28.1.3", - "@jest/test-result": "^28.1.3", - "@jest/transform": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.10.2", - "graceful-fs": "^4.2.9", - "jest-docblock": "^28.1.1", - "jest-environment-node": "^28.1.3", - "jest-haste-map": "^28.1.3", - "jest-leak-detector": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-resolve": "^28.1.3", - "jest-runtime": "^28.1.3", - "jest-util": "^28.1.3", - "jest-watcher": "^28.1.3", - "jest-worker": "^28.1.3", - "p-limit": "^3.1.0", - "source-map-support": "0.5.13" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-runtime": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz", - "integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==", - "dev": true, - "dependencies": { - "@jest/environment": "^28.1.3", - "@jest/fake-timers": "^28.1.3", - "@jest/globals": "^28.1.3", - "@jest/source-map": "^28.1.2", - "@jest/test-result": "^28.1.3", - "@jest/transform": "^28.1.3", - "@jest/types": "^28.1.3", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-mock": "^28.1.3", - "jest-regex-util": "^28.0.2", - "jest-resolve": "^28.1.3", - "jest-snapshot": "^28.1.3", - "jest-util": "^28.1.3", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/jest-snapshot": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz", - "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", - "dev": true, - "dependencies": { - "@babel/core": "^7.11.6", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.3.3", - "@jest/expect-utils": "^28.1.3", - "@jest/transform": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/babel__traverse": "^7.0.6", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^28.1.3", - "graceful-fs": "^4.2.9", - "jest-diff": "^28.1.3", - "jest-get-type": "^28.0.2", - "jest-haste-map": "^28.1.3", - "jest-matcher-utils": "^28.1.3", - "jest-message-util": "^28.1.3", - "jest-util": "^28.1.3", - "natural-compare": "^1.4.0", - "pretty-format": "^28.1.3", - "semver": "^7.3.5" + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" }, "engines": { - "node": ">=10" + "node": ">= 8" } }, - "node_modules/jest-snapshot/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true }, - "node_modules/jest-util": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", - "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "node_modules/arch": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/arch/-/arch-2.2.0.tgz", + "integrity": "sha512-Of/R0wqp83cgHozfIYLbBMnej79U/SVGOOyuB3VVFv1NRM/PSFMK12x9KVtiYzJqmnU5WR2qp0Z5rHb7sWGnFQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/archiver": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/archiver/-/archiver-6.0.1.tgz", + "integrity": "sha512-CXGy4poOLBKptiZH//VlWdFuUC1RESbdZjGjILwBuZ73P7WkAUN0htfSfBq/7k6FRFlpu7bg4JOkj1vU9G6jcQ==", "dev": true, "dependencies": { - "@jest/types": "^28.1.3", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "archiver-utils": "^4.0.1", + "async": "^3.2.4", + "buffer-crc32": "^0.2.1", + "readable-stream": "^3.6.0", + "readdir-glob": "^1.1.2", + "tar-stream": "^3.0.0", + "zip-stream": "^5.0.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 12.0.0" } }, - "node_modules/jest-validate": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz", - "integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==", + "node_modules/archiver-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/archiver-utils/-/archiver-utils-4.0.1.tgz", + "integrity": "sha512-Q4Q99idbvzmgCTEAAhi32BkOyq8iVI5EwdO0PmBDSGIzzjYNdcFn7Q7k3OzbLy4kLUPXfJtG6fO2RjftXbobBg==", "dev": true, "dependencies": { - "@jest/types": "^28.1.3", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^28.0.2", - "leven": "^3.1.0", - "pretty-format": "^28.1.3" + "glob": "^8.0.0", + "graceful-fs": "^4.2.0", + "lazystream": "^1.0.0", + "lodash": "^4.17.15", + "normalize-path": "^3.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">= 12.0.0" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watcher": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", - "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/ast-kit": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-0.11.3.tgz", + "integrity": "sha512-qdwwKEhckRk0XE22/xDdmU3v/60E8Edu4qFhgTLIhGGDs/PAJwLw9pQn8Rj99PitlbBZbYpx0k/lbir4kg0SuA==", "dev": true, "dependencies": { - "@jest/test-result": "^28.1.3", - "@jest/types": "^28.1.3", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "emittery": "^0.10.2", - "jest-util": "^28.1.3", - "string-length": "^4.0.1" + "@babel/parser": "^7.23.5", + "@rollup/pluginutils": "^5.1.0", + "pathe": "^1.1.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=16.14.0" } }, - "node_modules/jest-worker": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", - "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "node_modules/ast-walker-scope": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/ast-walker-scope/-/ast-walker-scope-0.5.0.tgz", + "integrity": "sha512-NsyHMxBh4dmdEHjBo1/TBZvCKxffmZxRYhmclfu0PP6Aftre47jOHYaYaNqJcV0bxihxFXhDkzLHUwHc0ocd0Q==", "dev": true, "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" + "@babel/parser": "^7.22.7", + "ast-kit": "^0.9.4" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + "node": ">=16.14.0" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/ast-walker-scope/node_modules/ast-kit": { + "version": "0.9.5", + "resolved": "https://registry.npmjs.org/ast-kit/-/ast-kit-0.9.5.tgz", + "integrity": "sha512-kbL7ERlqjXubdDd+szuwdlQ1xUxEz9mCz1+m07ftNVStgwRb2RWw+U6oKo08PAvOishMxiqz1mlJyLl8yQx2Qg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@babel/parser": "^7.22.7", + "@rollup/pluginutils": "^5.0.2", + "pathe": "^1.1.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" - } - }, - "node_modules/jiti": { - "version": "1.21.0", - "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", - "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", - "bin": { - "jiti": "bin/jiti.js" + "node": ">=16.14.0" } }, - "node_modules/jquery": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", - "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==", - "peer": true + "node_modules/async": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.5.tgz", + "integrity": "sha512-baNZyqaaLhyLVKm/DlvdW051MSgO6b8eVfIezl9E5PqWxFgzLm/wQntEW4zOytVburDEr0JlALEpdOFwvErLsg==", + "dev": true }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "node_modules/async-sema": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/async-sema/-/async-sema-3.1.1.tgz", + "integrity": "sha512-tLRNUXati5MFePdAk8dw7Qt7DpxPB60ofAgn8WRhW6a2rcimZnYBP9oxHiv0OHy+Wz7kPMG+t4LGdt31+4EmGg==", + "dev": true }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" }, "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", - "bin": { - "jsesc": "bin/jsesc" + "autoprefixer": "bin/autoprefixer" }, "engines": { - "node": ">=4" - } - }, - "node_modules/json-parse-better-errors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", - "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", - "bin": { - "json5": "lib/cli.js" + "node": "^10 || ^12 || >=14" }, - "engines": { - "node": ">=6" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", - "dependencies": { - "universalify": "^2.0.0" - }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" - } + "node_modules/b4a": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/b4a/-/b4a-1.6.4.tgz", + "integrity": "sha512-fpWrvyVHEKyeEvbKZTVOeZF3VSKKWtJxFIxX/jaVPf+cLbGUSitjb49pHLqPV2BUNNZ0LcoeEGfE/YCpyDYHIw==", + "dev": true }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "dev": true, "engines": { - "node": ">=6" + "node": ">=0.6" } }, - "node_modules/klona": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", - "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/last-call-webpack-plugin": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", - "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "dev": true, "dependencies": { - "lodash": "^4.17.5", - "webpack-sources": "^1.1.0" + "file-uri-to-path": "1.0.0" } }, - "node_modules/launch-editor": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", - "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", - "dependencies": { - "picocolors": "^1.0.0", - "shell-quote": "^1.8.1" + "node_modules/birpc": { + "version": "0.2.14", + "resolved": "https://registry.npmjs.org/birpc/-/birpc-0.2.14.tgz", + "integrity": "sha512-37FHE8rqsYM5JEKCnXFyHpBCzvgHEExwVVTq+nUmloInU7l8ezD1TpOhKpS8oe1DTYFqEK27rFZVKG43oTqXRA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/launch-editor-middleware": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.6.1.tgz", - "integrity": "sha512-Fg/xYhf7ARmRp40n18wIfJyuAMEjXo67Yull7uF7d0OJ3qA4EYJISt1XfPPn69IIJ5jKgQwzcg6DqHYo95LL/g==", - "dependencies": { - "launch-editor": "^2.6.1" - } + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", "dev": true, + "dependencies": { + "big-integer": "^1.6.44" + }, "engines": { - "node": ">=6" + "node": ">= 5.10.0" } }, - "node_modules/lilconfig": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", - "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", - "engines": { - "node": ">=14" + "node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, "engines": { - "node": ">=6.11.5" + "node": ">=8" } }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" }, "engines": { - "node": ">=8.9.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", - "dependencies": { - "p-locate": "^4.1.0" - }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", + "dev": true, "engines": { - "node": ">=8" + "node": "*" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" - }, - "node_modules/lodash._reinterpolate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", - "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" - }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" - }, - "node_modules/lodash.kebabcase": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", - "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==" - }, - "node_modules/lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" - }, - "node_modules/lodash.template": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", - "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", - "dependencies": { - "lodash._reinterpolate": "^3.0.0", - "lodash.templatesettings": "^4.0.0" - } + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true }, - "node_modules/lodash.templatesettings": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", - "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", - "dependencies": { - "lodash._reinterpolate": "^3.0.0" + "node_modules/builtin-modules": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-3.3.0.tgz", + "integrity": "sha512-zhaCDicdLuWN5UbN5IMnFqNMhNfo919sH85y2/ea+5Yg9TsTkeZxpL+JLbp6cgYFS4sRLp3YV4S6yDuqVWHYOw==", + "dev": true, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" - }, - "node_modules/lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==" - }, - "node_modules/lru-cache": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", - "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, "dependencies": { - "yallist": "^3.0.2" + "semver": "^7.0.0" } }, - "node_modules/make-dir": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", - "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "node_modules/bundle-name": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-3.0.0.tgz", + "integrity": "sha512-PKA4BeSvBpQKQ8iPOGCSiell+N8P+Tf1DlwqmYhpe2gAhKPHn8EYOxVT+ShuGmhg8lN8XiSlS80yiExKXrURlw==", "dev": true, "dependencies": { - "semver": "^7.5.3" + "run-applescript": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/c12": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/c12/-/c12-1.5.1.tgz", + "integrity": "sha512-BWZRJgDEveT8uI+cliCwvYSSSSvb4xKoiiu5S0jaDbKBopQLQF7E+bq9xKk1pTcG+mUa3yXuFO7bD9d8Lr9Xxg==", "dev": true, "dependencies": { - "yallist": "^4.0.0" - }, + "chokidar": "^3.5.3", + "defu": "^6.1.2", + "dotenv": "^16.3.1", + "giget": "^1.1.3", + "jiti": "^1.20.0", + "mlly": "^1.4.2", + "ohash": "^1.1.3", + "pathe": "^1.1.1", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "rc9": "^2.1.1" + } + }, + "node_modules/cac": { + "version": "6.7.14", + "resolved": "https://registry.npmjs.org/cac/-/cac-6.7.14.tgz", + "integrity": "sha512-b6Ilus+c3RrdDk+JhLKUAQfzzgLEPy6wcXqS7f/xe1EETvsDP6GORG7SFuOs6cID5YkqchW/LXZbX5bc8j7ZcQ==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "node_modules/cacache": { + "version": "18.0.1", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-18.0.1.tgz", + "integrity": "sha512-g4Uf2CFZPaxtJKre6qr4zqLDOOPU7bNVhWjlNhvzc51xaTOx2noMOLhfFkTAqwtrAZAKQUuDfyjitzilpA8WsQ==", "dev": true, "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" + "@npmcli/fs": "^3.1.0", + "fs-minipass": "^3.0.0", + "glob": "^10.2.2", + "lru-cache": "^10.0.1", + "minipass": "^7.0.3", + "minipass-collect": "^2.0.1", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "p-map": "^4.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11", + "unique-filename": "^3.0.0" }, "engines": { - "node": ">=10" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/make-dir/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", - "dev": true - }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/cacache/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, "dependencies": { - "tmpl": "1.0.5" - } - }, - "node_modules/map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", - "dependencies": { - "object-visit": "^1.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=0.10.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" + "node_modules/cacache/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" } }, - "node_modules/mdn-data": { - "version": "2.0.30", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", - "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" - }, - "node_modules/memfs": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", - "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "node_modules/cacache/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, "dependencies": { - "fs-monkey": "^1.0.4" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">= 4.0.0" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - }, + "node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, "engines": { - "node": ">=4.3.0 <5.0.0 || >=5.10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/merge-source-map": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", - "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dev": true, "dependencies": { - "source-map": "^0.6.1" + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" } }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + "node_modules/caniuse-lite": { + "version": "1.0.30001570", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz", + "integrity": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "dev": true, "engines": { - "node": ">= 8" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "node_modules/chart.js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.4.1.tgz", + "integrity": "sha512-C74QN1bxwV1v2PEujhmKjOZ7iUM4w6BWs23Md/6aOZZSlwMzeCIDGuZay++rBgChYru7/+QFeoQW0fQoP534Dg==", "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "@kurkle/color": "^0.3.0" }, "engines": { - "node": ">=8.6" + "pnpm": ">=7" } }, - "node_modules/miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], "dependencies": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" }, - "bin": { - "miller-rabin": "bin/miller-rabin" + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/miller-rabin/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/mime": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", - "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", - "bin": { - "mime": "cli.js" - }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, "engines": { - "node": ">=4.0.0" + "node": ">=10" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/ci-info": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-4.0.0.tgz", + "integrity": "sha512-TdHqgGf9odd8SXNuxtUBVx8Nv+qZOejE6qyqiy5NtbYYQOeFa6zmHkxlPzmaLxWWHsU6nJmB7AETdVPi+2NBUg==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], "engines": { - "node": ">= 0.6" + "node": ">=8" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/citty": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.5.tgz", + "integrity": "sha512-AS7n5NSc0OQVMV9v6wt3ByujNIrne0/cTjiC2MYqhvao57VNfiuVksTSr2p17nVOhEr2KtqiAkGwHcgMC/qUuQ==", + "dev": true, "dependencies": { - "mime-db": "1.52.0" - }, - "engines": { - "node": ">= 0.6" + "consola": "^3.2.3" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, "engines": { "node": ">=6" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" - }, - "node_modules/minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" - }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dependencies": { - "brace-expansion": "^1.1.7" - }, + "node_modules/clear": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/clear/-/clear-0.1.0.tgz", + "integrity": "sha512-qMjRnoL+JDPJHeLePZJuao6+8orzHMGP04A8CdwCNsKhRbOnKRjefxONR7bwILT3MHecxKBjHkKL/tkZ8r4Uzw==", + "dev": true, "engines": { "node": "*" } }, - "node_modules/minimist": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", - "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/minipass": { - "version": "3.3.6", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", - "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "node_modules/clipboardy": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/clipboardy/-/clipboardy-3.0.0.tgz", + "integrity": "sha512-Su+uU5sr1jkUy1sGRpLKjKrvEOVXgSgiSInwa/qeID6aJ07yh+5NWc3h2QfjHjBnfX4LhtFcuAWKUsJ3r+fjbg==", + "dev": true, "dependencies": { - "yallist": "^4.0.0" + "arch": "^2.2.0", + "execa": "^5.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "node_modules/clipboardy/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" }, "engines": { - "node": ">= 8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/clipboardy/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=10.17.0" } }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/clipboardy/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/minipass/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" - }, + "node_modules/clipboardy/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=6" } }, - "node_modules/minizlib/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" - }, - "node_modules/mississippi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", - "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "node_modules/clipboardy/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, "dependencies": { - "concat-stream": "^1.5.0", - "duplexify": "^3.4.2", - "end-of-stream": "^1.1.0", - "flush-write-stream": "^1.0.0", - "from2": "^2.1.0", - "parallel-transform": "^1.1.0", - "pump": "^3.0.0", - "pumpify": "^1.3.3", - "stream-each": "^1.1.0", - "through2": "^2.0.0" + "path-key": "^3.0.0" }, "engines": { - "node": ">=4.0.0" + "node": ">=8" } }, - "node_modules/mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "node_modules/clipboardy/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, "dependencies": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dependencies": { - "minimist": "^1.2.6" + "node": ">=6" }, - "bin": { - "mkdirp": "bin/cmd.js" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/move-concurrently": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", - "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", - "dependencies": { - "aproba": "^1.1.1", - "copy-concurrently": "^1.0.0", - "fs-write-stream-atomic": "^1.0.8", - "mkdirp": "^0.5.1", - "rimraf": "^2.5.4", - "run-queue": "^1.0.3" + "node_modules/clipboardy/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" } }, - "node_modules/move-concurrently/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, "dependencies": { - "glob": "^7.1.3" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">=12" } }, - "node_modules/mrmime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", - "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "node_modules/cluster-key-slot": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/cluster-key-slot/-/cluster-key-slot-1.1.2.tgz", + "integrity": "sha512-RMr0FhtfXemyinomL4hrWcYJxmX6deFdCxpJzhDttxgO1+bcCnkk+9drydLVDmAMG7NE6aN/fl4F7ucU/90gAA==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" - }, - "node_modules/mustache": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz", - "integrity": "sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==", - "bin": { - "mustache": "bin/mustache" + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" }, "engines": { - "npm": ">=1.4.0" + "node": ">=7.0.0" } }, - "node_modules/mute-stream": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", - "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" - }, - "node_modules/nan": { - "version": "2.18.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", - "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", - "optional": true + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true }, - "node_modules/nanoid": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", - "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, "bin": { - "nanoid": "bin/nanoid.cjs" - }, - "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "color-support": "bin.js" } }, - "node_modules/nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==", + "dev": true }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==", "dev": true }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "dev": true, "engines": { - "node": ">= 0.6" + "node": ">= 10" } }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" - }, - "node_modules/no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", - "dependencies": { - "lower-case": "^1.1.1" - } + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", + "dev": true }, - "node_modules/node-fetch": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", - "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "node_modules/compress-commons": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/compress-commons/-/compress-commons-5.0.1.tgz", + "integrity": "sha512-MPh//1cERdLtqwO3pOFLeXtpuai0Y2WCd5AhtKxznqM7WtaMYaOEMSgn45d9D10sIHSfIKE603HlOp8OPGrvag==", + "dev": true, "dependencies": { - "whatwg-url": "^5.0.0" + "crc-32": "^1.2.0", + "crc32-stream": "^5.0.0", + "normalize-path": "^3.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } - } - }, - "node_modules/node-fetch-native": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.4.1.tgz", - "integrity": "sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==" - }, - "node_modules/node-html-parser": { - "version": "6.1.11", - "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.11.tgz", - "integrity": "sha512-FAgwwZ6h0DSDWxfD0Iq1tsDcBCxdJB1nXpLPPxX8YyVWzbfCjKWEzaynF4gZZ/8hziUmp7ZSaKylcn0iKhufUQ==", - "dependencies": { - "css-select": "^5.1.0", - "he": "1.2.0" + "node": ">= 12.0.0" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", "dev": true }, - "node_modules/node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dependencies": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - } - }, - "node_modules/node-libs-browser/node_modules/buffer": { - "version": "4.9.2", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", - "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", - "dependencies": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "node_modules/node-libs-browser/node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - }, - "node_modules/node-object-hash": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/node-object-hash/-/node-object-hash-1.4.2.tgz", - "integrity": "sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ==", + "node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/node-releases": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", - "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true }, - "node_modules/node-res": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/node-res/-/node-res-5.0.1.tgz", - "integrity": "sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg==", - "dependencies": { - "destroy": "^1.0.4", - "etag": "^1.8.1", - "mime-types": "^2.1.19", - "on-finished": "^2.3.0", - "vary": "^1.1.2" - } + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/cookie-es": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/cookie-es/-/cookie-es-1.0.0.tgz", + "integrity": "sha512-mWYvfOLrfEc996hlKcdABeIiPHUPC6DM2QYZdGGOvhOTbA3tjm2eBwqlJpoFdjC89NI4Qt6h0Pu06Mp+1Pj5OQ==", + "dev": true }, - "node_modules/normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", - "engines": { - "node": ">=0.10.0" - } + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true }, - "node_modules/normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==", - "dependencies": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" + "node_modules/crc-32": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/crc-32/-/crc-32-1.2.2.tgz", + "integrity": "sha512-ROmzCKrTnOwybPcJApAA6WBWij23HVfGVNKqqrZpuyZOHqK2CwHSvpGuyt/UNNvaIjEd8X5IFGp4Mh+Ie1IHJQ==", + "dev": true, + "bin": { + "crc32": "bin/crc32.njs" }, "engines": { - "node": ">=4" + "node": ">=0.8" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "node_modules/crc32-stream": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/crc32-stream/-/crc32-stream-5.0.0.tgz", + "integrity": "sha512-B0EPa1UK+qnpBZpG+7FgPCu0J2ETLpXq09o9BkLkEAhdB6Z61Qo4pJ3JYu0c+Qi+/SAL7QThqnzS06pmSSyZaw==", + "dev": true, "dependencies": { - "path-key": "^3.0.0" + "crc-32": "^1.2.0", + "readable-stream": "^3.4.0" }, "engines": { - "node": ">=8" + "node": ">= 12.0.0" } }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", - "dependencies": { - "boolbase": "^1.0.0" - }, - "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" - } + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true }, - "node_modules/nuxt": { - "version": "2.17.2", - "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-2.17.2.tgz", - "integrity": "sha512-7m/ViWSGAY6ffTxsgaSzWnFUc7LXxoAzSkGaK7qbBTcQSC9TlHhkgM9KIZMq6j4tjLvXadvb9Ks2JUBw69RJgA==", - "hasInstallScript": true, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, "dependencies": { - "@nuxt/babel-preset-app": "2.17.2", - "@nuxt/builder": "2.17.2", - "@nuxt/cli": "2.17.2", - "@nuxt/components": "^2.2.1", - "@nuxt/config": "2.17.2", - "@nuxt/core": "2.17.2", - "@nuxt/generator": "2.17.2", - "@nuxt/loading-screen": "^2.0.4", - "@nuxt/opencollective": "^0.3.3", - "@nuxt/server": "2.17.2", - "@nuxt/telemetry": "^1.4.1", - "@nuxt/utils": "2.17.2", - "@nuxt/vue-app": "2.17.2", - "@nuxt/vue-renderer": "2.17.2", - "@nuxt/webpack": "2.17.2" + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" }, - "bin": { - "nuxt": "bin/nuxt.js" - } - }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "node_modules/cross-spawn/node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, "dependencies": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": ">=0.10.0" + "node": ">= 8" } }, - "node_modules/object-copy/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", - "dependencies": { - "is-descriptor": "^0.1.0" - }, + "node_modules/css-declaration-sorter": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" } }, - "node_modules/object-copy/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dev": true, "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" }, - "engines": { - "node": ">= 0.4" + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/object-copy/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" } }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "dev": true, + "engines": { + "node": ">= 6" + }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, "engines": { - "node": ">= 0.4" + "node": ">=4" } }, - "node_modules/object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "node_modules/cssnano": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.2.tgz", + "integrity": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==", + "dev": true, "dependencies": { - "isobject": "^3.0.0" + "cssnano-preset-default": "^6.0.2", + "lilconfig": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "node_modules/cssnano-preset-default": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.2.tgz", + "integrity": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==", + "dev": true, "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" + "css-declaration-sorter": "^7.0.0", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.1", + "postcss-convert-values": "^6.0.1", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.1", + "postcss-merge-rules": "^6.0.2", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.1", + "postcss-minify-selectors": "^6.0.1", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.1", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.1", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.1", + "postcss-unique-selectors": "^6.0.1" }, "engines": { - "node": ">= 0.4" + "node": "^14 || ^16 || >=18.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/object.getownpropertydescriptors": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", - "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", + "node_modules/cssnano-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dev": true, "dependencies": { - "array.prototype.reduce": "^1.0.6", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "safe-array-concat": "^1.0.0" + "css-tree": "~2.2.0" }, "engines": { - "node": ">= 0.8" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dev": true, "dependencies": { - "isobject": "^3.0.1" + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" } }, - "node_modules/on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, "dependencies": { - "ee-first": "1.1.1" + "ms": "2.1.2" }, "engines": { - "node": ">= 0.8" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "node_modules/default-browser": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-4.0.0.tgz", + "integrity": "sha512-wX5pXO1+BrhMkSbROFsyxUm0i/cJEScyNhA4PPxc41ICuv05ZZB/MX28s8aZx6xjmatvebIapF6hLEKEcpneUA==", + "dev": true, "dependencies": { - "wrappy": "1" + "bundle-name": "^3.0.0", + "default-browser-id": "^3.0.0", + "execa": "^7.1.1", + "titleize": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "dev": true, "dependencies": { - "mimic-fn": "^2.1.0" + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" }, "engines": { - "node": ">=6" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/opener": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", - "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", - "bin": { - "opener": "bin/opener-bin.js" + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/optimize-css-assets-webpack-plugin": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-6.0.1.tgz", - "integrity": "sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ==", - "dependencies": { - "cssnano": "^5.0.2", - "last-call-webpack-plugin": "^3.0.0", - "postcss": "^8.2.1" - }, - "peerDependencies": { - "webpack": "^4.0.0" - } + "node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/denque": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/denque/-/denque-2.1.0.tgz", + "integrity": "sha512-HVQE3AAb/pxF8fQAoiqpvg9i3evqug3hoiwakOyZAwJm+6vZehbkYXZ0l4JxS+I3QxM97v5aaRNhj8v5oBhekw==", + "dev": true, "engines": { - "node": ">= 10" + "node": ">=0.10" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/css-declaration-sorter": { - "version": "6.4.1", - "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", - "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14" - }, - "peerDependencies": { - "postcss": "^8.0.9" + "node": ">= 0.8" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" - } + "node_modules/destr": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.2.tgz", + "integrity": "sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/css-tree": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", - "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", - "dependencies": { - "mdn-data": "2.0.14", - "source-map": "^0.6.1" - }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "dev": true, "engines": { - "node": ">=8.0.0" + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/cssnano": { - "version": "5.1.15", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", - "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", - "dependencies": { - "cssnano-preset-default": "^5.2.14", - "lilconfig": "^2.0.3", - "yaml": "^1.10.2" - }, + "node_modules/detect-libc": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.2.tgz", + "integrity": "sha512-UX6sGumvvqSaXgdKGUsgZWqcUyIXZ/vZTrlRT/iobiKhGL0zL4d3osHj3uqllWJK+i+sixDS/3COVEOFbupFyw==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/cssnano" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } - }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/cssnano-preset-default": { - "version": "5.2.14", - "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", - "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", - "dependencies": { - "css-declaration-sorter": "^6.3.1", - "cssnano-utils": "^3.1.0", - "postcss-calc": "^8.2.3", - "postcss-colormin": "^5.3.1", - "postcss-convert-values": "^5.1.3", - "postcss-discard-comments": "^5.1.2", - "postcss-discard-duplicates": "^5.1.0", - "postcss-discard-empty": "^5.1.1", - "postcss-discard-overridden": "^5.1.0", - "postcss-merge-longhand": "^5.1.7", - "postcss-merge-rules": "^5.1.4", - "postcss-minify-font-values": "^5.1.0", - "postcss-minify-gradients": "^5.1.1", - "postcss-minify-params": "^5.1.4", - "postcss-minify-selectors": "^5.2.1", - "postcss-normalize-charset": "^5.1.0", - "postcss-normalize-display-values": "^5.1.0", - "postcss-normalize-positions": "^5.1.1", - "postcss-normalize-repeat-style": "^5.1.1", - "postcss-normalize-string": "^5.1.0", - "postcss-normalize-timing-functions": "^5.1.0", - "postcss-normalize-unicode": "^5.1.1", - "postcss-normalize-url": "^5.1.0", - "postcss-normalize-whitespace": "^5.1.1", - "postcss-ordered-values": "^5.1.3", - "postcss-reduce-initial": "^5.1.2", - "postcss-reduce-transforms": "^5.1.0", - "postcss-svgo": "^5.1.0", - "postcss-unique-selectors": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/cssnano-utils": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", - "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "node_modules/devalue": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-4.3.2.tgz", + "integrity": "sha512-KqFl6pOgOW+Y6wJgu80rHpo2/3H07vr8ntR9rkkFIRETewbf5GaYYcakYfiKz89K+sLsuPkQIZaXDMjUObZwWg==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/csso": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", - "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", - "dependencies": { - "css-tree": "^1.1.2" - }, + "node_modules/diff": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/diff/-/diff-5.1.0.tgz", + "integrity": "sha512-D+mk+qE8VC/PAUrlAU34N+VfXev0ghe5ywmpqrawphmVZc1bEfn56uo9qpyGp1p4xpzOHkSW4ztBd6L7Xx4ACw==", + "dev": true, "engines": { - "node": ">=8.0.0" + "node": ">=0.3.1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dev": true, "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" }, "funding": { "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dev": true, "dependencies": { - "domelementtype": "^2.2.0" + "domelementtype": "^2.3.0" }, "engines": { "node": ">= 4" @@ -11347,523 +4394,517 @@ "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" }, "funding": { "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", - "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" - } - }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", - "engines": { - "node": ">=10" - } - }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/mdn-data": { - "version": "2.0.14", - "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", - "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" - }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/normalize-url": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", - "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "node_modules/dot-prop": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-8.0.2.tgz", + "integrity": "sha512-xaBe6ZT4DHPkg0k4Ytbvn5xoxgpG0jOS1dYxSOwAHPuNLjP3/OzN0gH55SrLqpx8cBfSaVt91lXYkApjb+nYdQ==", + "dev": true, + "dependencies": { + "type-fest": "^3.8.0" + }, "engines": { - "node": ">=10" + "node": ">=16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-calc": { - "version": "8.2.4", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", - "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", - "dependencies": { - "postcss-selector-parser": "^6.0.9", - "postcss-value-parser": "^4.2.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" - } - }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-colormin": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", - "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-convert-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", - "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", - "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-comments": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", - "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-duplicates": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", - "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-empty": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", - "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" - } + "node_modules/electron-to-chromium": { + "version": "1.4.615", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.615.tgz", + "integrity": "sha512-/bKPPcgZVUziECqDc+0HkT87+0zhaWSZHNXqF8FLd2lQcptpmUFwoCSWjCdOng9Gdq+afKArPdEg/0ZW461Eng==", + "dev": true }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-overridden": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", - "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.8" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-merge-longhand": { - "version": "5.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", - "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^5.1.1" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "iconv-lite": "^0.6.2" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-merge-rules": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", - "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^3.1.0", - "postcss-selector-parser": "^6.0.5" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=10.13.0" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-font-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", - "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=0.12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-gradients": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", - "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", - "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=6" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-params": { - "version": "5.1.4", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", - "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "node_modules/error-stack-parser-es": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/error-stack-parser-es/-/error-stack-parser-es-0.1.1.tgz", + "integrity": "sha512-g/9rfnvnagiNf+DRMHEVGuGuIBlCIMDFoTA616HaP2l9PlCjGjVhD98PNbVSJvmK4TttqT5mV5tInMhoFgi+aA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-selectors": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", - "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", - "dependencies": { - "postcss-selector-parser": "^6.0.5" + "node_modules/esbuild": { + "version": "0.19.10", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.10.tgz", + "integrity": "sha512-S1Y27QGt/snkNYrRcswgRFqZjaTG5a5xM3EQo97uNBnH505pdzSNe/HLBq1v0RO7iK/ngdbhJB6mDAp0OK+iUA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.19.10", + "@esbuild/android-arm": "0.19.10", + "@esbuild/android-arm64": "0.19.10", + "@esbuild/android-x64": "0.19.10", + "@esbuild/darwin-arm64": "0.19.10", + "@esbuild/darwin-x64": "0.19.10", + "@esbuild/freebsd-arm64": "0.19.10", + "@esbuild/freebsd-x64": "0.19.10", + "@esbuild/linux-arm": "0.19.10", + "@esbuild/linux-arm64": "0.19.10", + "@esbuild/linux-ia32": "0.19.10", + "@esbuild/linux-loong64": "0.19.10", + "@esbuild/linux-mips64el": "0.19.10", + "@esbuild/linux-ppc64": "0.19.10", + "@esbuild/linux-riscv64": "0.19.10", + "@esbuild/linux-s390x": "0.19.10", + "@esbuild/linux-x64": "0.19.10", + "@esbuild/netbsd-x64": "0.19.10", + "@esbuild/openbsd-x64": "0.19.10", + "@esbuild/sunos-x64": "0.19.10", + "@esbuild/win32-arm64": "0.19.10", + "@esbuild/win32-ia32": "0.19.10", + "@esbuild/win32-x64": "0.19.10" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-charset": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", - "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=6" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-display-values": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", - "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "dev": true + }, + "node_modules/escape-string-regexp": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-5.0.0.tgz", + "integrity": "sha512-/veY75JbMK4j1yjvuUxuVsiS/hr/4iHs9FTT6cgTexxdE0Ly/glccBAkloH/DofkjRbZU3bnoj38mOmhkZ0lHw==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-positions": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", - "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "@types/estree": "^1.0.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.6" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-repeat-style": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", - "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "node_modules/execa": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.2.0.tgz", + "integrity": "sha512-UduyVP7TLB5IcAQl+OzLyLcS/l32W/GLg+AhHJ+ow40FOk2U3SAllPwR44v4vmdFwIWqpdwxxpQbF1n5ta9seA==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-string": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", - "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "node_modules/exponential-backoff": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/exponential-backoff/-/exponential-backoff-3.1.1.tgz", + "integrity": "sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==", + "dev": true + }, + "node_modules/externality": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/externality/-/externality-1.0.2.tgz", + "integrity": "sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "enhanced-resolve": "^5.14.1", + "mlly": "^1.3.0", + "pathe": "^1.1.1", + "ufo": "^1.1.2" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-timing-functions": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", - "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "node_modules/fast-fifo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/fast-fifo/-/fast-fifo-1.3.2.tgz", + "integrity": "sha512-/d9sfos4yxzpwkDkuN7k2SqFKtYNmCTzgfEpz82x34IM9/zc8KGxQoXg1liNC/izpRM/MBdt44Nmx41ZWqk+FQ==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8.6.0" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-unicode": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", - "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "node_modules/fastq": { + "version": "1.16.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.16.0.tgz", + "integrity": "sha512-ifCoaXsDrsdkWTtiNJX5uzHDsrck5TzfKKDcuFFTIrrc/BS076qgEIfoIy1VeZqViznfKiysPYTh/QeHtnIsYA==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "reusify": "^1.0.4" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-url": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", - "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "dev": true + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, "dependencies": { - "normalize-url": "^6.0.1", - "postcss-value-parser": "^4.2.0" + "to-regex-range": "^5.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-whitespace": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", - "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-ordered-values": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", - "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, "dependencies": { - "cssnano-utils": "^3.1.0", - "postcss-value-parser": "^4.2.0" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=8" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-reduce-initial": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", - "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "dev": true, + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=14" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-reduce-transforms": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", - "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": ">=14" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-svgo": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", - "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^2.7.0" - }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" + "node": "*" }, - "peerDependencies": { - "postcss": "^8.2.15" + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-unique-selectors": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", - "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", - "dependencies": { - "postcss-selector-parser": "^6.0.5" - }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "dev": true, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">= 0.6" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/stylehacks": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", - "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": "^10 || ^12 || >=14.0" - }, - "peerDependencies": { - "postcss": "^8.2.15" + "node": ">=14.14" } }, - "node_modules/optimize-css-assets-webpack-plugin/node_modules/svgo": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", - "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "node_modules/fs-minipass": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-3.0.3.tgz", + "integrity": "sha512-XUBA9XClHbnJWSfBzjkm6RvPsyg3sryZt06BEQoXcF7EK/xpGaQYJgQKDJSUH5SGZ76Y7pFx1QBnXz09rU5Fbw==", + "dev": true, "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^4.1.3", - "css-tree": "^1.1.3", - "csso": "^4.2.0", - "picocolors": "^1.0.0", - "stable": "^0.1.8" - }, - "bin": { - "svgo": "bin/svgo" + "minipass": "^7.0.3" }, "engines": { - "node": ">=10.13.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=0.10.0" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", - "dependencies": { - "p-limit": "^2.2.0" - }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=6.9.0" } }, - "node_modules/p-locate/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", - "dependencies": { - "p-try": "^2.0.0" - }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/p-map": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", - "dependencies": { - "aggregate-error": "^3.0.0" - }, + "node_modules/get-port-please": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-3.1.1.tgz", + "integrity": "sha512-3UBAyM3u4ZBVYDsxOQfJDxEa6XTbpBDrOjp4mf7ExFRt5BKs/QywQQiJsh2B+hxcZLSapWqCRvElUe8DnKcFHA==", + "dev": true + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, "engines": { "node": ">=10" }, @@ -11871,5247 +4912,5534 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "engines": { - "node": ">=6" + "node_modules/giget": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.1.3.tgz", + "integrity": "sha512-zHuCeqtfgqgDwvXlR84UNgnJDuUHQcNI5OqWqFxxuk2BshuKbYhJWdxBsEo4PvKqoGh23lUAIvBNpChMLv7/9Q==", + "dev": true, + "dependencies": { + "colorette": "^2.0.20", + "defu": "^6.1.2", + "https-proxy-agent": "^7.0.2", + "mri": "^1.2.0", + "node-fetch-native": "^1.4.0", + "pathe": "^1.1.1", + "tar": "^6.2.0" + }, + "bin": { + "giget": "dist/cli.mjs" } }, - "node_modules/pako": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", - "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" - }, - "node_modules/papaparse": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", - "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" + "node_modules/git-config-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", + "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", + "dev": true, + "engines": { + "node": ">=4" + } }, - "node_modules/parallel-transform": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", - "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", + "dev": true, "dependencies": { - "cyclist": "^1.0.1", - "inherits": "^2.0.3", - "readable-stream": "^2.1.5" + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" } }, - "node_modules/param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "node_modules/git-url-parse": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.1.tgz", + "integrity": "sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==", + "dev": true, "dependencies": { - "no-case": "^2.2.0" + "git-up": "^7.0.0" } }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, "dependencies": { - "callsites": "^3.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": ">=6" - } - }, - "node_modules/parse-asn1": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", - "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", - "dependencies": { - "asn1.js": "^5.2.0", - "browserify-aes": "^1.0.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/parse-git-config": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", - "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, "dependencies": { - "git-config-path": "^2.0.0", - "ini": "^1.3.5" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/global-directory": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/global-directory/-/global-directory-4.0.1.tgz", + "integrity": "sha512-wHTUcDUoZ1H5/0iVqEudYW4/kAlN5cZ3j/bXn0Dpbizl9iaUVeWSHqiOjsgk6OW2bkLclbBjzewBz6weQ1zA2Q==", + "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "ini": "4.1.1" }, "engines": { - "node": ">=8" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/parse-path": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", - "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", - "dependencies": { - "protocols": "^2.0.0" - } - }, - "node_modules/parse-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", - "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", - "dependencies": { - "parse-path": "^7.0.0" - } - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", - "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" - } - }, - "node_modules/pascal-case/node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", - "dependencies": { - "tslib": "^2.0.3" + "node": ">=4" } }, - "node_modules/pascal-case/node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/globby": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.0.tgz", + "integrity": "sha512-/1WM/LNHRAOH9lZta77uGbq0dAEQM+XjNesWwhlERDVenqothRbnzTrL3/LrIoEPPjeUHC3vrS6TwoyxeHs7MQ==", + "dev": true, "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" - } - }, - "node_modules/pascal-case/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "@sindresorhus/merge-streams": "^1.0.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" - }, - "node_modules/path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", - "optional": true + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/gzip-size": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-7.0.0.tgz", + "integrity": "sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==", + "dev": true, + "dependencies": { + "duplexer": "^0.1.2" + }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", - "engines": { - "node": ">=0.10.0" + "node_modules/h3": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/h3/-/h3-1.9.0.tgz", + "integrity": "sha512-+F3ZqrNV/CFXXfZ2lXBINHi+rM4Xw3CDC5z2CDK3NMPocjonKipGLLDSkrqY9DOrioZNPTIdDMWfQKm//3X2DA==", + "dev": true, + "dependencies": { + "cookie-es": "^1.0.0", + "defu": "^6.1.3", + "destr": "^2.0.2", + "iron-webcrypto": "^1.0.0", + "radix3": "^1.1.0", + "ufo": "^1.3.2", + "uncrypto": "^0.1.3", + "unenv": "^1.7.4" } }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==", + "dev": true + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.2" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/pbkdf2": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", - "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "node_modules/hookable": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/hookable/-/hookable-5.5.3.tgz", + "integrity": "sha512-Yc+BQe8SvoXH1643Qez1zqLRmbA5rCL+sSmk6TVos0LWVfNIB7PGncdlId77WzLGSIB5KaWgTaNTs2lNVEI6VQ==", + "dev": true + }, + "node_modules/hosted-git-info": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-7.0.1.tgz", + "integrity": "sha512-+K84LB1DYwMHoHSgaOY/Jfhw3ucPmSET5v98Ke/HdNSw4a0UktWzyW1mjhjpuxxTqOOsfWT/7iVshHmVZ4IpOA==", + "dev": true, "dependencies": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" + "lru-cache": "^10.0.1" }, "engines": { - "node": ">=0.12" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" - }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": "14 || >=16.14" } }, - "node_modules/pify": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", - "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/pirates": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", - "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", - "dev": true, - "engines": { - "node": ">= 6" - } + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, "dependencies": { - "find-up": "^4.0.0" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/pnp-webpack-plugin": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz", - "integrity": "sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==", + "node_modules/http-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.0.tgz", + "integrity": "sha512-+ZT+iBxVUQ1asugqnD6oWoRiS25AkjNfG085dKJGtGxkdwLQrMKU5wJr2bOOFAXzKcTuqq+7fZlTMgG3SRfIYQ==", + "dev": true, "dependencies": { - "ts-pnp": "^1.1.6" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": ">=6" + "node": ">= 14" } }, - "node_modules/popper.js": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", - "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", - "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/popperjs" - } - }, - "node_modules/portal-vue": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/portal-vue/-/portal-vue-2.1.7.tgz", - "integrity": "sha512-+yCno2oB3xA7irTt0EU5Ezw22L2J51uKAacE/6hMPMoO/mx3h4rXFkkBkT4GFsMDv/vEe8TNKC3ujJJ0PTwb6g==", - "peerDependencies": { - "vue": "^2.5.18" - } - }, - "node_modules/posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "node_modules/http-shutdown": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/http-shutdown/-/http-shutdown-1.2.2.tgz", + "integrity": "sha512-S9wWkJ/VSY9/k4qcjG318bqJNruzE4HySUhFYknwmu6LBP97KLLfwNf+n4V1BHurvFNkSKLFnK/RsuUnRTf9Vw==", + "dev": true, "engines": { - "node": ">=0.10.0" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/postcss": { - "version": "8.4.32", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", - "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/https-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.2.tgz", + "integrity": "sha512-NmLNjm6ucYwtcUmL7JQC1ZQ57LmHP4lT15FQ8D61nak1rO6DH+fz5qNK2Ap5UN4ZapYICE3/0KodcLYSPsPbaA==", + "dev": true, "dependencies": { - "nanoid": "^3.3.7", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "agent-base": "^7.0.2", + "debug": "4" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 14" } }, - "node_modules/postcss-attribute-case-insensitive": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-6.0.2.tgz", - "integrity": "sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==", - "dependencies": { - "postcss-selector-parser": "^6.0.10" - }, + "node_modules/httpxy": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/httpxy/-/httpxy-0.1.5.tgz", + "integrity": "sha512-hqLDO+rfststuyEUTWObQK6zHEEmZ/kaIP2/zclGGZn6X8h/ESTWg+WKecQ/e5k4nPswjzZD+q2VqZIbr15CoQ==", + "dev": true + }, + "node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=14.18.0" } }, - "node_modules/postcss-calc": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", - "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, "dependencies": { - "postcss-selector-parser": "^6.0.11", - "postcss-value-parser": "^4.2.0" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.2.2" + "node": ">=0.10.0" } }, - "node_modules/postcss-clamp": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", - "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "dev": true, "engines": { - "node": ">=7.6.0" - }, - "peerDependencies": { - "postcss": "^8.4.6" + "node": ">= 4" } }, - "node_modules/postcss-color-functional-notation": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.3.tgz", - "integrity": "sha512-2jBr3H0sk3qGh/3BkmLsOKcYyVfSlM1K2QQYVU7eW5mkg7ZOQ4aU/Rtbh7vJ9FxAfgf8iHRwXBsQkHqUxzTkXw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/ignore-walk": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-6.0.4.tgz", + "integrity": "sha512-t7sv42WkwFkyKbivUCglsQW5YWMskWtbEf4MNKX5u/CCWHKSPzN4FtBQGsQZgCLbxOzpVlcbWVK5KB3auIOjSw==", + "dev": true, "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" + "minimatch": "^9.0.0" }, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-color-hex-alpha": { + "node_modules/ignore-walk/node_modules/minimatch": { "version": "9.0.3", - "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.3.tgz", - "integrity": "sha512-7sEHU4tAS6htlxun8AB9LDrCXoljxaC34tFVRlYKcvO+18r5fvGiXgv5bQzN40+4gXLCyWSMRK5FK31244WcCA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/postcss-color-rebeccapurple": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.2.tgz", - "integrity": "sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/image-meta": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/image-meta/-/image-meta-0.2.0.tgz", + "integrity": "sha512-ZBGjl0ZMEMeOC3Ns0wUF/5UdUmr3qQhBSCniT0LxOgGGIRHiNFOkMtIHB7EOznRU47V2AxPgiVP+s+0/UCU0Hg==", + "dev": true + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=0.8.19" } }, - "node_modules/postcss-colormin": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.1.tgz", - "integrity": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "colord": "^2.9.1", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-convert-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.1.tgz", - "integrity": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==", + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/ini": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/ini/-/ini-4.1.1.tgz", + "integrity": "sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-custom-media": { - "version": "10.0.2", - "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz", - "integrity": "sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/ioredis": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/ioredis/-/ioredis-5.3.2.tgz", + "integrity": "sha512-1DKMMzlIHM02eBBVOFQ1+AolGjs6+xEcM4PDL7NqOS6szq7H9jSaEkIUH6/a5Hl241LzW6JLSiAbNvTQjUupUA==", + "dev": true, "dependencies": { - "@csstools/cascade-layer-name-parser": "^1.0.5", - "@csstools/css-parser-algorithms": "^2.3.2", - "@csstools/css-tokenizer": "^2.2.1", - "@csstools/media-query-list-parser": "^2.1.5" + "@ioredis/commands": "^1.1.1", + "cluster-key-slot": "^1.1.0", + "debug": "^4.3.4", + "denque": "^2.1.0", + "lodash.defaults": "^4.2.0", + "lodash.isarguments": "^3.1.0", + "redis-errors": "^1.2.0", + "redis-parser": "^3.0.0", + "standard-as-callback": "^2.1.0" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=12.22.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ioredis" } }, - "node_modules/postcss-custom-properties": { - "version": "13.3.3", - "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-13.3.3.tgz", - "integrity": "sha512-xLmILb2R83aG4X++iVFg8TWadOlc45xiyFHRZD6Yhhu2igrTHXL6C75AEWqx6k9lxrr9sK5rcfUI9JvTCxBTvA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/iron-webcrypto": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/iron-webcrypto/-/iron-webcrypto-1.0.0.tgz", + "integrity": "sha512-anOK1Mktt8U1Xi7fCM3RELTuYbnFikQY5VtrDj7kPgpejV7d43tWKhzgioO0zpkazLEL/j/iayRqnJhrGfqUsg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/brc-dd" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, "dependencies": { - "@csstools/cascade-layer-name-parser": "^1.0.6", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "postcss-value-parser": "^4.2.0" + "binary-extensions": "^2.0.0" }, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/postcss-custom-selectors": { - "version": "7.1.6", - "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-7.1.6.tgz", - "integrity": "sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/is-builtin-module": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/is-builtin-module/-/is-builtin-module-3.2.1.tgz", + "integrity": "sha512-BSLE3HnV2syZ0FK0iMA/yUGplUeMmNz4AW5fnTunbCIqZi4vG3WjJT9FHMy5D69xmAYBHXQhJdALdpwVxV501A==", + "dev": true, "dependencies": { - "@csstools/cascade-layer-name-parser": "^1.0.5", - "@csstools/css-parser-algorithms": "^2.3.2", - "@csstools/css-tokenizer": "^2.2.1", - "postcss-selector-parser": "^6.0.13" + "builtin-modules": "^3.3.0" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=6" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-dir-pseudo-class": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.1.tgz", - "integrity": "sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.13" - }, - "engines": { - "node": "^14 || ^16 || >=18" + "hasown": "^2.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/postcss-discard-comments": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", - "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" + }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.4.31" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-discard-duplicates": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", - "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=0.10.0" } }, - "node_modules/postcss-discard-empty": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", - "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-discard-overridden": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", - "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", - "engines": { - "node": "^14 || ^16 || >=18.0" + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" }, - "peerDependencies": { - "postcss": "^8.4.31" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/postcss-double-position-gradients": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.3.tgz", - "integrity": "sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/is-inside-container": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "dev": true, "dependencies": { - "@csstools/postcss-progressive-custom-properties": "^3.0.3", - "postcss-value-parser": "^4.2.0" + "is-docker": "^3.0.0" + }, + "bin": { + "is-inside-container": "cli.js" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=14.16" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-focus-visible": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-9.0.1.tgz", - "integrity": "sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-selector-parser": "^6.0.13" + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "dev": true, + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-focus-within": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz", - "integrity": "sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/is-installed-globally": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-1.0.0.tgz", + "integrity": "sha512-K55T22lfpQ63N4KEN57jZUAaAYqYHEe8veb/TycJRk9DdSCLLcovXz/mL6mOnhQaZsQGwPhuFopdQIlqGSEjiQ==", + "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.13" + "global-directory": "^4.0.1", + "is-path-inside": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": ">=18" }, - "peerDependencies": { - "postcss": "^8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-font-variant": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", - "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", - "peerDependencies": { - "postcss": "^8.1.0" - } + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true }, - "node_modules/postcss-gap-properties": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-5.0.1.tgz", - "integrity": "sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" - } + "node_modules/is-module": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-module/-/is-module-1.0.0.tgz", + "integrity": "sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==", + "dev": true }, - "node_modules/postcss-image-set-function": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-6.0.2.tgz", - "integrity": "sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=0.12.0" } }, - "node_modules/postcss-import": { - "version": "15.1.0", - "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", - "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", - "dependencies": { - "postcss-value-parser": "^4.0.0", - "read-cache": "^1.0.0", - "resolve": "^1.1.7" - }, + "node_modules/is-path-inside": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-4.0.0.tgz", + "integrity": "sha512-lJJV/5dYS+RcL8uQdBDW9c9uWFLLBNRyFhnAKXw5tVqLlKZ4RMGZKv+YQ/IA3OhD+RpbJa1LLFM1FQPGyIXvOA==", + "dev": true, "engines": { - "node": ">=14.0.0" + "node": ">=12" }, - "peerDependencies": { - "postcss": "^8.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-import-resolver": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz", - "integrity": "sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==", - "dependencies": { - "enhanced-resolve": "^4.1.1" + "node_modules/is-primitive": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-3.0.1.tgz", + "integrity": "sha512-GljRxhWvlCNRfZyORiH77FwdFwGcMO620o37EOYC0ORWdq+WYNVqW0w2Juzew4M+L81l6/QS3t5gkkihyRqv9w==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/postcss-lab-function": { - "version": "6.0.8", - "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-6.0.8.tgz", - "integrity": "sha512-agYs7R9Z5gnX837fCkH8TEQIHdhyDsMPPnpuuENt/dxoDVAykBaqbdxIN4DagOj+ZQo20iRNNJeY3MsFcdI6Sg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/is-promise": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-promise/-/is-promise-4.0.0.tgz", + "integrity": "sha512-hvpoI6korhJMnej285dSg6nu1+e6uxs7zG3BYAm5byqDsgJNWwxzM6z6iZiAgQR4TJ30JmBTOwqZUw3WlyH3AQ==", + "dev": true + }, + "node_modules/is-reference": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/is-reference/-/is-reference-1.2.1.tgz", + "integrity": "sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==", + "dev": true, "dependencies": { - "@csstools/css-color-parser": "^1.5.0", - "@csstools/css-parser-algorithms": "^2.4.0", - "@csstools/css-tokenizer": "^2.2.2", - "@csstools/postcss-progressive-custom-properties": "^3.0.3" - }, - "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "@types/estree": "*" } }, - "node_modules/postcss-loader": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", - "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", + "dev": true, "dependencies": { - "cosmiconfig": "^7.0.0", - "klona": "^2.0.4", - "loader-utils": "^2.0.0", - "schema-utils": "^3.0.0", - "semver": "^7.3.4" - }, + "protocols": "^2.0.1" + } + }, + "node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, "engines": { - "node": ">= 10.13.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "postcss": "^7.0.0 || ^8.0.1", - "webpack": "^4.0.0 || ^5.0.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-loader/node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "dev": true, "dependencies": { - "yallist": "^4.0.0" + "is-docker": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/postcss-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "@isaacs/cliui": "^8.0.2" }, "engines": { - "node": ">= 10.13.0" + "node": ">=14" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/isaacs" + }, + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/postcss-loader/node_modules/semver": { - "version": "7.5.4", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", - "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", - "dependencies": { - "lru-cache": "^6.0.0" - }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "dev": true, "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" + "jiti": "bin/jiti.js" } }, - "node_modules/postcss-loader/node_modules/yallist": { + "node_modules/js-tokens": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true }, - "node_modules/postcss-logical": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-7.0.1.tgz", - "integrity": "sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18" + "argparse": "^2.0.1" }, - "peerDependencies": { - "postcss": "^8.4" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/postcss-merge-longhand": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.1.tgz", - "integrity": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==", - "dependencies": { - "postcss-value-parser": "^4.2.0", - "stylehacks": "^6.0.1" + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=4" } }, - "node_modules/postcss-merge-rules": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.2.tgz", - "integrity": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==", - "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0", - "cssnano-utils": "^4.0.1", - "postcss-selector-parser": "^6.0.5" - }, + "node_modules/json-parse-even-better-errors": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-3.0.1.tgz", + "integrity": "sha512-aatBvbL26wVUCLmbWdCpeu9iF5wOyWpagiKkInA+kfws3sWdBrTnsvN2CKcyCYyUrc7rebNBlK6+kteg7ksecg==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/postcss-minify-font-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", - "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", - "dependencies": { - "postcss-value-parser": "^4.2.0" + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=6" } }, - "node_modules/postcss-minify-gradients": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", - "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "node_modules/jsonc-parser": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/jsonc-parser/-/jsonc-parser-3.2.0.tgz", + "integrity": "sha512-gfFQZrcTc8CnKXp6Y4/CBT3fTc0OVuDofpre4aEeEpSBPV5X5v4+Vmx+8snU7RLPrNHPKSgLxGo9YuQzz20o+w==", + "dev": true + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, "dependencies": { - "colord": "^2.9.1", - "cssnano-utils": "^4.0.1", - "postcss-value-parser": "^4.2.0" + "universalify": "^2.0.0" }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsonparse": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/jsonparse/-/jsonparse-1.3.1.tgz", + "integrity": "sha512-POQXvpdL69+CluYsillJ7SUhKvytYjW9vG/GKpnf+xP8UWgYEM/RaMzHHofbALDiKbbP1W8UEYmgGl39WkPZsg==", + "dev": true, + "engines": [ + "node >= 0.2.0" + ] + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=6" } }, - "node_modules/postcss-minify-params": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.1.tgz", - "integrity": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==", - "dependencies": { - "browserslist": "^4.21.4", - "cssnano-utils": "^4.0.1", - "postcss-value-parser": "^4.2.0" - }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">= 8" } }, - "node_modules/postcss-minify-selectors": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.1.tgz", - "integrity": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==", + "node_modules/knitwork": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/knitwork/-/knitwork-1.0.0.tgz", + "integrity": "sha512-dWl0Dbjm6Xm+kDxhPQJsCBTxrJzuGl0aP9rhr+TG8D3l+GL90N8O8lYUi7dTSAN2uuDqCtNgb6aEuQH5wsiV8Q==", + "dev": true + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true + }, + "node_modules/launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/lazystream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/lazystream/-/lazystream-1.0.1.tgz", + "integrity": "sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.5" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">= 0.6.3" } }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node_modules/lazystream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", - "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "node_modules/lazystream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/lazystream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/postcss-modules-scope": { + "node_modules/lilconfig": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", - "dependencies": { - "postcss-selector-parser": "^6.0.4" - }, + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "dev": true, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">=14" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "node_modules/listhen": { + "version": "1.5.5", + "resolved": "https://registry.npmjs.org/listhen/-/listhen-1.5.5.tgz", + "integrity": "sha512-LXe8Xlyh3gnxdv4tSjTjscD1vpr/2PRpzq8YIaMJgyKzRG8wdISlWVWnGThJfHnlJ6hmLt2wq1yeeix0TEbuoA==", + "dev": true, "dependencies": { - "icss-utils": "^5.0.0" - }, - "engines": { - "node": "^10 || ^12 || >= 14" + "@parcel/watcher": "^2.3.0", + "@parcel/watcher-wasm": "2.3.0", + "citty": "^0.1.4", + "clipboardy": "^3.0.0", + "consola": "^3.2.3", + "defu": "^6.1.2", + "get-port-please": "^3.1.1", + "h3": "^1.8.1", + "http-shutdown": "^1.2.2", + "jiti": "^1.20.0", + "mlly": "^1.4.2", + "node-forge": "^1.3.1", + "pathe": "^1.1.1", + "std-env": "^3.4.3", + "ufo": "^1.3.0", + "untun": "^0.1.2", + "uqr": "^0.1.2" }, - "peerDependencies": { - "postcss": "^8.1.0" + "bin": { + "listen": "bin/listhen.mjs", + "listhen": "bin/listhen.mjs" } }, - "node_modules/postcss-nesting": { - "version": "12.0.2", - "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.0.2.tgz", - "integrity": "sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/local-pkg": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.5.0.tgz", + "integrity": "sha512-ok6z3qlYyCDS4ZEU27HaU6x/xZa9Whf8jD4ptH5UZTQYZVYeb9bnZ3ojVhiJNLiXK1Hfc0GNbLXcmZ5plLDDBg==", + "dev": true, "dependencies": { - "@csstools/selector-specificity": "^3.0.1", - "postcss-selector-parser": "^6.0.13" - }, - "engines": { - "node": "^14 || ^16 || >=18" + "mlly": "^1.4.2", + "pkg-types": "^1.0.3" }, - "peerDependencies": { - "postcss": "^8.4" - } - }, - "node_modules/postcss-normalize-charset": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", - "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=14" }, - "peerDependencies": { - "postcss": "^8.4.31" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/postcss-normalize-display-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", - "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "p-locate": "^4.1.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-normalize-positions": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", - "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.defaults": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.defaults/-/lodash.defaults-4.2.0.tgz", + "integrity": "sha512-qjxPLHd3r5DnsdGacqOMU6pb/avJzdh9tFX2ymgoZE27BmjXrNy/y4LoaiTeAb+O3gL8AfpJGtqfX/ae2leYYQ==", + "dev": true + }, + "node_modules/lodash.isarguments": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/lodash.isarguments/-/lodash.isarguments-3.1.0.tgz", + "integrity": "sha512-chi4NHZlZqZD18a0imDHnZPrDeBbTtVN7GXMwuGdRH9qotxAjYs3aVLKc7zNOG9eddR5Ksd8rvFEBc9SsggPpg==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.pick": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/lodash.pick/-/lodash.pick-4.4.0.tgz", + "integrity": "sha512-hXt6Ul/5yWjfklSGvLQl8vM//l3FtyHZeuelpzK6mm99pNvN9yTDruNZPEJZD1oWrqo+izBmB7oUfWgcCX7s4Q==", + "dev": true + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==", + "dev": true + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "yallist": "^3.0.2" } }, - "node_modules/postcss-normalize-repeat-style": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", - "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", + "node_modules/magic-string": { + "version": "0.30.5", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.5.tgz", + "integrity": "sha512-7xlpfBaQaP/T6Vh8MO/EqXSW5En6INHEvEXQiuff7Gku0PWjU3uf6w/j9o7O+SpB5fOAkrI5HeoNgwjEO0pFsA==", "dependencies": { - "postcss-value-parser": "^4.2.0" + "@jridgewell/sourcemap-codec": "^1.4.15" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=12" } }, - "node_modules/postcss-normalize-string": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", - "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", + "node_modules/magic-string-ast": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/magic-string-ast/-/magic-string-ast-0.3.0.tgz", + "integrity": "sha512-0shqecEPgdFpnI3AP90epXyxZy9g6CRZ+SZ7BcqFwYmtFEnZ1jpevcV5HoyVnlDS9gCnc1UIg3Rsvp3Ci7r8OA==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "magic-string": "^0.30.2" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=16.14.0" } }, - "node_modules/postcss-normalize-timing-functions": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", - "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", + "node_modules/magicast": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/magicast/-/magicast-0.3.2.tgz", + "integrity": "sha512-Fjwkl6a0syt9TFN0JSYpOybxiMCkYNEeOTnOTNRbjphirLakznZXAqrXgj/7GG3D1dvETONNwrBfinvAbpunDg==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "@babel/parser": "^7.23.3", + "@babel/types": "^7.23.3", + "source-map-js": "^1.0.2" } }, - "node_modules/postcss-normalize-unicode": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.1.tgz", - "integrity": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-value-parser": "^4.2.0" + "semver": "^6.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=8" }, - "peerDependencies": { - "postcss": "^8.4.31" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/postcss-normalize-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", - "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", - "dependencies": { - "postcss-value-parser": "^4.2.0" - }, - "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/postcss-normalize-whitespace": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", - "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", + "node_modules/make-fetch-happen": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-13.0.0.tgz", + "integrity": "sha512-7ThobcL8brtGo9CavByQrQi+23aIfgYU++wg4B87AIS8Rb2ZBt/MEaDqzA00Xwv/jUjAjYkLHjVolYuTLKda2A==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "@npmcli/agent": "^2.0.0", + "cacache": "^18.0.0", + "http-cache-semantics": "^4.1.1", + "is-lambda": "^1.0.1", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "ssri": "^10.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/postcss-opacity-percentage": { + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==", + "dev": true + }, + "node_modules/merge-stream": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-2.0.0.tgz", - "integrity": "sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==", - "funding": [ - { - "type": "kofi", - "url": "https://ko-fi.com/mrcgrtz" - }, - { - "type": "liberapay", - "url": "https://liberapay.com/mrcgrtz" - } - ], + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.2" + "node": ">= 8" } }, - "node_modules/postcss-ordered-values": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", - "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, "dependencies": { - "cssnano-utils": "^4.0.1", - "postcss-value-parser": "^4.2.0" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-3.0.0.tgz", + "integrity": "sha512-jSCU7/VB1loIWBZe14aEYHU/+1UMEHoaO7qxCOVJOw9GgH72VAWppxNcjU+x9a2k3GSIBXNKxXQFqRvvZ7vr3A==", + "dev": true, + "bin": { + "mime": "cli.js" }, - "peerDependencies": { - "postcss": "^8.4.31" + "engines": { + "node": ">=10.0.0" } }, - "node_modules/postcss-overflow-shorthand": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.1.tgz", - "integrity": "sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=10" } }, - "node_modules/postcss-page-break": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", - "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", - "peerDependencies": { - "postcss": "^8" + "node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, + "engines": { + "node": ">=16 || 14 >=14.17" } }, - "node_modules/postcss-place": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-9.0.1.tgz", - "integrity": "sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/minipass-collect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-2.0.1.tgz", + "integrity": "sha512-D7V8PO9oaz7PWGLbCACuI1qEOsq7UKfLotx/C0Aet43fCUB/wfQ7DYeq2oR/svFJGYDHPr38SHATeaj/ZoKHKw==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "minipass": "^7.0.3" }, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/postcss-preset-env": { - "version": "9.3.0", - "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-9.3.0.tgz", - "integrity": "sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/minipass-fetch": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-3.0.4.tgz", + "integrity": "sha512-jHAqnA728uUpIaFm7NWsCnqKT6UqZz7GcI/bDpPATuwYyKwJwW0remxSCxUlKiEty+eopHGa3oc8WxgQ1FFJqg==", + "dev": true, "dependencies": { - "@csstools/postcss-cascade-layers": "^4.0.1", - "@csstools/postcss-color-function": "^3.0.7", - "@csstools/postcss-color-mix-function": "^2.0.7", - "@csstools/postcss-exponential-functions": "^1.0.1", - "@csstools/postcss-font-format-keywords": "^3.0.0", - "@csstools/postcss-gamut-mapping": "^1.0.0", - "@csstools/postcss-gradients-interpolation-method": "^4.0.7", - "@csstools/postcss-hwb-function": "^3.0.6", - "@csstools/postcss-ic-unit": "^3.0.2", - "@csstools/postcss-initial": "^1.0.0", - "@csstools/postcss-is-pseudo-class": "^4.0.3", - "@csstools/postcss-logical-float-and-clear": "^2.0.0", - "@csstools/postcss-logical-overflow": "^1.0.0", - "@csstools/postcss-logical-overscroll-behavior": "^1.0.0", - "@csstools/postcss-logical-resize": "^2.0.0", - "@csstools/postcss-logical-viewport-units": "^2.0.3", - "@csstools/postcss-media-minmax": "^1.1.0", - "@csstools/postcss-media-queries-aspect-ratio-number-values": "^2.0.3", - "@csstools/postcss-nested-calc": "^3.0.0", - "@csstools/postcss-normalize-display-values": "^3.0.1", - "@csstools/postcss-oklab-function": "^3.0.7", - "@csstools/postcss-progressive-custom-properties": "^3.0.2", - "@csstools/postcss-relative-color-syntax": "^2.0.7", - "@csstools/postcss-scope-pseudo-class": "^3.0.0", - "@csstools/postcss-stepped-value-functions": "^3.0.2", - "@csstools/postcss-text-decoration-shorthand": "^3.0.3", - "@csstools/postcss-trigonometric-functions": "^3.0.2", - "@csstools/postcss-unset-value": "^3.0.0", - "autoprefixer": "^10.4.16", - "browserslist": "^4.22.1", - "css-blank-pseudo": "^6.0.0", - "css-has-pseudo": "^6.0.0", - "css-prefers-color-scheme": "^9.0.0", - "cssdb": "^7.9.0", - "postcss-attribute-case-insensitive": "^6.0.2", - "postcss-clamp": "^4.1.0", - "postcss-color-functional-notation": "^6.0.2", - "postcss-color-hex-alpha": "^9.0.2", - "postcss-color-rebeccapurple": "^9.0.1", - "postcss-custom-media": "^10.0.2", - "postcss-custom-properties": "^13.3.2", - "postcss-custom-selectors": "^7.1.6", - "postcss-dir-pseudo-class": "^8.0.0", - "postcss-double-position-gradients": "^5.0.2", - "postcss-focus-visible": "^9.0.0", - "postcss-focus-within": "^8.0.0", - "postcss-font-variant": "^5.0.0", - "postcss-gap-properties": "^5.0.0", - "postcss-image-set-function": "^6.0.1", - "postcss-lab-function": "^6.0.7", - "postcss-logical": "^7.0.0", - "postcss-nesting": "^12.0.1", - "postcss-opacity-percentage": "^2.0.0", - "postcss-overflow-shorthand": "^5.0.0", - "postcss-page-break": "^3.0.4", - "postcss-place": "^9.0.0", - "postcss-pseudo-class-any-link": "^9.0.0", - "postcss-replace-overflow-wrap": "^4.0.0", - "postcss-selector-not": "^7.0.1", - "postcss-value-parser": "^4.2.0" + "minipass": "^7.0.3", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": "^14 || ^16 || >=18" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" }, - "peerDependencies": { - "postcss": "^8.4" + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/postcss-pseudo-class-any-link": { - "version": "9.0.1", - "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz", - "integrity": "sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/csstools" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - } - ], + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.13" + "minipass": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">= 8" } }, - "node_modules/postcss-reduce-initial": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.1.tgz", - "integrity": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==", + "node_modules/minipass-flush/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "caniuse-api": "^3.0.0" + "yallist": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-reduce-transforms": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", - "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", + "node_modules/minipass-flush/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minipass-json-stream": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minipass-json-stream/-/minipass-json-stream-1.0.1.tgz", + "integrity": "sha512-ODqY18UZt/I8k+b7rl2AENgbWE8IDYam+undIJONvigAz8KR5GWblsFTEfQs0WODsjbSXWlm+JHEv8Gr6Tfdbg==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/minipass-json-stream/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-replace-overflow-wrap": { + "node_modules/minipass-json-stream/node_modules/yallist": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", - "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", - "peerDependencies": { - "postcss": "^8.0.3" - } + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/postcss-selector-not": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-7.0.1.tgz", - "integrity": "sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==", + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.10" + "minipass": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >=18" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/csstools" - }, - "peerDependencies": { - "postcss": "^8.4" + "node": ">=8" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.13", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", - "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "node_modules/minipass-pipeline/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/postcss-svgo": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.1.tgz", - "integrity": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==", + "node_modules/minipass-pipeline/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, "dependencies": { - "postcss-value-parser": "^4.2.0", - "svgo": "^3.0.5" + "minipass": "^3.0.0" }, "engines": { - "node": "^14 || ^16 || >= 18" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-unique-selectors": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.1.tgz", - "integrity": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==", + "node_modules/minipass-sized/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.5" + "yallist": "^4.0.0" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">=8" } }, - "node_modules/postcss-url": { - "version": "10.1.3", - "resolved": "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz", - "integrity": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==", + "node_modules/minipass-sized/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, "dependencies": { - "make-dir": "~3.1.0", - "mime": "~2.5.2", - "minimatch": "~3.0.4", - "xxhashjs": "~0.2.2" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "postcss": "^8.0.0" + "node": ">= 8" } }, - "node_modules/postcss-url/node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/minizlib/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, "dependencies": { - "semver": "^6.0.0" + "yallist": "^4.0.0" }, "engines": { "node": ">=8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": ">=10" } }, - "node_modules/postcss-url/node_modules/minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "node_modules/mlly": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/mlly/-/mlly-1.4.2.tgz", + "integrity": "sha512-i/Ykufi2t1EZ6NaPLdfnZk2AX8cs0d+mTzVKuPfqPKPatxLApaBoxJQ9x1/uckXtrS/U5oisPMDkNs0yQTaBRg==", + "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" + "acorn": "^8.10.0", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "ufo": "^1.3.0" + } + }, + "node_modules/mri": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", + "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-4.0.2.tgz", + "integrity": "sha512-7ZtY5KTCNheRGfEFxnedV5zFiORN1+Y1N6zvPTnHQd8ENUvfaDBeuJDZb2bN/oXwXxu3qkTXDzy57W5vAmDTBw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.js" }, "engines": { - "node": "*" + "node": "^14 || ^16 || >=18" } }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" - }, - "node_modules/prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 0.6" } }, - "node_modules/prettier": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", - "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "node_modules/nitropack": { + "version": "2.8.1", + "resolved": "https://registry.npmjs.org/nitropack/-/nitropack-2.8.1.tgz", + "integrity": "sha512-pODv2kEEzZSDQR+1UMXbGyNgMedUDq/qUomtiAnQKQvLy52VGlecXO1xDfH3i0kP1yKEcKTnWsx1TAF5gHM7xQ==", "dev": true, + "dependencies": { + "@cloudflare/kv-asset-handler": "^0.3.0", + "@netlify/functions": "^2.4.0", + "@rollup/plugin-alias": "^5.1.0", + "@rollup/plugin-commonjs": "^25.0.7", + "@rollup/plugin-inject": "^5.0.5", + "@rollup/plugin-json": "^6.0.1", + "@rollup/plugin-node-resolve": "^15.2.3", + "@rollup/plugin-replace": "^5.0.5", + "@rollup/plugin-terser": "^0.4.4", + "@rollup/plugin-wasm": "^6.2.2", + "@rollup/pluginutils": "^5.0.5", + "@types/http-proxy": "^1.17.14", + "@vercel/nft": "^0.24.3", + "archiver": "^6.0.1", + "c12": "^1.5.1", + "chalk": "^5.3.0", + "chokidar": "^3.5.3", + "citty": "^0.1.5", + "consola": "^3.2.3", + "cookie-es": "^1.0.0", + "defu": "^6.1.3", + "destr": "^2.0.2", + "dot-prop": "^8.0.2", + "esbuild": "^0.19.8", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "etag": "^1.8.1", + "fs-extra": "^11.2.0", + "globby": "^14.0.0", + "gzip-size": "^7.0.0", + "h3": "^1.9.0", + "hookable": "^5.5.3", + "httpxy": "^0.1.5", + "is-primitive": "^3.0.1", + "jiti": "^1.21.0", + "klona": "^2.0.6", + "knitwork": "^1.0.0", + "listhen": "^1.5.5", + "magic-string": "^0.30.5", + "mime": "^3.0.0", + "mlly": "^1.4.2", + "mri": "^1.2.0", + "node-fetch-native": "^1.4.1", + "ofetch": "^1.3.3", + "ohash": "^1.1.3", + "openapi-typescript": "^6.7.1", + "pathe": "^1.1.1", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "pretty-bytes": "^6.1.1", + "radix3": "^1.1.0", + "rollup": "^4.6.0", + "rollup-plugin-visualizer": "^5.9.3", + "scule": "^1.1.0", + "semver": "^7.5.4", + "serve-placeholder": "^2.0.1", + "serve-static": "^1.15.0", + "std-env": "^3.5.0", + "ufo": "^1.3.2", + "uncrypto": "^0.1.3", + "unctx": "^2.3.1", + "unenv": "^1.8.0", + "unimport": "^3.6.0", + "unstorage": "^1.10.1" + }, "bin": { - "prettier": "bin/prettier.cjs" + "nitro": "dist/cli/index.mjs", + "nitropack": "dist/cli/index.mjs" }, "engines": { - "node": ">=14" + "node": "^16.11.0 || >=17.0.0" }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" - } - }, - "node_modules/pretty-bytes": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", - "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", - "engines": { - "node": ">=6" + "peerDependencies": { + "xml2js": "^0.6.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "xml2js": { + "optional": true + } } }, - "node_modules/pretty-error": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", - "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", - "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^2.0.4" - } + "node_modules/node-addon-api": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-7.0.0.tgz", + "integrity": "sha512-vgbBJTS4m5/KkE16t5Ly0WW9hz46swAstv0hYYwMtbG7AznRhNyfLRe8HZAiWIpcHzoO7HxhLuBQj9rJ/Ho0ZA==", + "dev": true }, - "node_modules/pretty-format": { - "version": "28.1.3", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", - "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", "dev": true, "dependencies": { - "@jest/schemas": "^28.1.3", - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^18.0.0" + "whatwg-url": "^5.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" - } - }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", - "dev": true, - "engines": { - "node": ">=10" + "node": "4.x || >=6.0.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/pretty-time": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", - "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", - "engines": { - "node": ">=4" - } + "node_modules/node-fetch-native": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.4.1.tgz", + "integrity": "sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==", + "dev": true }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", + "dev": true, "engines": { - "node": ">= 0.6.0" + "node": ">= 6.13.0" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" - }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/node-gyp": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-10.0.1.tgz", + "integrity": "sha512-gg3/bHehQfZivQVfqIyy8wTdSymF9yTyP4CJifK73imyNMU8AIGQE2pUa7dNWfmMeG9cDVF2eehiRMv0LC1iAg==", "dev": true, "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" + "env-paths": "^2.2.0", + "exponential-backoff": "^3.1.1", + "glob": "^10.3.10", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^13.0.0", + "nopt": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^4.0.0" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/proper-lockfile": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", - "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", - "dependencies": { - "graceful-fs": "^4.2.4", - "retry": "^0.12.0", - "signal-exit": "^3.0.2" - } - }, - "node_modules/protocols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", - "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" - }, - "node_modules/prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" - }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" - }, - "node_modules/public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dependencies": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/public-encrypt/node_modules/bn.js": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", - "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", - "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "node_modules/node-gyp-build": { + "version": "4.7.1", + "resolved": "https://registry.npmjs.org/node-gyp-build/-/node-gyp-build-4.7.1.tgz", + "integrity": "sha512-wTSrZ+8lsRRa3I3H8Xr65dLWSgCvY2l4AOnaeKdPA9TB/WYMPaTcrzf3rXvFoVvjKNVnu0CcWSx54qq9GKRUYg==", + "dev": true, + "bin": { + "node-gyp-build": "bin.js", + "node-gyp-build-optional": "optional.js", + "node-gyp-build-test": "build-test.js" } }, - "node_modules/pumpify": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", - "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", - "dependencies": { - "duplexify": "^3.6.0", - "inherits": "^2.0.3", - "pump": "^2.0.0" + "node_modules/node-gyp/node_modules/abbrev": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-2.0.0.tgz", + "integrity": "sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/pumpify/node_modules/pump": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", - "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "node_modules/node-gyp/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", + "dev": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, + "engines": { + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/punycode": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", - "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "node_modules/node-gyp/node_modules/isexe": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-3.1.1.tgz", + "integrity": "sha512-LpB/54B+/2J5hqQ7imZHfdU31OlgQqx7ZicVlkm9kzg9/w8GKLEcFfJl/t7DCEDueOyBAD6zCCwTO6Fzs0NoEQ==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=16" } }, - "node_modules/qs": { - "version": "6.11.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", - "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "node_modules/node-gyp/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, "dependencies": { - "side-channel": "^1.0.4" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=0.6" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", + "node_modules/node-gyp/node_modules/nopt": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-7.2.0.tgz", + "integrity": "sha512-CVDtwCdhYIvnAzFoJ6NJ6dX3oga9/HyciQDnG1vQDjSLMeKLJ4A93ZqYKDrgYSr1FBY5/hMYC+2VCi24pgpkGA==", + "dev": true, "dependencies": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" + "abbrev": "^2.0.0" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "node_modules/node-gyp/node_modules/which": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/which/-/which-4.0.0.tgz", + "integrity": "sha512-GlaYyEb07DPxYCKhKzplCWBJtvxZcZMrL+4UkrTSJHHPyZU4mYYTv3qaOe77H7EODLSSopAUFAc6W8U4yqvscg==", + "dev": true, + "dependencies": { + "isexe": "^3.1.1" + }, + "bin": { + "node-which": "bin/which.js" + }, "engines": { - "node": ">=0.4.x" + "node": "^16.13.0 || >=18.0.0" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dependencies": { - "safe-buffer": "^5.1.0" - } + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true }, - "node_modules/randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, "dependencies": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, "engines": { - "node": ">= 0.6" - } - }, - "node_modules/rc9": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.1.tgz", - "integrity": "sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==", - "dependencies": { - "defu": "^6.1.2", - "destr": "^2.0.0", - "flat": "^5.0.2" + "node": ">=6" } }, - "node_modules/rc9/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/react-is": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", - "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", - "dev": true - }, - "node_modules/read-cache": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", - "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "node_modules/normalize-package-data": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-6.0.0.tgz", + "integrity": "sha512-UL7ELRVxYBHBgYEtZCXjxuD5vPxnmvMGq0jp/dGPKKrN7tfsBh2IY7TlJ15WWwdjRWD3RJbnsygUurTK3xkPkg==", + "dev": true, "dependencies": { - "pify": "^2.3.0" + "hosted-git-info": "^7.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/read-cache/node_modules/pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/readable-stream": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", - "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/npm-bundled": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/npm-bundled/-/npm-bundled-3.0.0.tgz", + "integrity": "sha512-Vq0eyEQy+elFpzsKjMss9kxqb9tG3YHg4dsyWuUENuzvSUWe1TCnW/vV9FkhvBk/brEDoDiVd+M1Btosa6ImdQ==", + "dev": true, "dependencies": { - "picomatch": "^2.2.1" + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.1", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", - "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "node_modules/npm-install-checks": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/npm-install-checks/-/npm-install-checks-6.3.0.tgz", + "integrity": "sha512-W29RiK/xtpCGqn6f3ixfRYGk+zRyr+Ew9F2E20BfXxT5/euLdA/Nm7fO7OeTGuAmTs30cpgInyJ0cYe708YTZw==", + "dev": true, "dependencies": { - "regenerate": "^1.4.2" + "semver": "^7.1.1" }, "engines": { - "node": ">=4" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/regenerator-runtime": { - "version": "0.14.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", - "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", - "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", - "dependencies": { - "@babel/runtime": "^7.8.4" + "node_modules/npm-normalize-package-bin": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/npm-normalize-package-bin/-/npm-normalize-package-bin-3.0.1.tgz", + "integrity": "sha512-dMxCf+zZ+3zeQZXKxmyuCKlIDPGuv8EF940xbkC4kQVDTtqoh6rJFO+JTKSA6/Rwi0getWmtuy4Itup0AMcaDQ==", + "dev": true, + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "node_modules/npm-package-arg": { + "version": "11.0.1", + "resolved": "https://registry.npmjs.org/npm-package-arg/-/npm-package-arg-11.0.1.tgz", + "integrity": "sha512-M7s1BD4NxdAvBKUPqqRW957Xwcl/4Zvo8Aj+ANrzvIPzGJZElrH7Z//rSaec2ORcND6FHHLnZeY8qgTpXDMFQQ==", + "dev": true, "dependencies": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" + "hosted-git-info": "^7.0.0", + "proc-log": "^3.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", - "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "node_modules/npm-packlist": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/npm-packlist/-/npm-packlist-8.0.1.tgz", + "integrity": "sha512-MQpL27ZrsJQ2kiAuQPpZb5LtJwydNRnI15QWXsf3WHERu4rzjRj6Zju/My2fov7tLuu3Gle/uoIX/DDZ3u4O4Q==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "set-function-name": "^2.0.0" + "ignore-walk": "^6.0.4" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/regexpu-core": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", - "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "node_modules/npm-pick-manifest": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/npm-pick-manifest/-/npm-pick-manifest-9.0.0.tgz", + "integrity": "sha512-VfvRSs/b6n9ol4Qb+bDwNGUXutpy76x6MARw/XssevE0TnctIKcmklJZM5Z7nqs5z5aW+0S63pgCNbpkUNNXBg==", + "dev": true, "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" + "npm-install-checks": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0", + "npm-package-arg": "^11.0.0", + "semver": "^7.3.5" }, "engines": { - "node": ">=4" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/npm-registry-fetch": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/npm-registry-fetch/-/npm-registry-fetch-16.1.0.tgz", + "integrity": "sha512-PQCELXKt8Azvxnt5Y85GseQDJJlglTFM9L9U9gkv2y4e9s0k3GVDdOx3YoB6gm2Do0hlkzC39iCGXby+Wve1Bw==", + "dev": true, "dependencies": { - "jsesc": "~0.5.0" + "make-fetch-happen": "^13.0.0", + "minipass": "^7.0.2", + "minipass-fetch": "^3.0.0", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^11.0.0", + "proc-log": "^3.0.0" }, - "bin": { - "regjsparser": "bin/parser" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "bin": { - "jsesc": "bin/jsesc" + "node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "dev": true, + "dependencies": { + "path-key": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "node_modules/npm-run-path/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", - "optional": true - }, - "node_modules/renderkid": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", - "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dev": true, "dependencies": { - "css-select": "^4.1.3", - "dom-converter": "^0.2.0", - "htmlparser2": "^6.1.0", - "lodash": "^4.17.21", - "strip-ansi": "^3.0.1" + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" } }, - "node_modules/renderkid/node_modules/ansi-regex": { + "node_modules/nth-check": { "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/renderkid/node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" + "boolbase": "^1.0.0" }, "funding": { - "url": "https://github.com/sponsors/fb55" + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/renderkid/node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "node_modules/nuxi": { + "version": "3.10.0", + "resolved": "https://registry.npmjs.org/nuxi/-/nuxi-3.10.0.tgz", + "integrity": "sha512-veZXw2NuaQ1PrpvHrnQ1dPgkAjv0WqPlvFReg5Iubum0QVGWdJJvGuNsltDQyPcZ7X7mhMXq9SLIpokK4kpvKA==", + "dev": true, + "bin": { + "nuxi": "bin/nuxi.mjs", + "nuxi-ng": "bin/nuxi.mjs", + "nuxt": "bin/nuxi.mjs", + "nuxt-cli": "bin/nuxi.mjs" }, - "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "engines": { + "node": "^14.18.0 || >=16.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" } }, - "node_modules/renderkid/node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/nuxt": { + "version": "3.8.2", + "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-3.8.2.tgz", + "integrity": "sha512-HUAyifmqTs2zcQBGvcby3KNs2pBAk+l7ZbLjD1oCNqQQ+wBuZ1qgLC4Ebu++y4g3o3Y8WAWSvpafbKRLQZziPw==", + "dev": true, "dependencies": { - "domelementtype": "^2.2.0" + "@nuxt/devalue": "^2.0.2", + "@nuxt/devtools": "^1.0.3", + "@nuxt/kit": "3.8.2", + "@nuxt/schema": "3.8.2", + "@nuxt/telemetry": "^2.5.2", + "@nuxt/ui-templates": "^1.3.1", + "@nuxt/vite-builder": "3.8.2", + "@unhead/dom": "^1.8.4", + "@unhead/ssr": "^1.8.4", + "@unhead/vue": "^1.8.4", + "@vue/shared": "^3.3.8", + "acorn": "8.11.2", + "c12": "^1.5.1", + "chokidar": "^3.5.3", + "cookie-es": "^1.0.0", + "defu": "^6.1.3", + "destr": "^2.0.2", + "devalue": "^4.3.2", + "esbuild": "^0.19.6", + "escape-string-regexp": "^5.0.0", + "estree-walker": "^3.0.3", + "fs-extra": "^11.1.1", + "globby": "^14.0.0", + "h3": "^1.9.0", + "hookable": "^5.5.3", + "jiti": "^1.21.0", + "klona": "^2.0.6", + "knitwork": "^1.0.0", + "magic-string": "^0.30.5", + "mlly": "^1.4.2", + "nitropack": "^2.8.0", + "nuxi": "^3.10.0", + "nypm": "^0.3.3", + "ofetch": "^1.3.3", + "ohash": "^1.1.3", + "pathe": "^1.1.1", + "perfect-debounce": "^1.0.0", + "pkg-types": "^1.0.3", + "radix3": "^1.1.0", + "scule": "^1.1.0", + "std-env": "^3.5.0", + "strip-literal": "^1.3.0", + "ufo": "^1.3.2", + "ultrahtml": "^1.5.2", + "uncrypto": "^0.1.3", + "unctx": "^2.3.1", + "unenv": "^1.7.4", + "unimport": "^3.5.0", + "unplugin": "^1.5.1", + "unplugin-vue-router": "^0.7.0", + "untyped": "^1.4.0", + "vue": "^3.3.8", + "vue-bundle-renderer": "^2.0.0", + "vue-devtools-stub": "^0.1.0", + "vue-router": "^4.2.5" + }, + "bin": { + "nuxi": "bin/nuxt.mjs", + "nuxt": "bin/nuxt.mjs" }, "engines": { - "node": ">= 4" + "node": "^14.18.0 || >=16.10.0" }, - "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "peerDependencies": { + "@parcel/watcher": "^2.1.0", + "@types/node": "^14.18.0 || >=16.10.0" + }, + "peerDependenciesMeta": { + "@parcel/watcher": { + "optional": true + }, + "@types/node": { + "optional": true + } } }, - "node_modules/renderkid/node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/nypm": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.3.tgz", + "integrity": "sha512-FHoxtTscAE723e80d2M9cJRb4YVjL82Ra+ZV+YqC6rfNZUWahi+ZhPF+krnR+bdMvibsfHCtgKXnZf5R6kmEPA==", + "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "citty": "^0.1.4", + "execa": "^8.0.1", + "pathe": "^1.1.1", + "ufo": "^1.3.0" }, - "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "bin": { + "nypm": "dist/cli.mjs" + }, + "engines": { + "node": "^14.16.0 || >=16.10.0" } }, - "node_modules/renderkid/node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/nypm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + }, + "engines": { + "node": ">=16.17" + }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/renderkid/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", - "dependencies": { - "ansi-regex": "^2.0.0" - }, + "node_modules/nypm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/repeat-element": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", - "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "node_modules/nypm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=16.17.0" } }, - "node_modules/repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "node_modules/nypm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, "engines": { - "node": ">=0.10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/require-from-string": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", - "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "node_modules/ofetch": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/ofetch/-/ofetch-1.3.3.tgz", + "integrity": "sha512-s1ZCMmQWXy4b5K/TW9i/DtiN8Ku+xCiHcjQ6/J/nDdssirrQNOoB165Zu8EqLMA2lln1JUth9a0aW9Ap2ctrUg==", + "dev": true, + "dependencies": { + "destr": "^2.0.1", + "node-fetch-native": "^1.4.0", + "ufo": "^1.3.0" + } + }, + "node_modules/ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", + "dev": true + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, + "dependencies": { + "ee-first": "1.1.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } }, - "node_modules/resolve": { - "version": "1.22.8", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", - "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, "dependencies": { - "is-core-module": "^2.13.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" + "mimic-fn": "^4.0.0" }, - "bin": { - "resolve": "bin/resolve" + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/resolve-cwd": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", - "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "node_modules/open": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.2.tgz", + "integrity": "sha512-7x81NCL719oNbsq/3mh+hVrAWmFuEYUqrq/Iw3kUzH8ReypT9QQ0BLoJS7/G9k6N81XjW4qHWtjWwe/9eLy1EQ==", "dev": true, "dependencies": { - "resolve-from": "^5.0.0" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/resolve-from": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", - "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "node_modules/openapi-typescript": { + "version": "6.7.3", + "resolved": "https://registry.npmjs.org/openapi-typescript/-/openapi-typescript-6.7.3.tgz", + "integrity": "sha512-es3mGcDXV6TKPo6n3aohzHm0qxhLyR39MhF6mkD1FwFGjhxnqMqfSIgM0eCpInZvqatve4CxmXcMZw3jnnsaXw==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "ansi-colors": "^4.1.3", + "fast-glob": "^3.3.2", + "js-yaml": "^4.1.0", + "supports-color": "^9.4.0", + "undici": "^5.28.2", + "yargs-parser": "^21.1.1" + }, + "bin": { + "openapi-typescript": "bin/cli.js" } }, - "node_modules/resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", - "deprecated": "https://github.com/lydell/resolve-url#deprecated" - }, - "node_modules/resolve.exports": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", - "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, "engines": { - "node": ">=10" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/restore-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", - "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" + "p-limit": "^2.2.0" }, "engines": { "node": ">=8" } }, - "node_modules/ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "engines": { - "node": ">=0.12" - } - }, - "node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, "engines": { - "node": ">= 4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/reusify": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", - "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, "engines": { - "iojs": ">=1.0.0", - "node": ">=0.10.0" + "node": ">=6" } }, - "node_modules/rimraf": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", - "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "node_modules/pacote": { + "version": "17.0.5", + "resolved": "https://registry.npmjs.org/pacote/-/pacote-17.0.5.tgz", + "integrity": "sha512-TAE0m20zSDMnchPja9vtQjri19X3pZIyRpm2TJVeI+yU42leJBBDTRYhOcWFsPhaMxf+3iwQkFiKz16G9AEeeA==", + "dev": true, "dependencies": { - "glob": "^7.1.3" + "@npmcli/git": "^5.0.0", + "@npmcli/installed-package-contents": "^2.0.1", + "@npmcli/promise-spawn": "^7.0.0", + "@npmcli/run-script": "^7.0.0", + "cacache": "^18.0.0", + "fs-minipass": "^3.0.0", + "minipass": "^7.0.2", + "npm-package-arg": "^11.0.0", + "npm-packlist": "^8.0.0", + "npm-pick-manifest": "^9.0.0", + "npm-registry-fetch": "^16.0.0", + "proc-log": "^3.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^7.0.0", + "read-package-json-fast": "^3.0.0", + "sigstore": "^2.0.0", + "ssri": "^10.0.0", + "tar": "^6.1.11" }, "bin": { - "rimraf": "bin.js" + "pacote": "lib/bin.js" }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dependencies": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } + "node_modules/papaparse": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", + "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" }, - "node_modules/run-async": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", - "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "node_modules/parse-git-config": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", + "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", + "dev": true, + "dependencies": { + "git-config-path": "^2.0.0", + "ini": "^1.3.5" + }, "engines": { - "node": ">=0.12.0" + "node": ">=8" } }, - "node_modules/run-parallel": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", - "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/parse-git-config/node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==", + "dev": true + }, + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "dev": true, "dependencies": { - "queue-microtask": "^1.2.2" + "protocols": "^2.0.0" } }, - "node_modules/run-queue": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", - "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dev": true, "dependencies": { - "aproba": "^1.1.1" + "parse-path": "^7.0.0" } }, - "node_modules/rxjs": { - "version": "6.6.7", - "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", - "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", - "dependencies": { - "tslib": "^1.9.0" - }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, "engines": { - "npm": ">=2.0.0" + "node": ">= 0.8" } }, - "node_modules/safe-array-concat": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", - "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "has-symbols": "^1.0.3", - "isarray": "^2.0.5" - }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, "engines": { - "node": ">=0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/safe-array-concat/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" - }, - "node_modules/safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" - }, - "node_modules/safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", - "dependencies": { - "ret": "~0.1.10" + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/safe-regex-test": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", - "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "is-regex": "^1.1.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, - "node_modules/schema-utils": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", - "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "node_modules/path-scurry": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.1.tgz", + "integrity": "sha512-MkhCqzzBEpPvxxQ71Md0b1Kk51W01lrYvlMzSUaIzNsODdd7mqhiimSZlr+VegAz5Z6Vzt9Xg2ttE//XBhH3EQ==", + "dev": true, "dependencies": { - "@types/json-schema": "^7.0.5", - "ajv": "^6.12.4", - "ajv-keywords": "^3.5.2" + "lru-cache": "^9.1.1 || ^10.0.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" }, "engines": { - "node": ">= 8.9.0" + "node": ">=16 || 14 >=14.17" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/scule": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/scule/-/scule-0.2.1.tgz", - "integrity": "sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==" - }, - "node_modules/semver": { - "version": "6.3.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", - "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", - "bin": { - "semver": "bin/semver.js" + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, + "engines": { + "node": "14 || >=16.14" } }, - "node_modules/send": { - "version": "0.18.0", - "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", - "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", - "dependencies": { - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "mime": "1.6.0", - "ms": "2.1.3", - "on-finished": "2.4.1", - "range-parser": "~1.2.1", - "statuses": "2.0.1" - }, + "node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", + "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/send/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" - } + "node_modules/pathe": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.1.tgz", + "integrity": "sha512-d+RQGp0MAYTIaDBIMmOfMwz3E+LOZnxx1HZd5R18mmCZY0QBlK0LDZfPc8FW8Ed2DlvsuE6PRjroDY+wg4+j/Q==", + "dev": true }, - "node_modules/send/node_modules/debug/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + "node_modules/perfect-debounce": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/perfect-debounce/-/perfect-debounce-1.0.0.tgz", + "integrity": "sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==", + "dev": true }, - "node_modules/send/node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "bin": { - "mime": "cli.js" - }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/send/node_modules/ms": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", - "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" - }, - "node_modules/send/node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, "dependencies": { - "ee-first": "1.1.1" + "find-up": "^4.0.0" }, "engines": { - "node": ">= 0.8" - } - }, - "node_modules/send/node_modules/statuses": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", - "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", - "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/serialize-javascript": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", - "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "node_modules/pkg-types": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pkg-types/-/pkg-types-1.0.3.tgz", + "integrity": "sha512-nN7pYi0AQqJnoLPC9eHFQ8AcyaixBUOwvqc5TDnIKCMEE6I0y8P7OKA7fPexsXGCGxQDl/cmrLAp26LhcwxZ4A==", + "dev": true, "dependencies": { - "randombytes": "^2.1.0" + "jsonc-parser": "^3.2.0", + "mlly": "^1.2.0", + "pathe": "^1.1.0" } }, - "node_modules/serve-placeholder": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz", - "integrity": "sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==", + "node_modules/postcss": { + "version": "8.4.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], "dependencies": { - "defu": "^6.0.0" + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" } }, - "node_modules/serve-placeholder/node_modules/defu": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", - "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" - }, - "node_modules/serve-static": { - "version": "1.15.0", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", - "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "dev": true, "dependencies": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.18.0" + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.8.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" } }, - "node_modules/server-destroy": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", - "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" - }, - "node_modules/set-function-length": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", - "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "node_modules/postcss-colormin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.1.tgz", + "integrity": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==", + "dev": true, "dependencies": { - "define-data-property": "^1.1.1", - "get-intrinsic": "^1.2.1", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/set-function-name": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", - "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "node_modules/postcss-convert-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.1.tgz", + "integrity": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==", + "dev": true, "dependencies": { - "define-data-property": "^1.0.1", - "functions-have-names": "^1.2.3", - "has-property-descriptors": "^1.0.0" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, + "node_modules/postcss-discard-comments": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/set-value/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" + "node_modules/postcss-discard-duplicates": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "dev": true, + "engines": { + "node": "^14 || ^16 || >=18.0" }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-empty": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/set-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/postcss-discard-overridden": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/set-value/node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/postcss-merge-longhand": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.1.tgz", + "integrity": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==", + "dev": true, "dependencies": { - "isobject": "^3.0.1" + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.1" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" - }, - "node_modules/setprototypeof": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", - "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" - }, - "node_modules/sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "node_modules/postcss-merge-rules": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.2.tgz", + "integrity": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==", + "dev": true, "dependencies": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.1", + "postcss-selector-parser": "^6.0.5" }, - "bin": { - "sha.js": "bin.js" + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/shebang-command": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", - "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "node_modules/postcss-minify-font-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", + "dev": true, "dependencies": { - "shebang-regex": "^3.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/shebang-regex": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", - "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "node_modules/postcss-minify-gradients": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "dev": true, + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, "engines": { - "node": ">=8" - } - }, - "node_modules/shell-quote": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", - "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/side-channel": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", - "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "node_modules/postcss-minify-params": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.1.tgz", + "integrity": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==", + "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "get-intrinsic": "^1.0.2", - "object-inspect": "^1.9.0" + "browserslist": "^4.21.4", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" - }, - "node_modules/sirv": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", - "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "node_modules/postcss-minify-selectors": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.1.tgz", + "integrity": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==", + "dev": true, "dependencies": { - "@polka/url": "^1.0.0-next.20", - "mrmime": "^1.0.0", - "totalist": "^3.0.0" + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">= 10" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/sisteransi": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", - "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", - "dev": true - }, - "node_modules/slash": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", - "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "node_modules/postcss-normalize-charset": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "dev": true, "engines": { - "node": ">=8" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "node_modules/postcss-normalize-display-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", + "dev": true, "dependencies": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "node_modules/postcss-normalize-positions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", + "dev": true, "dependencies": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon-node/node_modules/define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", + "dev": true, "dependencies": { - "is-descriptor": "^1.0.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "node_modules/postcss-normalize-string": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", + "dev": true, "dependencies": { - "kind-of": "^3.2.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon-util/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", + "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dependencies": { - "ms": "2.0.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "node_modules/postcss-normalize-unicode": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.1.tgz", + "integrity": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==", + "dev": true, "dependencies": { - "is-descriptor": "^0.1.0" + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "node_modules/postcss-normalize-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", + "dev": true, "dependencies": { - "is-extendable": "^0.1.0" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/snapdragon/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", + "dev": true, "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 0.4" - } - }, - "node_modules/snapdragon/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/snapdragon/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" - }, - "node_modules/snapdragon/node_modules/source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", - "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "node_modules/postcss-ordered-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", + "dev": true, "dependencies": { - "is-plain-obj": "^1.0.0" + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/sort-keys/node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-list-map": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", - "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" - }, - "node_modules/source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-js": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", - "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/source-map-resolve": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", - "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", - "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", - "dependencies": { - "atob": "^2.1.2", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "node_modules/source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/source-map-url": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", - "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", - "deprecated": "See https://github.com/lydell/source-map-url#deprecated" - }, - "node_modules/split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "node_modules/postcss-reduce-initial": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.1.tgz", + "integrity": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==", + "dev": true, "dependencies": { - "extend-shallow": "^3.0.0" + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", - "dev": true - }, - "node_modules/ssri": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", - "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "node_modules/postcss-reduce-transforms": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", + "dev": true, "dependencies": { - "minipass": "^3.1.1" + "postcss-value-parser": "^4.2.0" }, "engines": { - "node": ">= 8" - } - }, - "node_modules/stable": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", - "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", - "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" - }, - "node_modules/stack-trace": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", - "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", - "engines": { - "node": "*" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/stack-utils": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", - "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", "dev": true, "dependencies": { - "escape-string-regexp": "^2.0.0" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=10" + "node": ">=4" } }, - "node_modules/stack-utils/node_modules/escape-string-regexp": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", - "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "node_modules/postcss-svgo": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.1.tgz", + "integrity": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==", "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/stackframe": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", - "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" - }, - "node_modules/static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", "dependencies": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" + "postcss-value-parser": "^4.2.0", + "svgo": "^3.0.5" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/static-extend/node_modules/define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "node_modules/postcss-unique-selectors": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.1.tgz", + "integrity": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==", + "dev": true, "dependencies": { - "is-descriptor": "^0.1.0" + "postcss-selector-parser": "^6.0.5" }, "engines": { - "node": ">=0.10.0" + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/static-extend/node_modules/is-descriptor": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", - "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", - "dependencies": { - "is-accessor-descriptor": "^1.0.1", - "is-data-descriptor": "^1.0.1" + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/postcss/node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" }, "engines": { - "node": ">= 0.4" + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" } }, - "node_modules/statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "node_modules/pretty-bytes": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-6.1.1.tgz", + "integrity": "sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==", + "dev": true, "engines": { - "node": ">= 0.6" - } - }, - "node_modules/std-env": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.6.0.tgz", - "integrity": "sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==" - }, - "node_modules/stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "node_modules/stream-each": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", - "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", - "dependencies": { - "end-of-stream": "^1.1.0", - "stream-shift": "^1.0.0" - } - }, - "node_modules/stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dependencies": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" + "node": "^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/stream-shift": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", - "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" - }, - "node_modules/strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "node_modules/proc-log": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/proc-log/-/proc-log-3.0.0.tgz", + "integrity": "sha512-++Vn7NS4Xf9NacaU9Xq3URUuqZETPsf8L4j5/ckhaRYsfPeRyzGw+iDjFhV/Jr3uNmTvvddEJFWh5R1gRgUH8A==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dependencies": { - "safe-buffer": "~5.1.0" - } + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true }, - "node_modules/string-length": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", - "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, "dependencies": { - "char-regex": "^1.0.2", - "strip-ansi": "^6.0.0" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { "node": ">=10" } }, - "node_modules/string-width": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", - "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/string.prototype.trim": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", - "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", + "dev": true + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/queue-tick": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/queue-tick/-/queue-tick-1.0.1.tgz", + "integrity": "sha512-kJt5qhMxoszgU/62PLP1CJytzd2NKetjSRnyuj31fDd3Rlcz3fzlFdFLD1SItunPwyqEOkca6GbV612BWfaBag==", + "dev": true + }, + "node_modules/radix3": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/radix3/-/radix3-1.1.0.tgz", + "integrity": "sha512-pNsHDxbGORSvuSScqNJ+3Km6QAVqk8CfsCBIEoDgpqLrkD2f3QM4I7d1ozJJ172OmIcoUcerZaNWqtLkRXTV3A==", + "dev": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "safe-buffer": "^5.1.0" } }, - "node_modules/string.prototype.trimend": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", - "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "dev": true, + "engines": { + "node": ">= 0.6" } }, - "node_modules/string.prototype.trimstart": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", - "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "node_modules/rc9": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.1.tgz", + "integrity": "sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "defu": "^6.1.2", + "destr": "^2.0.0", + "flat": "^5.0.2" } }, - "node_modules/strip-ansi": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", - "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "node_modules/read-package-json": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/read-package-json/-/read-package-json-7.0.0.tgz", + "integrity": "sha512-uL4Z10OKV4p6vbdvIXB+OzhInYtIozl/VxUBPgNkBuUi2DeRonnuspmaVAMcrkmfjKGNmRndyQAbE7/AmzGwFg==", + "dev": true, "dependencies": { - "ansi-regex": "^5.0.1" + "glob": "^10.2.2", + "json-parse-even-better-errors": "^3.0.0", + "normalize-package-data": "^6.0.0", + "npm-normalize-package-bin": "^3.0.0" }, "engines": { - "node": ">=8" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/strip-bom": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", - "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "node_modules/read-package-json-fast": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/read-package-json-fast/-/read-package-json-fast-3.0.2.tgz", + "integrity": "sha512-0J+Msgym3vrLOUB3hzQCuZHII0xkNGCtz/HJH9xZshwv9DbDwkw1KaE3gx/e2J5rpEY5rtOy6cyhKOPrkP7FZw==", "dev": true, + "dependencies": { + "json-parse-even-better-errors": "^3.0.0", + "npm-normalize-package-bin": "^3.0.0" + }, "engines": { - "node": ">=8" - } - }, - "node_modules/strip-final-newline": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", - "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", - "engines": { - "node": ">=6" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/strip-json-comments": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", - "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "node_modules/read-package-json/node_modules/glob": { + "version": "10.3.10", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz", + "integrity": "sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==", "dev": true, + "dependencies": { + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.5", + "minimatch": "^9.0.1", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0", + "path-scurry": "^1.10.1" + }, + "bin": { + "glob": "dist/esm/bin.mjs" + }, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/style-resources-loader": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/style-resources-loader/-/style-resources-loader-1.5.0.tgz", - "integrity": "sha512-fIfyvQ+uvXaCBGGAgfh+9v46ARQB1AWdaop2RpQw0PBVuROsTBqGvx8dj0kxwjGOAyq3vepe4AOK3M6+Q/q2jw==", + "node_modules/read-package-json/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "dev": true, "dependencies": { - "glob": "^7.2.0", - "loader-utils": "^2.0.0", - "schema-utils": "^2.7.0", - "tslib": "^2.3.1" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=8.9" + "node": ">=16 || 14 >=14.17" }, - "peerDependencies": { - "webpack": "^3.0.0 || ^4.0.0 || ^5.0.0" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/style-resources-loader/node_modules/tslib": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", - "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" - }, - "node_modules/stylehacks": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.1.tgz", - "integrity": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==", + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, "dependencies": { - "browserslist": "^4.21.4", - "postcss-selector-parser": "^6.0.4" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": "^14 || ^16 || >=18.0" - }, - "peerDependencies": { - "postcss": "^8.4.31" + "node": ">= 6" } }, - "node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/readdir-glob": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/readdir-glob/-/readdir-glob-1.1.3.tgz", + "integrity": "sha512-v05I2k7xN8zXvPD9N+z/uhXPaj0sUFCe2rcWZIpBsqxfP7xXFQ0tipAd/wjj1YxWyWtUS5IDJpOG82JKt2EAVA==", + "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "minimatch": "^5.1.0" } }, - "node_modules/supports-hyperlinks": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", - "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0", - "supports-color": "^7.0.0" + "picomatch": "^2.2.1" }, "engines": { - "node": ">=8" + "node": ">=8.10.0" } }, - "node_modules/supports-preserve-symlinks-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", - "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "node_modules/redis-errors": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/redis-errors/-/redis-errors-1.2.0.tgz", + "integrity": "sha512-1qny3OExCf0UvUV/5wpYKf2YwPcOqXzkwKKSmKHiE6ZMQs5heeE/c8eXK+PNllPvmjgAbfnsbpkGZWy8cBpn9w==", + "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=4" } }, - "node_modules/svg-tags": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", - "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" - }, - "node_modules/svgo": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.1.0.tgz", - "integrity": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==", + "node_modules/redis-parser": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redis-parser/-/redis-parser-3.0.0.tgz", + "integrity": "sha512-DJnGAeenTdpMEH6uAJRK/uiyEIH9WVsUmoLwzudwGJUwZPp80PDBWPHXSAGNPwNvIXAbe7MSUB1zQFugFml66A==", + "dev": true, "dependencies": { - "@trysound/sax": "0.2.0", - "commander": "^7.2.0", - "css-select": "^5.1.0", - "css-tree": "^2.2.1", - "css-what": "^6.1.0", - "csso": "5.0.5", - "picocolors": "^1.0.0" - }, - "bin": { - "svgo": "bin/svgo" - }, - "engines": { - "node": ">=14.0.0" + "redis-errors": "^1.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/svgo" - } - }, - "node_modules/svgo/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", "engines": { - "node": ">= 10" + "node": ">=4" } }, - "node_modules/tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/tar": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", - "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^5.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, - "engines": { - "node": ">=10" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/tar/node_modules/minipass": { + "node_modules/resolve-from": { "version": "5.0.0", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", - "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, "engines": { "node": ">=8" } }, - "node_modules/tar/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", - "bin": { - "mkdirp": "bin/cmd.js" - }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, "engines": { - "node": ">=10" + "node": ">= 4" } }, - "node_modules/tar/node_modules/yallist": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", - "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } }, - "node_modules/terminal-link": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", - "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", "dev": true, "dependencies": { - "ansi-escapes": "^4.2.1", - "supports-hyperlinks": "^2.0.0" + "glob": "^7.1.3" }, - "engines": { - "node": ">=8" + "bin": { + "rimraf": "bin.js" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/terser": { - "version": "4.8.1", - "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", - "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "dependencies": { - "commander": "^2.20.0", - "source-map": "~0.6.1", - "source-map-support": "~0.5.12" - }, - "bin": { - "terser": "bin/terser" - }, - "engines": { - "node": ">=6.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/terser-webpack-plugin": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", - "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, "dependencies": { - "cacache": "^15.0.5", - "find-cache-dir": "^3.3.1", - "jest-worker": "^26.5.0", - "p-limit": "^3.0.2", - "schema-utils": "^3.0.0", - "serialize-javascript": "^5.0.1", - "source-map": "^0.6.1", - "terser": "^5.3.4", - "webpack-sources": "^1.4.3" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": "*" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "engines": { + "node": "*" } }, - "node_modules/terser-webpack-plugin/node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "node_modules/rollup": { + "version": "4.9.1", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.9.1.tgz", + "integrity": "sha512-pgPO9DWzLoW/vIhlSoDByCzcpX92bKEorbgXuZrqxByte3JFk2xSW2JEeAcyLc9Ru9pqcNNW+Ob7ntsk2oT/Xw==", + "dev": true, "bin": { - "acorn": "bin/acorn" + "rollup": "dist/bin/rollup" }, "engines": { - "node": ">=0.4.0" + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.9.1", + "@rollup/rollup-android-arm64": "4.9.1", + "@rollup/rollup-darwin-arm64": "4.9.1", + "@rollup/rollup-darwin-x64": "4.9.1", + "@rollup/rollup-linux-arm-gnueabihf": "4.9.1", + "@rollup/rollup-linux-arm64-gnu": "4.9.1", + "@rollup/rollup-linux-arm64-musl": "4.9.1", + "@rollup/rollup-linux-riscv64-gnu": "4.9.1", + "@rollup/rollup-linux-x64-gnu": "4.9.1", + "@rollup/rollup-linux-x64-musl": "4.9.1", + "@rollup/rollup-win32-arm64-msvc": "4.9.1", + "@rollup/rollup-win32-ia32-msvc": "4.9.1", + "@rollup/rollup-win32-x64-msvc": "4.9.1", + "fsevents": "~2.3.2" } }, - "node_modules/terser-webpack-plugin/node_modules/jest-worker": { - "version": "26.6.2", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", - "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "node_modules/rollup-plugin-visualizer": { + "version": "5.11.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-visualizer/-/rollup-plugin-visualizer-5.11.0.tgz", + "integrity": "sha512-exM0Ms2SN3AgTzMeW7y46neZQcyLY7eKwWAop1ZoRTCZwyrIRdMMJ6JjToAJbML77X/9N8ZEpmXG4Z/Clb9k8g==", + "dev": true, "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^7.0.0" + "open": "^8.4.0", + "picomatch": "^2.3.1", + "source-map": "^0.7.4", + "yargs": "^17.5.1" + }, + "bin": { + "rollup-plugin-visualizer": "dist/bin/cli.js" }, "engines": { - "node": ">= 10.13.0" + "node": ">=14" + }, + "peerDependencies": { + "rollup": "2.x || 3.x || 4.x" + }, + "peerDependenciesMeta": { + "rollup": { + "optional": true + } } }, - "node_modules/terser-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/run-applescript": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/run-applescript/-/run-applescript-5.0.0.tgz", + "integrity": "sha512-XcT5rBksx1QdIhlFOCtgZkB99ZEouFZ1E2Kc2LHqNW13U3/74YGdkQRmThTwxy4QIyookibDKYZOPqX//6BlAg==", + "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "execa": "^5.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=12" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", - "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "node_modules/run-applescript/node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, "dependencies": { - "randombytes": "^2.1.0" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/terser-webpack-plugin/node_modules/source-map-support": { - "version": "0.5.21", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", - "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", - "dependencies": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" + "node_modules/run-applescript/node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" } }, - "node_modules/terser-webpack-plugin/node_modules/terser": { - "version": "5.26.0", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", - "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", - "dependencies": { - "@jridgewell/source-map": "^0.3.3", - "acorn": "^8.8.2", - "commander": "^2.20.0", - "source-map-support": "~0.5.20" - }, - "bin": { - "terser": "bin/terser" + "node_modules/run-applescript/node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/run-applescript/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/test-exclude": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", - "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "node_modules/run-applescript/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "@istanbuljs/schema": "^0.1.2", - "glob": "^7.1.4", - "minimatch": "^3.0.4" + "path-key": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/thread-loader": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz", - "integrity": "sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==", + "node_modules/run-applescript/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, "dependencies": { - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^4.1.0", - "loader-utils": "^2.0.0", - "neo-async": "^2.6.2", - "schema-utils": "^3.0.0" + "mimic-fn": "^2.1.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=6" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.27.0 || ^5.0.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/thread-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", - "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" - }, + "node_modules/run-applescript/node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=6" } }, - "node_modules/through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" - }, - "node_modules/through2": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", - "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "dependencies": { - "readable-stream": "~2.3.6", - "xtend": "~4.0.1" + "queue-microtask": "^1.2.2" } }, - "node_modules/time-fix-plugin": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/time-fix-plugin/-/time-fix-plugin-2.0.7.tgz", - "integrity": "sha512-uVFet1LQToeUX0rTcSiYVYVoGuBpc8gP/2jnlUzuHMHe+gux6XLsNzxLUweabMwiUj5ejhoIMsUI55nVSEa/Vw==", - "peerDependencies": { - "webpack": ">=4.0.0" - } + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true, + "optional": true + }, + "node_modules/scule": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/scule/-/scule-1.1.1.tgz", + "integrity": "sha512-sHtm/SsIK9BUBI3EFT/Gnp9VoKfY6QLvlkvAE6YK7454IF8FSgJEAnJpVdSC7K5/pjI5NfxhzBLW2JAfYA/shQ==", + "dev": true }, - "node_modules/timers-browserify": { - "version": "2.0.12", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", - "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, "dependencies": { - "setimmediate": "^1.0.4" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.6.0" + "node": ">=10" } }, - "node_modules/tmp": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", - "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, "dependencies": { - "os-tmpdir": "~1.0.2" + "yallist": "^4.0.0" }, "engines": { - "node": ">=0.6.0" + "node": ">=10" } }, - "node_modules/tmpl": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", - "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "node_modules/semver/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", "dev": true }, - "node_modules/to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==" - }, - "node_modules/to-fast-properties": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", - "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", - "engines": { - "node": ">=4" - } - }, - "node_modules/to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dev": true, "dependencies": { - "kind-of": "^3.0.2" + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/to-object-path/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dev": true, "dependencies": { - "is-buffer": "^1.1.5" - }, - "engines": { - "node": ">=0.10.0" + "ms": "2.0.0" } }, - "node_modules/to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dependencies": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "bin": { + "mime": "cli.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/to-regex-range": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", - "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==", + "dev": true + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, "dependencies": { - "is-number": "^7.0.0" - }, - "engines": { - "node": ">=8.0" + "randombytes": "^2.1.0" } }, - "node_modules/toidentifier": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", - "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", - "engines": { - "node": ">=0.6" + "node_modules/serve-placeholder": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz", + "integrity": "sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==", + "dev": true, + "dependencies": { + "defu": "^6.0.0" } }, - "node_modules/totalist": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", - "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dev": true, + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, "engines": { - "node": ">=6" + "node": ">= 0.8.0" } }, - "node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true }, - "node_modules/ts-pnp": { + "node_modules/setprototypeof": { "version": "1.2.0", - "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", - "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", - "engines": { - "node": ">=6" + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "engines": { + "node": ">=8" } }, - "node_modules/tslib": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", - "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" - }, - "node_modules/tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==" - }, - "node_modules/type-detect": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", - "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/type-fest": { - "version": "0.21.3", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", - "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", - "engines": { - "node": ">=10" - }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/typed-array-buffer": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", - "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" - } + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true }, - "node_modules/typed-array-byte-length": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", - "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "node_modules/sigstore": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/sigstore/-/sigstore-2.1.0.tgz", + "integrity": "sha512-kPIj+ZLkyI3QaM0qX8V/nSsweYND3W448pwkDgS6CQ74MfhEkIR8ToK5Iyx46KJYRjseVcD3Rp9zAmUAj6ZjPw==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" + "@sigstore/bundle": "^2.1.0", + "@sigstore/protobuf-specs": "^0.2.1", + "@sigstore/sign": "^2.1.0", + "@sigstore/tuf": "^2.1.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/typed-array-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", - "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "node_modules/simple-git": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/simple-git/-/simple-git-3.21.0.tgz", + "integrity": "sha512-oTzw9248AF5bDTMk9MrxsRzEzivMlY+DWH0yWS4VYpMhNLhDWnN06pCtaUyPnqv/FpsdeNmRqmZugMABHRPdDA==", + "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "has-proto": "^1.0.1", - "is-typed-array": "^1.1.10" - }, - "engines": { - "node": ">= 0.4" + "@kwsites/file-exists": "^1.1.1", + "@kwsites/promise-deferred": "^1.1.1", + "debug": "^4.3.4" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "github", + "url": "https://github.com/steveukx/git-js?sponsor=1" } }, - "node_modules/typed-array-length": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", - "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "node_modules/sirv": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", + "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "for-each": "^0.3.3", - "is-typed-array": "^1.1.9" + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^3.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/typedarray": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", - "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" - }, - "node_modules/ua-parser-js": { - "version": "1.0.37", - "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", - "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/ua-parser-js" - }, - { - "type": "paypal", - "url": "https://paypal.me/faisalman" - }, - { - "type": "github", - "url": "https://github.com/sponsors/faisalman" - } - ], "engines": { - "node": "*" + "node": ">= 10" } }, - "node_modules/ufo": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.3.2.tgz", - "integrity": "sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==" + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true }, - "node_modules/uglify-js": { - "version": "3.17.4", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", - "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", - "bin": { - "uglifyjs": "bin/uglifyjs" - }, + "node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, "engines": { - "node": ">=0.8.0" - } - }, - "node_modules/unbox-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", - "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", - "dependencies": { - "call-bind": "^1.0.2", - "has-bigints": "^1.0.2", - "has-symbols": "^1.0.3", - "which-boxed-primitive": "^1.0.2" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/undici-types": { - "version": "5.26.5", - "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", - "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } }, - "node_modules/unfetch": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-5.0.0.tgz", - "integrity": "sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg==" + "node_modules/smob": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/smob/-/smob-1.4.1.tgz", + "integrity": "sha512-9LK+E7Hv5R9u4g4C3p+jjLstaLe11MDsL21UpYaCNmapvMkYhqCV4A/f/3gyH8QjMyh6l68q9xC85vihY9ahMQ==", + "dev": true }, - "node_modules/unicode-canonical-property-names-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", - "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, "engines": { - "node": ">=4" + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "node_modules/unicode-match-property-ecmascript": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", - "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "dev": true, "dependencies": { - "unicode-canonical-property-names-ecmascript": "^2.0.0", - "unicode-property-aliases-ecmascript": "^2.0.0" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" }, "engines": { - "node": ">=4" + "node": ">= 14" } }, - "node_modules/unicode-match-property-value-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", - "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, "engines": { - "node": ">=4" + "node": ">= 8" } }, - "node_modules/unicode-property-aliases-ecmascript": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", - "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", "engines": { - "node": ">=4" + "node": ">=0.10.0" } }, - "node_modules/union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, "dependencies": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - }, - "engines": { - "node": ">=0.10.0" + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" } }, - "node_modules/union-value/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/source-map-support/node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/unique-filename": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", - "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, "dependencies": { - "unique-slug": "^2.0.0" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/unique-slug": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", - "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, "dependencies": { - "imurmurhash": "^0.1.4" + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/universalify": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", - "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "node_modules/spdx-license-ids": { + "version": "3.0.16", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.16.tgz", + "integrity": "sha512-eWN+LnM3GR6gPu35WxNgbGl8rmY1AEmoMDvL/QD6zYmPWgywxWqJWNdLGT+ke8dKNWrcYgYjPpG5gbTfghP8rw==", + "dev": true + }, + "node_modules/ssri": { + "version": "10.0.5", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-10.0.5.tgz", + "integrity": "sha512-bSf16tAFkGeRlUNDjXu8FzaMQt6g2HZJrun7mtMbIPOddxt3GLMSz5VWUWcqTJUPfLEaDIepGxv+bYQW49596A==", + "dev": true, + "dependencies": { + "minipass": "^7.0.3" + }, "engines": { - "node": ">= 10.0.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "node_modules/standard-as-callback": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/standard-as-callback/-/standard-as-callback-2.1.0.tgz", + "integrity": "sha512-qoRRSyROncaz1z0mvYqIE4lCd9p2R90i6GxW3uZv5ucSu8tU7B5HXUP1gG8pVZsYNVaXjk8ClXHPttLyxAL48A==", + "dev": true + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, "engines": { "node": ">= 0.8" } }, - "node_modules/unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "node_modules/std-env": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.6.0.tgz", + "integrity": "sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==", + "dev": true + }, + "node_modules/streamx": { + "version": "2.15.6", + "resolved": "https://registry.npmjs.org/streamx/-/streamx-2.15.6.tgz", + "integrity": "sha512-q+vQL4AAz+FdfT137VF69Cc/APqUbxy+MDOImRrMvchJpigHj9GksgDU2LYbO9rx7RX6osWgxJB2WxhYv4SZAw==", + "dev": true, + "dependencies": { + "fast-fifo": "^1.1.0", + "queue-tick": "^1.0.1" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, "dependencies": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/unset-value/node_modules/has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, "dependencies": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, "dependencies": { - "isarray": "1.0.0" + "ansi-regex": "^5.0.1" }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/unset-value/node_modules/has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/upath": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", - "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, "engines": { - "node": ">=4", - "yarn": "*" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/update-browserslist-db": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", - "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - }, - { - "type": "github", - "url": "https://github.com/sponsors/ai" - } - ], + "node_modules/strip-literal": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/strip-literal/-/strip-literal-1.3.0.tgz", + "integrity": "sha512-PugKzOsyXpArk0yWmUwqOZecSO0GH0bPoctLcqNDH9J04pVW3lflYE0ujElBGTloevcxF5MofAOZ7C5l2b+wLg==", + "dev": true, "dependencies": { - "escalade": "^3.1.1", - "picocolors": "^1.0.0" - }, - "bin": { - "update-browserslist-db": "cli.js" + "acorn": "^8.10.0" }, - "peerDependencies": { - "browserslist": ">= 4.21.0" + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==" - }, - "node_modules/uri-js": { - "version": "4.4.1", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", - "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "node_modules/stylehacks": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.1.tgz", + "integrity": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==", + "dev": true, "dependencies": { - "punycode": "^2.1.0" + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" } }, - "node_modules/urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", - "deprecated": "Please see https://github.com/lydell/urix#deprecated" + "node_modules/supports-color": { + "version": "9.4.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-9.4.0.tgz", + "integrity": "sha512-VL+lNrEoIXww1coLPOmiEmK/0sGigko5COxI09KzHc2VJXJsQ37UaQ+8quuxjDeA7+KnLGTWRyOXSLLR2Wb4jw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } }, - "node_modules/url": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", - "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", - "dependencies": { - "punycode": "^1.4.1", - "qs": "^6.11.2" + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/url-loader": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", - "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==", + "dev": true + }, + "node_modules/svgo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.1.0.tgz", + "integrity": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==", + "dev": true, "dependencies": { - "loader-utils": "^2.0.0", - "mime-types": "^2.1.27", - "schema-utils": "^3.0.0" + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.2.1", + "css-what": "^6.1.0", + "csso": "5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" }, "engines": { - "node": ">= 10.13.0" + "node": ">=14.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "file-loader": "*", - "webpack": "^4.0.0 || ^5.0.0" + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" }, - "peerDependenciesMeta": { - "file-loader": { - "optional": true - } + "engines": { + "node": ">=10" + } + }, + "node_modules/tar-stream": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/tar-stream/-/tar-stream-3.1.6.tgz", + "integrity": "sha512-B/UyjYwPpMBv+PaFSWAmtYjwdrlEaZQEhMIBFNC5oEG8lpiW8XjcSdmEaClj28ArfKScKHs2nshz3k2le6crsg==", + "dev": true, + "dependencies": { + "b4a": "^1.6.4", + "fast-fifo": "^1.2.0", + "streamx": "^2.15.0" } }, - "node_modules/url-loader/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/tar/node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "minipass": "^3.0.0" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">= 8" } }, - "node_modules/url/node_modules/punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" - }, - "node_modules/use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "node_modules/tar/node_modules/fs-minipass/node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dependencies": { - "inherits": "2.0.3" + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" } }, - "node_modules/util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true }, - "node_modules/util.promisify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", - "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "node_modules/terser": { + "version": "5.26.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", + "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", + "dev": true, "dependencies": { - "define-properties": "^1.1.2", - "object.getownpropertydescriptors": "^2.0.3" + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" } }, - "node_modules/util/node_modules/inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + "node_modules/terser/node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true }, - "node_modules/utila": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", - "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + "node_modules/tiny-invariant": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.1.tgz", + "integrity": "sha512-AD5ih2NlSssTCwsMznbvwMZpJ1cbhkGd2uueNxzv2jDlEeZdU04JQfRnggJQ8DrcVBGjAsCKwFBbDlVNtEMlzw==", + "dev": true }, - "node_modules/utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "node_modules/titleize": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/titleize/-/titleize-3.0.0.tgz", + "integrity": "sha512-KxVu8EYHDPBdUYdKZdKtU2aj2XfEx9AfjXxE/Aj0vT06w2icA09Vus1rh6eSu1y01akYg6BjIK/hxyLJINoMLQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, "engines": { - "node": ">= 0.4.0" + "node": ">=4" } }, - "node_modules/v8-to-istanbul": { - "version": "9.2.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", - "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^2.0.0" + "is-number": "^7.0.0" }, "engines": { - "node": ">=10.12.0" + "node": ">=8.0" } }, - "node_modules/v8-to-istanbul/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } }, - "node_modules/vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=6" } }, - "node_modules/vm-browserify": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", - "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true }, - "node_modules/vue": { - "version": "2.7.15", - "resolved": "https://registry.npmjs.org/vue/-/vue-2.7.15.tgz", - "integrity": "sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ==", + "node_modules/tuf-js": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/tuf-js/-/tuf-js-2.1.0.tgz", + "integrity": "sha512-eD7YPPjVlMzdggrOeE8zwoegUaG/rt6Bt3jwoQPunRiNVzgcCE009UDFJKJjG+Gk9wFu6W/Vi+P5d/5QpdD9jA==", + "dev": true, "dependencies": { - "@vue/compiler-sfc": "2.7.15", - "csstype": "^3.1.0" + "@tufjs/models": "2.0.0", + "debug": "^4.3.4", + "make-fetch-happen": "^13.0.0" + }, + "engines": { + "node": "^16.14.0 || >=18.0.0" } }, - "node_modules/vue-analytics": { - "version": "5.22.1", - "resolved": "https://registry.npmjs.org/vue-analytics/-/vue-analytics-5.22.1.tgz", - "integrity": "sha512-HPKQMN7gfcUqS5SxoO0VxqLRRSPkG1H1FqglsHccz6BatBatNtm/Vyy8brApktZxNCfnAkrSVDpxg3/FNDeOgQ==", - "deprecated": "Sorry but vue-analytics is no longer maintained. I would suggest you switch to vue-gtag, with love, the guy who made the package." - }, - "node_modules/vue-chartjs": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-4.1.2.tgz", - "integrity": "sha512-QSggYjeFv/L4jFSBQpX8NzrAvX0B+Ha6nDgxkTG8tEXxYOOTwKI4phRLe+B4f+REnkmg7hgPY24R0cixZJyXBg==", - "peerDependencies": { - "chart.js": "^3.7.0", - "vue": "^3.0.0-0 || ^2.6.0" + "node_modules/type-fest": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-3.13.1.tgz", + "integrity": "sha512-tLq3bSNx+xSpwvAJnzrK0Ep5CLNWjvFTOp71URMaAEWBfRb9nnJiBoUe0tF8bI4ZFO3omgBR6NvnbzVUT3Ly4g==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/vue-client-only": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vue-client-only/-/vue-client-only-2.1.0.tgz", - "integrity": "sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==" - }, - "node_modules/vue-functional-data-merge": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/vue-functional-data-merge/-/vue-functional-data-merge-3.1.0.tgz", - "integrity": "sha512-leT4kdJVQyeZNY1kmnS1xiUlQ9z1B/kdBFCILIjYYQDqZgLqCLa0UhjSSeRX6c3mUe6U5qYeM8LrEqkHJ1B4LA==" - }, - "node_modules/vue-gtag": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/vue-gtag/-/vue-gtag-1.16.1.tgz", - "integrity": "sha512-5vs0pSGxdqrfXqN1Qwt0ZFXG0iTYjRMu/saddc7QIC5yp+DKgjWQRpGYVa7Pq+KbThxwzzMfo0sGi7ISa6NowA==", - "peerDependencies": { - "vue": "^2.0.0" - } + "node_modules/ufo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.3.2.tgz", + "integrity": "sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==", + "dev": true }, - "node_modules/vue-hot-reload-api": { - "version": "2.3.4", - "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", - "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==" + "node_modules/ultrahtml": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/ultrahtml/-/ultrahtml-1.5.2.tgz", + "integrity": "sha512-qh4mBffhlkiXwDAOxvSGxhL0QEQsTbnP9BozOK3OYPEGvPvdWzvAUaXNtUSMdNsKDtuyjEbyVUPFZ52SSLhLqw==", + "dev": true }, - "node_modules/vue-loader": { - "version": "15.11.1", - "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.11.1.tgz", - "integrity": "sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==", + "node_modules/unconfig": { + "version": "0.3.11", + "resolved": "https://registry.npmjs.org/unconfig/-/unconfig-0.3.11.tgz", + "integrity": "sha512-bV/nqePAKv71v3HdVUn6UefbsDKQWRX+bJIkiSm0+twIds6WiD2bJLWWT3i214+J/B4edufZpG2w7Y63Vbwxow==", + "dev": true, "dependencies": { - "@vue/component-compiler-utils": "^3.1.0", - "hash-sum": "^1.0.2", - "loader-utils": "^1.1.0", - "vue-hot-reload-api": "^2.3.0", - "vue-style-loader": "^4.1.0" - }, - "peerDependencies": { - "css-loader": "*", - "webpack": "^3.0.0 || ^4.1.0 || ^5.0.0-0" + "@antfu/utils": "^0.7.6", + "defu": "^6.1.2", + "jiti": "^1.20.0", + "mlly": "^1.4.2" }, - "peerDependenciesMeta": { - "cache-loader": { - "optional": true - }, - "prettier": { - "optional": true - }, - "vue-template-compiler": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/vue-loader/node_modules/hash-sum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==" + "node_modules/uncrypto": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/uncrypto/-/uncrypto-0.1.3.tgz", + "integrity": "sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==", + "dev": true }, - "node_modules/vue-loader/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/unctx": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/unctx/-/unctx-2.3.1.tgz", + "integrity": "sha512-PhKke8ZYauiqh3FEMVNm7ljvzQiph0Mt3GBRve03IJm7ukfaON2OBK795tLwhbyfzknuRRkW0+Ze+CQUmzOZ+A==", + "dev": true, "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" + "acorn": "^8.8.2", + "estree-walker": "^3.0.3", + "magic-string": "^0.30.0", + "unplugin": "^1.3.1" } }, - "node_modules/vue-loader/node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "node_modules/undici": { + "version": "5.28.2", + "resolved": "https://registry.npmjs.org/undici/-/undici-5.28.2.tgz", + "integrity": "sha512-wh1pHJHnUeQV5Xa8/kyQhO7WFa8M34l026L5P/+2TYiakvGy5Rdc8jWZVyG7ieht/0WgJLEd3kcU5gKx+6GC8w==", + "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "@fastify/busboy": "^2.0.0" }, "engines": { - "node": ">=4.0.0" + "node": ">=14.0" } }, - "node_modules/vue-meta": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/vue-meta/-/vue-meta-2.4.0.tgz", - "integrity": "sha512-XEeZUmlVeODclAjCNpWDnjgw+t3WA6gdzs6ENoIAgwO1J1d5p1tezDhtteLUFwcaQaTtayRrsx7GL6oXp/m2Jw==", + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", + "dev": true + }, + "node_modules/unenv": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/unenv/-/unenv-1.8.0.tgz", + "integrity": "sha512-uIGbdCWZfhRRmyKj1UioCepQ0jpq638j/Cf0xFTn4zD1nGJ2lSdzYHLzfdXN791oo/0juUiSWW1fBklXMTsuqg==", + "dev": true, "dependencies": { - "deepmerge": "^4.2.2" + "consola": "^3.2.3", + "defu": "^6.1.3", + "mime": "^3.0.0", + "node-fetch-native": "^1.4.1", + "pathe": "^1.1.1" } }, - "node_modules/vue-no-ssr": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz", - "integrity": "sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==" - }, - "node_modules/vue-router": { - "version": "3.6.5", - "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.6.5.tgz", - "integrity": "sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==" - }, - "node_modules/vue-server-renderer": { - "version": "2.7.15", - "resolved": "https://registry.npmjs.org/vue-server-renderer/-/vue-server-renderer-2.7.15.tgz", - "integrity": "sha512-5Wy6ls7ErawmgxlogoScTDOQzqBp4+B9CKV1Dl4280xVPBs1+iHpghW1nlKNd1JWKI3O2s4X4vwmg1C7Rvy7oA==", + "node_modules/unhead": { + "version": "1.8.9", + "resolved": "https://registry.npmjs.org/unhead/-/unhead-1.8.9.tgz", + "integrity": "sha512-qqCNmA4KOEDjcl+OtRZTllGehXewcQ31zbHjvhl/jqCs2MfRcZoxFW1y7A4Y4BgR/O7PI89K+GoWGcxK3gn64Q==", + "dev": true, "dependencies": { - "chalk": "^4.1.2", - "hash-sum": "^2.0.0", - "he": "^1.2.0", - "lodash.template": "^4.5.0", - "lodash.uniq": "^4.5.0", - "resolve": "^1.22.0", - "serialize-javascript": "^6.0.0", - "source-map": "0.5.6" + "@unhead/dom": "1.8.9", + "@unhead/schema": "1.8.9", + "@unhead/shared": "1.8.9", + "hookable": "^5.5.3" + }, + "funding": { + "url": "https://github.com/sponsors/harlan-zw" } }, - "node_modules/vue-server-renderer/node_modules/source-map": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", - "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "node_modules/unicorn-magic": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/unicorn-magic/-/unicorn-magic-0.1.0.tgz", + "integrity": "sha512-lRfVq8fE8gz6QMBuDM6a+LO3IAzTi05H6gCVaUpir2E1Rwpo4ZUog45KpNXKC/Mn3Yb9UDuHumeFTo9iV/D9FQ==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/vue-style-loader": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", - "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "node_modules/unimport": { + "version": "3.6.1", + "resolved": "https://registry.npmjs.org/unimport/-/unimport-3.6.1.tgz", + "integrity": "sha512-zKzbp8AQ+l8QK3XrONtUBdgBbMI8TkGh8hBYF77ZkVqMLLIAHwGSwJRFolPQMBx/5pezeRKvmu2gzlqnxRZeqQ==", + "dev": true, "dependencies": { - "hash-sum": "^1.0.2", - "loader-utils": "^1.0.2" + "@rollup/pluginutils": "^5.1.0", + "escape-string-regexp": "^5.0.0", + "fast-glob": "^3.3.2", + "local-pkg": "^0.5.0", + "magic-string": "^0.30.5", + "mlly": "^1.4.2", + "pathe": "^1.1.1", + "pkg-types": "^1.0.3", + "scule": "^1.1.1", + "strip-literal": "^1.3.0", + "unplugin": "^1.5.1" } }, - "node_modules/vue-style-loader/node_modules/hash-sum": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", - "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==" - }, - "node_modules/vue-style-loader/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/unique-filename": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-3.0.0.tgz", + "integrity": "sha512-afXhuC55wkAmZ0P18QsVE6kp8JaxrEokN2HGIoIVv2ijHQd419H0+6EigAFcIzXeMIkcIkNBpB3L/DXB3cTS/g==", + "dev": true, "dependencies": { - "minimist": "^1.2.0" + "unique-slug": "^4.0.0" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/vue-style-loader/node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "node_modules/unique-slug": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-4.0.0.tgz", + "integrity": "sha512-WrcA6AyEfqDX5bWige/4NQfPZMtASNVxdmWR76WESYQVAACSgWcR6e9i0mofqqBxYFtL4oAxPIptY73/0YE1DQ==", + "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "imurmurhash": "^0.1.4" }, "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/vue-template-compiler": { - "version": "2.7.15", - "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz", - "integrity": "sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==", - "dependencies": { - "de-indent": "^1.0.2", - "he": "^1.2.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/vue-template-es2015-compiler": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", - "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==" - }, - "node_modules/vuex": { - "version": "3.6.2", - "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.6.2.tgz", - "integrity": "sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==", - "peerDependencies": { - "vue": "^2.0.0" + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "dev": true, + "engines": { + "node": ">= 10.0.0" } }, - "node_modules/walker": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", - "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "node_modules/unplugin": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.5.1.tgz", + "integrity": "sha512-0QkvG13z6RD+1L1FoibQqnvTwVBXvS4XSPwAyinVgoOCl2jAgwzdUKmEj05o4Lt8xwQI85Hb6mSyYkcAGwZPew==", "dev": true, "dependencies": { - "makeerror": "1.0.12" + "acorn": "^8.11.2", + "chokidar": "^3.5.3", + "webpack-sources": "^3.2.3", + "webpack-virtual-modules": "^0.6.0" } }, - "node_modules/watchpack": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", - "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "node_modules/unplugin-vue-router": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/unplugin-vue-router/-/unplugin-vue-router-0.7.0.tgz", + "integrity": "sha512-ddRreGq0t5vlSB7OMy4e4cfU1w2AwBQCwmvW3oP/0IHQiokzbx4hd3TpwBu3eIAFVuhX2cwNQwp1U32UybTVCw==", + "dev": true, "dependencies": { - "glob-to-regexp": "^0.4.1", - "graceful-fs": "^4.1.2" + "@babel/types": "^7.22.19", + "@rollup/pluginutils": "^5.0.4", + "@vue-macros/common": "^1.8.0", + "ast-walker-scope": "^0.5.0", + "chokidar": "^3.5.3", + "fast-glob": "^3.3.1", + "json5": "^2.2.3", + "local-pkg": "^0.4.3", + "mlly": "^1.4.2", + "pathe": "^1.1.1", + "scule": "^1.0.0", + "unplugin": "^1.5.0", + "yaml": "^2.3.2" }, - "engines": { - "node": ">=10.13.0" - } - }, - "node_modules/watchpack-chokidar2": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", - "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", - "optional": true, - "dependencies": { - "chokidar": "^2.1.8" + "peerDependencies": { + "vue-router": "^4.1.0" + }, + "peerDependenciesMeta": { + "vue-router": { + "optional": true + } } }, - "node_modules/watchpack-chokidar2/node_modules/anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "optional": true, - "dependencies": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" + "node_modules/unplugin-vue-router/node_modules/local-pkg": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/local-pkg/-/local-pkg-0.4.3.tgz", + "integrity": "sha512-SFppqq5p42fe2qcZQqqEOiVRXl+WCP1MdT6k7BDEW1j++sp5fIY+/fdRQitvKgB5BrBcmrs5m/L0v2FrU5MY1g==", + "dev": true, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" } }, - "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", - "optional": true, + "node_modules/unstorage": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/unstorage/-/unstorage-1.10.1.tgz", + "integrity": "sha512-rWQvLRfZNBpF+x8D3/gda5nUCQL2PgXy2jNG4U7/Rc9BGEv9+CAJd0YyGCROUBKs9v49Hg8huw3aih5Bf5TAVw==", + "dev": true, "dependencies": { - "remove-trailing-separator": "^1.0.1" + "anymatch": "^3.1.3", + "chokidar": "^3.5.3", + "destr": "^2.0.2", + "h3": "^1.8.2", + "ioredis": "^5.3.2", + "listhen": "^1.5.5", + "lru-cache": "^10.0.2", + "mri": "^1.2.0", + "node-fetch-native": "^1.4.1", + "ofetch": "^1.3.3", + "ufo": "^1.3.1" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "optional": true, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "@azure/app-configuration": "^1.4.1", + "@azure/cosmos": "^4.0.0", + "@azure/data-tables": "^13.2.2", + "@azure/identity": "^3.3.2", + "@azure/keyvault-secrets": "^4.7.0", + "@azure/storage-blob": "^12.16.0", + "@capacitor/preferences": "^5.0.6", + "@netlify/blobs": "^6.2.0", + "@planetscale/database": "^1.11.0", + "@upstash/redis": "^1.23.4", + "@vercel/kv": "^0.2.3", + "idb-keyval": "^6.2.1" + }, + "peerDependenciesMeta": { + "@azure/app-configuration": { + "optional": true + }, + "@azure/cosmos": { + "optional": true + }, + "@azure/data-tables": { + "optional": true + }, + "@azure/identity": { + "optional": true + }, + "@azure/keyvault-secrets": { + "optional": true + }, + "@azure/storage-blob": { + "optional": true + }, + "@capacitor/preferences": { + "optional": true + }, + "@netlify/blobs": { + "optional": true + }, + "@planetscale/database": { + "optional": true + }, + "@upstash/redis": { + "optional": true + }, + "@vercel/kv": { + "optional": true + }, + "idb-keyval": { + "optional": true + } } }, - "node_modules/watchpack-chokidar2/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "optional": true, - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, + "node_modules/unstorage/node_modules/lru-cache": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.1.0.tgz", + "integrity": "sha512-/1clY/ui8CzjKFyjdvwPWJUYKiFVXG2I2cY0ssG7h4+hwk+XOIX7ZSG9Q7TW8TW3Kp3BUSqgFWBLgL4PJ+Blag==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "14 || >=16.14" } }, - "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "optional": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, + "node_modules/untildify": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", + "integrity": "sha512-KK8xQ1mkzZeg9inewmFVDNkg3l5LUhoq9kN6iWYB/CC9YMG8HA+c1Q8HwDe6dEX7kErrEVNVBO3fWsVq5iDgtw==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/watchpack-chokidar2/node_modules/chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", - "optional": true, + "node_modules/untun": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/untun/-/untun-0.1.3.tgz", + "integrity": "sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==", + "dev": true, "dependencies": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" + "citty": "^0.1.5", + "consola": "^3.2.3", + "pathe": "^1.1.1" }, - "optionalDependencies": { - "fsevents": "^1.2.7" + "bin": { + "untun": "bin/untun.mjs" } }, - "node_modules/watchpack-chokidar2/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "optional": true, + "node_modules/untyped": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/untyped/-/untyped-1.4.0.tgz", + "integrity": "sha512-Egkr/s4zcMTEuulcIb7dgURS6QpN7DyqQYdf+jBtiaJvQ+eRsrtWUoX84SbvQWuLkXsOjM+8sJC9u6KoMK/U7Q==", + "dev": true, "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" + "@babel/core": "^7.22.9", + "@babel/standalone": "^7.22.9", + "@babel/types": "^7.22.5", + "defu": "^6.1.2", + "jiti": "^1.19.1", + "mri": "^1.2.0", + "scule": "^1.0.0" }, - "engines": { - "node": ">=0.10.0" + "bin": { + "untyped": "dist/cli.mjs" } }, - "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": { + "node_modules/upath": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "optional": true, - "dependencies": { - "is-extendable": "^0.1.0" - }, + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4", + "yarn": "*" } }, - "node_modules/watchpack-chokidar2/node_modules/fsevents": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", - "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", - "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } ], "dependencies": { - "bindings": "^1.5.0", - "nan": "^2.12.1" + "escalade": "^3.1.1", + "picocolors": "^1.0.0" }, - "engines": { - "node": ">= 4.0" + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" } }, - "node_modules/watchpack-chokidar2/node_modules/glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", - "optional": true, - "dependencies": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - } + "node_modules/uqr": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/uqr/-/uqr-0.1.2.tgz", + "integrity": "sha512-MJu7ypHq6QasgF5YRTjqscSzQp/W11zoUk6kvmlH+fmWEs63Y0Eib13hYFwAzagRJcVY8WVnlV+eBDUGMJ5IbA==", + "dev": true }, - "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", - "optional": true, - "dependencies": { - "is-extglob": "^2.1.0" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/urlpattern-polyfill": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/urlpattern-polyfill/-/urlpattern-polyfill-8.0.2.tgz", + "integrity": "sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==", + "dev": true }, - "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", - "optional": true, - "dependencies": { - "binary-extensions": "^1.0.0" - }, - "engines": { - "node": ">=0.10.0" - } + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true }, - "node_modules/watchpack-chokidar2/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", - "optional": true, - "engines": { - "node": ">=0.10.0" + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/watchpack-chokidar2/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "optional": true, + "node_modules/validate-npm-package-name": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/validate-npm-package-name/-/validate-npm-package-name-5.0.0.tgz", + "integrity": "sha512-YuKoXDAhBYxY7SfOKxHBDoSyENFeW5VvIIQp2TGQuit8gpK6MnWaQelBKxso72DoxTZfZdcP3W90LqpSkgPzLQ==", + "dev": true, "dependencies": { - "kind-of": "^3.0.2" + "builtins": "^5.0.0" }, "engines": { - "node": ">=0.10.0" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "optional": true, + "node_modules/vite": { + "version": "4.5.1", + "resolved": "https://registry.npmjs.org/vite/-/vite-4.5.1.tgz", + "integrity": "sha512-AXXFaAJ8yebyqzoNB9fu2pHoo/nWX+xZlaRwoeYUxEqBO+Zj4msE5G+BhGBll9lYEKv9Hfks52PAF2X7qDYXQA==", + "dev": true, "dependencies": { - "is-buffer": "^1.1.5" + "esbuild": "^0.18.10", + "postcss": "^8.4.27", + "rollup": "^3.27.1" + }, + "bin": { + "vite": "bin/vite.js" }, "engines": { - "node": ">=0.10.0" + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + }, + "peerDependencies": { + "@types/node": ">= 14", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } } }, - "node_modules/watchpack-chokidar2/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "optional": true, + "node_modules/vite-node": { + "version": "0.33.0", + "resolved": "https://registry.npmjs.org/vite-node/-/vite-node-0.33.0.tgz", + "integrity": "sha512-19FpHYbwWWxDr73ruNahC+vtEdza52kA90Qb3La98yZ0xULqV8A5JLNPUff0f5zID4984tW7l3DH2przTJUZSw==", + "dev": true, "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "cac": "^6.7.14", + "debug": "^4.3.4", + "mlly": "^1.4.0", + "pathe": "^1.1.1", + "picocolors": "^1.0.0", + "vite": "^3.0.0 || ^4.0.0" + }, + "bin": { + "vite-node": "vite-node.mjs" }, "engines": { - "node": ">=0.10.0" + "node": ">=v14.18.0" + }, + "funding": { + "url": "https://opencollective.com/vitest" } }, - "node_modules/watchpack-chokidar2/node_modules/readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "optional": true, + "node_modules/vite-plugin-checker": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/vite-plugin-checker/-/vite-plugin-checker-0.6.2.tgz", + "integrity": "sha512-YvvvQ+IjY09BX7Ab+1pjxkELQsBd4rPhWNw8WLBeFVxu/E7O+n6VYAqNsKdK/a2luFlX/sMpoWdGFfg4HvwdJQ==", + "dev": true, "dependencies": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" + "@babel/code-frame": "^7.12.13", + "ansi-escapes": "^4.3.0", + "chalk": "^4.1.1", + "chokidar": "^3.5.1", + "commander": "^8.0.0", + "fast-glob": "^3.2.7", + "fs-extra": "^11.1.0", + "lodash.debounce": "^4.0.8", + "lodash.pick": "^4.4.0", + "npm-run-path": "^4.0.1", + "semver": "^7.5.0", + "strip-ansi": "^6.0.0", + "tiny-invariant": "^1.1.0", + "vscode-languageclient": "^7.0.0", + "vscode-languageserver": "^7.0.0", + "vscode-languageserver-textdocument": "^1.0.1", + "vscode-uri": "^3.0.2" }, "engines": { - "node": ">=0.10" + "node": ">=14.16" + }, + "peerDependencies": { + "eslint": ">=7", + "meow": "^9.0.0", + "optionator": "^0.9.1", + "stylelint": ">=13", + "typescript": "*", + "vite": ">=2.0.0", + "vls": "*", + "vti": "*", + "vue-tsc": ">=1.3.9" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + }, + "meow": { + "optional": true + }, + "optionator": { + "optional": true + }, + "stylelint": { + "optional": true + }, + "typescript": { + "optional": true + }, + "vls": { + "optional": true + }, + "vti": { + "optional": true + }, + "vue-tsc": { + "optional": true + } } }, - "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "optional": true, + "node_modules/vite-plugin-checker/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/watchpack-chokidar2/node_modules/upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "optional": true, + "node_modules/vite-plugin-checker/node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "dev": true, "engines": { - "node": ">=4", - "yarn": "*" + "node": ">= 12" } }, - "node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" - }, - "node_modules/webpack": { - "version": "4.47.0", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.47.0.tgz", - "integrity": "sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==", - "dependencies": { - "@webassemblyjs/ast": "1.9.0", - "@webassemblyjs/helper-module-context": "1.9.0", - "@webassemblyjs/wasm-edit": "1.9.0", - "@webassemblyjs/wasm-parser": "1.9.0", - "acorn": "^6.4.1", - "ajv": "^6.10.2", - "ajv-keywords": "^3.4.1", - "chrome-trace-event": "^1.0.2", - "enhanced-resolve": "^4.5.0", - "eslint-scope": "^4.0.3", - "json-parse-better-errors": "^1.0.2", - "loader-runner": "^2.4.0", - "loader-utils": "^1.2.3", - "memory-fs": "^0.4.1", - "micromatch": "^3.1.10", - "mkdirp": "^0.5.3", - "neo-async": "^2.6.1", - "node-libs-browser": "^2.2.1", - "schema-utils": "^1.0.0", - "tapable": "^1.1.3", - "terser-webpack-plugin": "^1.4.3", - "watchpack": "^1.7.4", - "webpack-sources": "^1.4.1" - }, - "bin": { - "webpack": "bin/webpack.js" - }, + "node_modules/vite-plugin-checker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, "engines": { - "node": ">=6.11.5" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependenciesMeta": { - "webpack-cli": { - "optional": true - }, - "webpack-command": { - "optional": true - } + "node": ">=8" } }, - "node_modules/webpack-bundle-analyzer": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz", - "integrity": "sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==", + "node_modules/vite-plugin-checker/node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, "dependencies": { - "@discoveryjs/json-ext": "0.5.7", - "acorn": "^8.0.4", - "acorn-walk": "^8.0.0", - "commander": "^7.2.0", - "debounce": "^1.2.1", - "escape-string-regexp": "^4.0.0", - "gzip-size": "^6.0.0", - "html-escaper": "^2.0.2", - "is-plain-object": "^5.0.0", - "opener": "^1.5.2", - "picocolors": "^1.0.0", - "sirv": "^2.0.3", - "ws": "^7.3.1" - }, - "bin": { - "webpack-bundle-analyzer": "lib/bin/analyzer.js" + "path-key": "^3.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=8" } }, - "node_modules/webpack-bundle-analyzer/node_modules/acorn": { - "version": "8.11.2", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", - "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", - "bin": { - "acorn": "bin/acorn" + "node_modules/vite-plugin-checker/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, "engines": { - "node": ">=0.4.0" + "node": ">=8" } }, - "node_modules/webpack-bundle-analyzer/node_modules/commander": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", - "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "node_modules/vite-plugin-inspect": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/vite-plugin-inspect/-/vite-plugin-inspect-0.8.1.tgz", + "integrity": "sha512-oPBPVGp6tBd5KdY/qY6lrbLXqrbHRG0hZLvEaJfiZ/GQfDB+szRuLHblQh1oi1Hhh8GeLit/50l4xfs2SA+TCA==", + "dev": true, + "dependencies": { + "@antfu/utils": "^0.7.6", + "@rollup/pluginutils": "^5.0.5", + "debug": "^4.3.4", + "error-stack-parser-es": "^0.1.1", + "fs-extra": "^11.1.1", + "open": "^9.1.0", + "picocolors": "^1.0.0", + "sirv": "^2.0.3" + }, "engines": { - "node": ">= 10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/antfu" + }, + "peerDependencies": { + "vite": "^3.1.0 || ^4.0.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "@nuxt/kit": { + "optional": true + } } }, - "node_modules/webpack-bundle-analyzer/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/vite-plugin-inspect/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack-dev-middleware": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", - "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "node_modules/vite-plugin-inspect/node_modules/open": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/open/-/open-9.1.0.tgz", + "integrity": "sha512-OS+QTnw1/4vrf+9hh1jc1jnYjzSG4ttTBB8UxOwAnInG3Uo4ssetzC1ihqaIHjLJnA5GGlRl6QlZXOTQhRBUvg==", + "dev": true, "dependencies": { - "colorette": "^2.0.10", - "memfs": "^3.4.3", - "mime-types": "^2.1.31", - "range-parser": "^1.2.1", - "schema-utils": "^4.0.0" + "default-browser": "^4.0.0", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^2.2.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">=14.16" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^4.0.0 || ^5.0.0" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "node_modules/vite-plugin-vue-inspector": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/vite-plugin-vue-inspector/-/vite-plugin-vue-inspector-4.0.2.tgz", + "integrity": "sha512-KPvLEuafPG13T7JJuQbSm5PwSxKFnVS965+MP1we2xGw9BPkkc/+LPix5MMWenpKWqtjr0ws8THrR+KuoDC8hg==", + "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "@babel/core": "^7.23.0", + "@babel/plugin-proposal-decorators": "^7.23.0", + "@babel/plugin-syntax-import-attributes": "^7.22.5", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-transform-typescript": "^7.22.15", + "@vue/babel-plugin-jsx": "^1.1.5", + "@vue/compiler-dom": "^3.3.4", + "kolorist": "^1.8.0", + "magic-string": "^0.30.4" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "peerDependencies": { + "vite": "^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0" } }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "node_modules/vite-plugin-vuetify": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/vite-plugin-vuetify/-/vite-plugin-vuetify-1.0.2.tgz", + "integrity": "sha512-MubIcKD33O8wtgQXlbEXE7ccTEpHZ8nPpe77y9Wy3my2MWw/PgehP9VqTp92BLqr0R1dSL970Lynvisx3UxBFw==", + "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.3" + "@vuetify/loader-shared": "^1.7.1", + "debug": "^4.3.3", + "upath": "^2.0.1" + }, + "engines": { + "node": ">=12" }, "peerDependencies": { - "ajv": "^8.8.2" + "vite": "^2.7.0 || ^3.0.0 || ^4.0.0", + "vuetify": "^3.0.0-beta.4" } }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + "node_modules/vite/node_modules/@esbuild/android-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/webpack-dev-middleware/node_modules/schema-utils": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", - "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", - "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" - }, + "node_modules/vite/node_modules/@esbuild/android-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=12" } }, - "node_modules/webpack-hot-middleware": { - "version": "2.25.4", - "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.4.tgz", - "integrity": "sha512-IRmTspuHM06aZh98OhBJtqLpeWFM8FXJS5UYpKYxCJzyFoyWj1w6VGFfomZU7OPA55dMLrQK0pRT1eQ3PACr4w==", - "dependencies": { - "ansi-html-community": "0.0.8", - "html-entities": "^2.1.0", - "strip-ansi": "^6.0.0" + "node_modules/vite/node_modules/@esbuild/android-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" } }, - "node_modules/webpack-node-externals": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", - "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", + "node_modules/vite/node_modules/@esbuild/darwin-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/webpack-sources": { - "version": "1.4.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", - "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", - "dependencies": { - "source-list-map": "^2.0.0", - "source-map": "~0.6.1" + "node_modules/vite/node_modules/@esbuild/darwin-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/webpack/node_modules/braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dependencies": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, + "node_modules/vite/node_modules/@esbuild/freebsd-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, + "node_modules/vite/node_modules/@esbuild/freebsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/cacache": { - "version": "12.0.4", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", - "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", - "dependencies": { - "bluebird": "^3.5.5", - "chownr": "^1.1.1", - "figgy-pudding": "^3.5.1", - "glob": "^7.1.4", - "graceful-fs": "^4.1.15", - "infer-owner": "^1.0.3", - "lru-cache": "^5.1.1", - "mississippi": "^3.0.0", - "mkdirp": "^0.5.1", - "move-concurrently": "^1.0.1", - "promise-inflight": "^1.0.1", - "rimraf": "^2.6.3", - "ssri": "^6.0.1", - "unique-filename": "^1.1.1", - "y18n": "^4.0.0" + "node_modules/vite/node_modules/@esbuild/linux-arm": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/webpack/node_modules/chownr": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", - "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + "node_modules/vite/node_modules/@esbuild/linux-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/webpack/node_modules/fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", - "dependencies": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, + "node_modules/vite/node_modules/@esbuild/linux-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", - "dependencies": { - "is-extendable": "^0.1.0" - }, + "node_modules/vite/node_modules/@esbuild/linux-loong64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, + "node_modules/vite/node_modules/@esbuild/linux-mips64el": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/webpack/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dependencies": { - "locate-path": "^3.0.0" - }, + "node_modules/vite/node_modules/@esbuild/linux-ppc64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=6" + "node": ">=12" } }, - "node_modules/webpack/node_modules/is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "node_modules/vite/node_modules/@esbuild/linux-riscv64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", - "dependencies": { - "kind-of": "^3.0.2" - }, + "node_modules/vite/node_modules/@esbuild/linux-s390x": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/is-number/node_modules/kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", - "dependencies": { - "is-buffer": "^1.1.5" - }, + "node_modules/vite/node_modules/@esbuild/linux-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/webpack/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", - "dependencies": { - "minimist": "^1.2.0" - }, - "bin": { - "json5": "lib/cli.js" + "node_modules/vite/node_modules/@esbuild/netbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "node_modules/webpack/node_modules/loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "node_modules/vite/node_modules/@esbuild/openbsd-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">=4.3.0 <5.0.0 || >=5.10" + "node": ">=12" } }, - "node_modules/webpack/node_modules/loader-utils": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", - "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", - "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^1.0.1" + "node_modules/vite/node_modules/@esbuild/sunos-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-arm64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-ia32": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/@esbuild/win32-x64": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/vite/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=4.0.0" + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" + } + }, + "node_modules/vite/node_modules/rollup": { + "version": "3.29.4", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-3.29.4.tgz", + "integrity": "sha512-oWzmBZwvYrU0iJHtDmhsm662rC15FRXmcjCk1xD771dFDx5jJ02ufAQQTn0etB2emNk4J9EZg/yWKpsn9BWGRw==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/webpack/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - }, + "node_modules/vscode-jsonrpc": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/vscode-jsonrpc/-/vscode-jsonrpc-6.0.0.tgz", + "integrity": "sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=8.0.0 || >=10.0.0" } }, - "node_modules/webpack/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "node_modules/vscode-languageclient": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/vscode-languageclient/-/vscode-languageclient-7.0.0.tgz", + "integrity": "sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==", + "dev": true, "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "minimatch": "^3.0.4", + "semver": "^7.3.4", + "vscode-languageserver-protocol": "3.16.0" }, "engines": { - "node": ">=6" + "vscode": "^1.52.0" } }, - "node_modules/webpack/node_modules/memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "node_modules/vscode-languageclient/node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, "dependencies": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/webpack/node_modules/micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "node_modules/vscode-languageclient/node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, "dependencies": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=0.10.0" + "node": "*" } }, - "node_modules/webpack/node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/vscode-languageserver": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver/-/vscode-languageserver-7.0.0.tgz", + "integrity": "sha512-60HTx5ID+fLRcgdHfmz0LDZAXYEV68fzwG0JWwEPBode9NuMYTIxuYXPg4ngO8i8+Ou0lM7y6GzaYWbiDL0drw==", + "dev": true, "dependencies": { - "p-try": "^2.0.0" + "vscode-languageserver-protocol": "3.16.0" }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "bin": { + "installServerIntoExtension": "bin/installServerIntoExtension" } }, - "node_modules/webpack/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/vscode-languageserver-protocol": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-protocol/-/vscode-languageserver-protocol-3.16.0.tgz", + "integrity": "sha512-sdeUoAawceQdgIfTI+sdcwkiK2KU+2cbEYA0agzM2uqaUy2UpnnGHtWTHVEtS0ES4zHU0eMFRGN+oQgDxlD66A==", + "dev": true, "dependencies": { - "p-limit": "^2.0.0" - }, - "engines": { - "node": ">=6" + "vscode-jsonrpc": "6.0.0", + "vscode-languageserver-types": "3.16.0" } }, - "node_modules/webpack/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "engines": { - "node": ">=4" - } + "node_modules/vscode-languageserver-textdocument": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/vscode-languageserver-textdocument/-/vscode-languageserver-textdocument-1.0.11.tgz", + "integrity": "sha512-X+8T3GoiwTVlJbicx/sIAF+yuJAqz8VvwJyoMVhwEMoEKE/fkDmrqUgDMyBECcM2A2frVZIUj5HI/ErRXCfOeA==", + "dev": true }, - "node_modules/webpack/node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", - "engines": { - "node": ">=6" - } + "node_modules/vscode-languageserver-types": { + "version": "3.16.0", + "resolved": "https://registry.npmjs.org/vscode-languageserver-types/-/vscode-languageserver-types-3.16.0.tgz", + "integrity": "sha512-k8luDIWJWyenLc5ToFQQMaSrqCHiLwyKPHKPQZ5zz21vM+vIVUSvsRpcbiECH4WR88K2XZqc4ScRcZ7nk/jbeA==", + "dev": true }, - "node_modules/webpack/node_modules/pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dependencies": { - "find-up": "^3.0.0" - }, - "engines": { - "node": ">=6" - } + "node_modules/vscode-uri": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/vscode-uri/-/vscode-uri-3.0.8.tgz", + "integrity": "sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==", + "dev": true }, - "node_modules/webpack/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "node_modules/vue": { + "version": "3.3.13", + "resolved": "https://registry.npmjs.org/vue/-/vue-3.3.13.tgz", + "integrity": "sha512-LDnUpQvDgsfc0u/YgtAgTMXJlJQqjkxW1PVcOnJA5cshPleULDjHi7U45pl2VJYazSSvLH8UKcid/kzH8I0a0Q==", "dependencies": { - "glob": "^7.1.3" + "@vue/compiler-dom": "3.3.13", + "@vue/compiler-sfc": "3.3.13", + "@vue/runtime-dom": "3.3.13", + "@vue/server-renderer": "3.3.13", + "@vue/shared": "3.3.13" }, - "bin": { - "rimraf": "bin.js" - } - }, - "node_modules/webpack/node_modules/schema-utils": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", - "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", - "dependencies": { - "ajv": "^6.1.0", - "ajv-errors": "^1.0.0", - "ajv-keywords": "^3.1.0" + "peerDependencies": { + "typescript": "*" }, - "engines": { - "node": ">= 4" - } - }, - "node_modules/webpack/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "bin": { - "semver": "bin/semver" + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/webpack/node_modules/serialize-javascript": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", - "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "node_modules/vue-bundle-renderer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/vue-bundle-renderer/-/vue-bundle-renderer-2.0.0.tgz", + "integrity": "sha512-oYATTQyh8XVkUWe2kaKxhxKVuuzK2Qcehe+yr3bGiaQAhK3ry2kYE4FWOfL+KO3hVFwCdLmzDQTzYhTi9C+R2A==", + "dev": true, "dependencies": { - "randombytes": "^2.1.0" + "ufo": "^1.2.0" } }, - "node_modules/webpack/node_modules/ssri": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", - "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", - "dependencies": { - "figgy-pudding": "^3.5.1" + "node_modules/vue-chartjs": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-5.3.0.tgz", + "integrity": "sha512-8XqX0JU8vFZ+WA2/knz4z3ThClduni2Nm0BMe2u0mXgTfd9pXrmJ07QBI+WAij5P/aPmPMX54HCE1seWL37ZdQ==", + "peerDependencies": { + "chart.js": "^4.1.1", + "vue": "^3.0.0-0 || ^2.7.0" } }, - "node_modules/webpack/node_modules/terser-webpack-plugin": { - "version": "1.4.5", - "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", - "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "node_modules/vue-devtools-stub": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/vue-devtools-stub/-/vue-devtools-stub-0.1.0.tgz", + "integrity": "sha512-RutnB7X8c5hjq39NceArgXg28WZtZpGc3+J16ljMiYnFhKvd8hITxSWQSQ5bvldxMDU6gG5mkxl1MTQLXckVSQ==", + "dev": true + }, + "node_modules/vue-router": { + "version": "4.2.5", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-4.2.5.tgz", + "integrity": "sha512-DIUpKcyg4+PTQKfFPX88UWhlagBEBEfJ5A8XDXRJLUnZOvcpMF8o/dnL90vpVkGaPbjvXazV/rC1qBKrZlFugw==", + "dev": true, "dependencies": { - "cacache": "^12.0.2", - "find-cache-dir": "^2.1.0", - "is-wsl": "^1.1.0", - "schema-utils": "^1.0.0", - "serialize-javascript": "^4.0.0", - "source-map": "^0.6.1", - "terser": "^4.1.2", - "webpack-sources": "^1.4.0", - "worker-farm": "^1.7.0" + "@vue/devtools-api": "^6.5.0" }, - "engines": { - "node": ">= 6.9.0" + "funding": { + "url": "https://github.com/sponsors/posva" }, "peerDependencies": { - "webpack": "^4.0.0" + "vue": "^3.2.0" } }, - "node_modules/webpack/node_modules/to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", - "dependencies": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, + "node_modules/vuetify": { + "version": "3.4.8", + "resolved": "https://registry.npmjs.org/vuetify/-/vuetify-3.4.8.tgz", + "integrity": "sha512-fx/cVZNYU1Pk1LWevbCCKU5pv2ew/8EWkLhF75LHSzgU6b0skzQaIq6Gr/qSXbUDAPuJz7zqqGbFD6CSNYsY0w==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": "^12.20 || >=14.13" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/johnleider" + }, + "peerDependencies": { + "typescript": ">=4.7", + "vite-plugin-vuetify": ">=1.0.0-alpha.12", + "vue": "^3.3.0", + "vue-i18n": "^9.0.0", + "webpack-plugin-vuetify": ">=2.0.0-alpha.11" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + }, + "vite-plugin-vuetify": { + "optional": true + }, + "vue-i18n": { + "optional": true + }, + "webpack-plugin-vuetify": { + "optional": true + } } }, - "node_modules/webpack/node_modules/watchpack": { - "version": "1.7.5", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", - "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "node_modules/vuetify-nuxt-module": { + "version": "0.7.3", + "resolved": "https://registry.npmjs.org/vuetify-nuxt-module/-/vuetify-nuxt-module-0.7.3.tgz", + "integrity": "sha512-tbPTE71s7QOaHJBiqR+vaIOWYVV2MM0SR+R/JZb/tRe+tjIvehi2yR1es5omYDL0bOUHpK/1rzXRaOu3uc6yTQ==", + "dev": true, "dependencies": { - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - }, - "optionalDependencies": { - "chokidar": "^3.4.1", - "watchpack-chokidar2": "^2.0.1" + "@nuxt/kit": "^3.8.2", + "defu": "^6.1.3", + "destr": "^2.0.2", + "local-pkg": "^0.5.0", + "pathe": "^1.1.1", + "perfect-debounce": "^1.0.0", + "ufo": "^1.3.1", + "unconfig": "^0.3.11", + "vite-plugin-vuetify": "^1.0.2", + "vuetify": "^3.4.6" } }, - "node_modules/webpack/node_modules/y18n": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", - "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true }, - "node_modules/webpackbar": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", - "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", - "dependencies": { - "chalk": "^4.1.0", - "consola": "^2.15.3", - "pretty-time": "^1.1.0", - "std-env": "^3.0.1" - }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, "engines": { - "node": ">=12" - }, - "peerDependencies": { - "webpack": "3 || 4 || 5" + "node": ">=10.13.0" } }, + "node_modules/webpack-virtual-modules": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", + "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==", + "dev": true + }, "node_modules/whatwg-url": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dev": true, "dependencies": { "tr46": "~0.0.3", "webidl-conversions": "^3.0.0" } }, "node_modules/which": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", - "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/which/-/which-3.0.1.tgz", + "integrity": "sha512-XA1b62dzQzLfaEOSQFTCOd5KFf/1VSzZo7/7TUjnya6u0vGGKzU96UQBZTAThCb2j4/xjBAyii1OhRLJEivHvg==", + "dev": true, "dependencies": { "isexe": "^2.0.0" }, "bin": { - "node-which": "bin/node-which" + "node-which": "bin/which.js" }, "engines": { - "node": ">= 8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/which-boxed-primitive": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", - "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, "dependencies": { - "is-bigint": "^1.0.1", - "is-boolean-object": "^1.1.0", - "is-number-object": "^1.0.4", - "is-string": "^1.0.5", - "is-symbol": "^1.0.3" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/which-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", - "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, "dependencies": { - "available-typed-arrays": "^1.0.5", - "call-bind": "^1.0.4", - "for-each": "^0.3.3", - "gopd": "^1.0.1", - "has-tostringtag": "^1.0.0" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dependencies": { - "string-width": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/worker-farm": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", - "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", - "dependencies": { - "errno": "~0.1.7" + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, - "node_modules/wrap-ansi": { + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", "version": "7.0.0", "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, "dependencies": { "ansi-styles": "^4.0.0", "string-width": "^4.1.0", @@ -17127,95 +10455,20 @@ "node_modules/wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" - }, - "node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/write-json-file": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz", - "integrity": "sha512-84+F0igFp2dPD6UpAQjOUX3CdKUOqUzn6oE9sDBNzUXINR5VceJ1rauZltqQB/bcYsx3EpKys4C7/PivKUAiWQ==", - "dependencies": { - "detect-indent": "^5.0.0", - "graceful-fs": "^4.1.2", - "make-dir": "^1.0.0", - "pify": "^3.0.0", - "sort-keys": "^2.0.0", - "write-file-atomic": "^2.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/write-json-file/node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/write-json-file/node_modules/make-dir": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", - "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", - "dependencies": { - "pify": "^3.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/write-json-file/node_modules/pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", - "engines": { - "node": ">=4" - } - }, - "node_modules/write-json-file/node_modules/sort-keys": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", - "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", - "dependencies": { - "is-plain-obj": "^1.0.0" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/write-json-file/node_modules/write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", - "dependencies": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" - } + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true }, "node_modules/ws": { - "version": "7.5.9", - "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", - "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "version": "8.15.1", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.15.1.tgz", + "integrity": "sha512-W5OZiCjXEmk0yZ66ZN82beM5Sz7l7coYxpRkzS+p9PP+ToQry8szKh+61eNktr7EA9DOwvFGhfC605jDHbP6QQ==", + "dev": true, "engines": { - "node": ">=8.3.0" + "node": ">=10.0.0" }, "peerDependencies": { "bufferutil": "^4.0.1", - "utf-8-validate": "^5.0.2" + "utf-8-validate": ">=5.0.2" }, "peerDependenciesMeta": { "bufferutil": { @@ -17226,22 +10479,6 @@ } } }, - "node_modules/xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "engines": { - "node": ">=0.4" - } - }, - "node_modules/xxhashjs": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz", - "integrity": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==", - "dependencies": { - "cuint": "^0.2.2" - } - }, "node_modules/y18n": { "version": "5.0.8", "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", @@ -17254,14 +10491,16 @@ "node_modules/yallist": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", - "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true }, "node_modules/yaml": { - "version": "1.10.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", - "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.4.tgz", + "integrity": "sha512-8aAvwVUSHpfEqTQ4w/KMlf3HcRdt50E5ODIQJBw1fQ5RL34xabzxtUlzTXVqc4rkZsPbvrXKWnABCD7kWSmocA==", + "dev": true, "engines": { - "node": ">= 6" + "node": ">= 14" } }, "node_modules/yargs": { @@ -17291,15 +10530,27 @@ "node": ">=12" } }, - "node_modules/yocto-queue": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", - "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", - "engines": { - "node": ">=10" - }, + "node_modules/zhead": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/zhead/-/zhead-2.2.4.tgz", + "integrity": "sha512-8F0OI5dpWIA5IGG5NHUg9staDwz/ZPxZtvGVf01j7vHqSyZ0raHY+78atOVxRqb73AotX22uV1pXt3gYSstGag==", + "dev": true, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/harlan-zw" + } + }, + "node_modules/zip-stream": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/zip-stream/-/zip-stream-5.0.1.tgz", + "integrity": "sha512-UfZ0oa0C8LI58wJ+moL46BDIMgCQbnsb+2PoiJYtonhBsMh2bq1eRBVkvjfVsqbEHd9/EgKPUuL9saSSsec8OA==", + "dev": true, + "dependencies": { + "archiver-utils": "^4.0.1", + "compress-commons": "^5.0.1", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">= 12.0.0" } } } diff --git a/pvtools/package.json b/pvtools/package.json index ae89921..8f7f48b 100644 --- a/pvtools/package.json +++ b/pvtools/package.json @@ -1,36 +1,24 @@ { - "name": "pvtools", - "version": "1.0.0", + "name": "nuxt-app", "private": true, + "type": "module", "scripts": { - "dev": "nuxt", "build": "nuxt build", - "start": "nuxt start", + "dev": "nuxt dev", "generate": "nuxt generate", - "test": "jest --watch" + "preview": "nuxt preview", + "postinstall": "nuxt prepare" + }, + "devDependencies": { + "@nuxt/devtools": "latest", + "nuxt": "^3.8.2", + "vue": "^3.3.12", + "vue-router": "^4.2.5", + "vuetify-nuxt-module": "^0.7.3" }, "dependencies": { - "@fortawesome/fontawesome-svg-core": "^6.5.1", - "@fortawesome/free-solid-svg-icons": "^6.5.1", - "@fortawesome/vue-fontawesome": "^2.0.10", - "@nuxtjs/axios": "^5.13.6", - "@nuxtjs/google-analytics": "^2.4.0", - "bootstrap": "^4.6.2", - "bootstrap-vue": "^2.21.2", - "chart.js": "^3.9.1", - "core-js": "^3.34.0", - "nuxt": "^2.17.2", + "chart.js": "^4.4.1", "papaparse": "^5.4.1", - "vue": "^2.7.15", - "vue-chartjs": "^4.1.2", - "vue-gtag": "^1.16.1", - "vue-server-renderer": "^2.7.15", - "vue-template-compiler": "^2.7.15", - "webpack": "^4.47.0" - }, - "devDependencies": { - "csv-parse": "^5.5.2", - "jest": "^28.1.3", - "prettier": "^3.1.1" + "vue-chartjs": "^5.3.0" } } diff --git a/pvtools/pages/impress/index.vue b/pvtools/pages/impress.vue similarity index 100% rename from pvtools/pages/impress/index.vue rename to pvtools/pages/impress.vue diff --git a/pvtools/pages/index2.vue b/pvtools/pages/index2.vue new file mode 100644 index 0000000..8399940 --- /dev/null +++ b/pvtools/pages/index2.vue @@ -0,0 +1,1277 @@ + + + + + diff --git a/pvtools/public/favicon.ico b/pvtools/public/favicon.ico new file mode 100644 index 0000000000000000000000000000000000000000..18993ad91cfd43e03b074dd0b5cc3f37ab38e49c GIT binary patch literal 4286 zcmeHLOKuuL5PjK%MHWVi6lD zOGiREbCw`xmFozJ^aNatJY>w+g ze6a2@u~m#^BZm@8wco9#Crlli0uLb^3E$t2-WIc^#(?t)*@`UpuofJ(Uyh@F>b3Ph z$D^m8Xq~pTkGJ4Q`Q2)te3mgkWYZ^Ijq|hkiP^9`De={bQQ%heZC$QU2UpP(-tbl8 zPWD2abEew;oat@w`uP3J^YpsgT%~jT(Dk%oU}sa$7|n6hBjDj`+I;RX(>)%lm_7N{+B7Mu%H?422lE%MBJH!!YTN2oT7xr>>N-8OF$C&qU^ z>vLsa{$0X%q1fjOe3P1mCv#lN{xQ4_*HCSAZjTb1`}mlc+9rl8$B3OP%VT@mch_~G z7Y+4b{r>9e=M+7vSI;BgB?ryZDY4m>&wcHSn81VH1N~`0gvwH{ z8dv#hG|OK`>1;j7tM#B)Z7zDN?{6=dUal}$e= 20 +- NPM + +## Build Setup + +```bash +# install dependencies +$ npm install + +# serve with hot reload at localhost:3000 +$ npm run dev + +# build for production and launch server +$ npm run build +$ npm run start + +# generate static project +$ npm run generate +``` + +For detailed explanation on how things work, check out the [documentation](https://nuxtjs.org). + +## Enviroment variables + +| Variable | Description | Default if not set | +| ------------------- | -------------------------------------------------------------------------------------------------------------------------------------------- | ------------------ | +| APP_URL | Domain name and Port that is used to access the API backend when NODE_ENV='production' | localhost:8082 | +| NODE_ENV | Using the value 'production' changes the API backend URL to https://APP_URL. Attention: in production mode 'https' is always set as protocol | (not set) | +| GOOGLE_ANALYTICS_ID | Google Analytics ID that is embeded in the UI | (not set) | + +## Docker +```bash +# Build image with defaults +$ docker build --tag pvtools-frontend:latest . + +# Build image for production with custom settings +$ docker build --build-arg APP_URL=backend.exmaple.com:8443 --build-arg NODE_ENV=production --build-arg GOOGLE_ANALYTICS_ID=example123 --tag pvtools-frontend:latest . + +# Run image +$ docker run --publish 8080:8080 pvtools-frontend:latest +``` + +## Special Directories + +You can create the following extra directories, some of which have special behaviors. Only `pages` is required; you can delete them if you don't want to use their functionality. + +### `assets` + +The assets directory contains your uncompiled assets such as Stylus or Sass files, images, or fonts. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/assets). + +### `components` + +The components directory contains your Vue.js components. Components make up the different parts of your page and can be reused and imported into your pages, layouts and even other components. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/components). + +### `layouts` + +Layouts are a great help when you want to change the look and feel of your Nuxt app, whether you want to include a sidebar or have distinct layouts for mobile and desktop. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/layouts). + +### `pages` + +This directory contains your application views and routes. Nuxt will read all the `*.vue` files inside this directory and setup Vue Router automatically. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/get-started/routing). + +### `plugins` + +The plugins directory contains JavaScript plugins that you want to run before instantiating the root Vue.js Application. This is the place to add Vue plugins and to inject functions or constants. Every time you need to use `Vue.use()`, you should create a file in `plugins/` and add its path to plugins in `nuxt.config.js`. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/plugins). + +### `static` + +This directory contains your static files. Each file inside this directory is mapped to `/`. + +Example: `/static/robots.txt` is mapped as `/robots.txt`. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/static). + +### `store` + +This directory contains your Vuex store files. Creating a file in this directory automatically activates Vuex. + +More information about the usage of this directory in [the documentation](https://nuxtjs.org/docs/2.x/directory-structure/store). diff --git a/pvtoolsOld/components/BarChart.vue b/pvtoolsOld/components/BarChart.vue new file mode 100644 index 0000000..5a771d8 --- /dev/null +++ b/pvtoolsOld/components/BarChart.vue @@ -0,0 +1,106 @@ + + + diff --git a/pvtoolsOld/components/Chart.vue b/pvtoolsOld/components/Chart.vue new file mode 100644 index 0000000..b9d753f --- /dev/null +++ b/pvtoolsOld/components/Chart.vue @@ -0,0 +1,127 @@ + + + + + diff --git a/pvtoolsOld/components/FAQ.vue b/pvtoolsOld/components/FAQ.vue new file mode 100644 index 0000000..1ad3396 --- /dev/null +++ b/pvtoolsOld/components/FAQ.vue @@ -0,0 +1,150 @@ + + + diff --git a/pvtools/components/NuxtLogo.vue b/pvtoolsOld/components/NuxtLogo.vue similarity index 100% rename from pvtools/components/NuxtLogo.vue rename to pvtoolsOld/components/NuxtLogo.vue diff --git a/pvtools/components/Tutorial.vue b/pvtoolsOld/components/Tutorial.vue similarity index 99% rename from pvtools/components/Tutorial.vue rename to pvtoolsOld/components/Tutorial.vue index c0377a8..0be0195 100644 --- a/pvtools/components/Tutorial.vue +++ b/pvtoolsOld/components/Tutorial.vue @@ -114,9 +114,3 @@ - - diff --git a/pvtoolsOld/functions/ImportTest.csv b/pvtoolsOld/functions/ImportTest.csv new file mode 100644 index 0000000..83d6439 --- /dev/null +++ b/pvtoolsOld/functions/ImportTest.csv @@ -0,0 +1,8761 @@ +"Datetime";"Power" +"20230101:00";"300" +"20230101:01";"256" +"20230101:02";"269" +"20230101:03";"761" +"20230101:04";"847" +"20230101:05";"530" +"20230101:06";"857" +"20230101:07";"512" +"20230101:08";"29" +"20230101:09";"432" +"20230101:10";"624" +"20230101:11";"532" +"20230101:12";"157" +"20230101:13";"90" +"20230101:14";"15" +"20230101:15";"552" +"20230101:16";"855" +"20230101:17";"450" +"20230101:18";"689" +"20230101:19";"323" +"20230101:20";"159" +"20230101:21";"749" +"20230101:22";"197" +"20230101:23";"779" +"20230102:00";"234" +"20230102:01";"153" +"20230102:02";"96" +"20230102:03";"618" +"20230102:04";"442" +"20230102:05";"236" +"20230102:06";"50" +"20230102:07";"585" +"20230102:08";"336" +"20230102:09";"524" +"20230102:10";"105" +"20230102:11";"600" +"20230102:12";"150" +"20230102:13";"883" +"20230102:14";"925" +"20230102:15";"907" +"20230102:16";"664" +"20230102:17";"882" +"20230102:18";"891" +"20230102:19";"554" +"20230102:20";"735" +"20230102:21";"627" +"20230102:22";"97" +"20230102:23";"570" +"20230103:00";"46" +"20230103:01";"312" +"20230103:02";"205" +"20230103:03";"958" +"20230103:04";"742" +"20230103:05";"237" +"20230103:06";"167" +"20230103:07";"496" +"20230103:08";"767" +"20230103:09";"264" +"20230103:10";"880" +"20230103:11";"913" +"20230103:12";"561" +"20230103:13";"143" +"20230103:14";"73" +"20230103:15";"900" +"20230103:16";"986" +"20230103:17";"32" +"20230103:18";"557" +"20230103:19";"513" +"20230103:20";"421" +"20230103:21";"997" +"20230103:22";"10" +"20230103:23";"306" +"20230104:00";"403" +"20230104:01";"309" +"20230104:02";"627" +"20230104:03";"815" +"20230104:04";"97" +"20230104:05";"395" +"20230104:06";"383" +"20230104:07";"779" +"20230104:08";"461" +"20230104:09";"349" +"20230104:10";"266" +"20230104:11";"218" +"20230104:12";"13" +"20230104:13";"767" +"20230104:14";"19" +"20230104:15";"772" +"20230104:16";"421" +"20230104:17";"55" +"20230104:18";"742" +"20230104:19";"261" +"20230104:20";"629" +"20230104:21";"202" +"20230104:22";"964" +"20230104:23";"733" +"20230105:00";"560" +"20230105:01";"124" +"20230105:02";"941" +"20230105:03";"480" +"20230105:04";"214" +"20230105:05";"942" +"20230105:06";"822" +"20230105:07";"904" +"20230105:08";"554" +"20230105:09";"847" +"20230105:10";"419" +"20230105:11";"979" +"20230105:12";"285" +"20230105:13";"937" +"20230105:14";"819" +"20230105:15";"265" +"20230105:16";"378" +"20230105:17";"6" +"20230105:18";"191" +"20230105:19";"199" +"20230105:20";"100" +"20230105:21";"746" +"20230105:22";"403" +"20230105:23";"926" +"20230106:00";"704" +"20230106:01";"227" +"20230106:02";"651" +"20230106:03";"643" +"20230106:04";"126" +"20230106:05";"240" +"20230106:06";"143" +"20230106:07";"281" +"20230106:08";"608" +"20230106:09";"56" +"20230106:10";"436" +"20230106:11";"782" +"20230106:12";"975" +"20230106:13";"356" +"20230106:14";"355" +"20230106:15";"549" +"20230106:16";"936" +"20230106:17";"742" +"20230106:18";"815" +"20230106:19";"515" +"20230106:20";"805" +"20230106:21";"94" +"20230106:22";"996" +"20230106:23";"650" +"20230107:00";"480" +"20230107:01";"367" +"20230107:02";"78" +"20230107:03";"520" +"20230107:04";"17" +"20230107:05";"576" +"20230107:06";"680" +"20230107:07";"634" +"20230107:08";"4" +"20230107:09";"502" +"20230107:10";"210" +"20230107:11";"819" +"20230107:12";"267" +"20230107:13";"416" +"20230107:14";"876" +"20230107:15";"191" +"20230107:16";"311" +"20230107:17";"494" +"20230107:18";"247" +"20230107:19";"688" +"20230107:20";"532" +"20230107:21";"830" +"20230107:22";"155" +"20230107:23";"795" +"20230108:00";"829" +"20230108:01";"237" +"20230108:02";"430" +"20230108:03";"443" +"20230108:04";"910" +"20230108:05";"425" +"20230108:06";"714" +"20230108:07";"620" +"20230108:08";"210" +"20230108:09";"784" +"20230108:10";"634" +"20230108:11";"519" +"20230108:12";"27" +"20230108:13";"241" +"20230108:14";"321" +"20230108:15";"577" +"20230108:16";"363" +"20230108:17";"486" +"20230108:18";"378" +"20230108:19";"308" +"20230108:20";"58" +"20230108:21";"253" +"20230108:22";"552" +"20230108:23";"393" +"20230109:00";"44" +"20230109:01";"720" +"20230109:02";"928" +"20230109:03";"623" +"20230109:04";"979" +"20230109:05";"230" +"20230109:06";"561" +"20230109:07";"371" +"20230109:08";"926" +"20230109:09";"232" +"20230109:10";"71" +"20230109:11";"912" +"20230109:12";"405" +"20230109:13";"777" +"20230109:14";"265" +"20230109:15";"336" +"20230109:16";"790" +"20230109:17";"474" +"20230109:18";"771" +"20230109:19";"421" +"20230109:20";"729" +"20230109:21";"643" +"20230109:22";"570" +"20230109:23";"931" +"20230110:00";"548" +"20230110:01";"923" +"20230110:02";"383" +"20230110:03";"261" +"20230110:04";"233" +"20230110:05";"347" +"20230110:06";"817" +"20230110:07";"734" +"20230110:08";"136" +"20230110:09";"587" +"20230110:10";"580" +"20230110:11";"214" +"20230110:12";"377" +"20230110:13";"902" +"20230110:14";"894" +"20230110:15";"10" +"20230110:16";"975" +"20230110:17";"53" +"20230110:18";"102" +"20230110:19";"245" +"20230110:20";"617" +"20230110:21";"898" +"20230110:22";"844" +"20230110:23";"808" +"20230111:00";"770" +"20230111:01";"646" +"20230111:02";"804" +"20230111:03";"705" +"20230111:04";"952" +"20230111:05";"26" +"20230111:06";"785" +"20230111:07";"522" +"20230111:08";"595" +"20230111:09";"782" +"20230111:10";"217" +"20230111:11";"563" +"20230111:12";"847" +"20230111:13";"140" +"20230111:14";"966" +"20230111:15";"655" +"20230111:16";"595" +"20230111:17";"799" +"20230111:18";"782" +"20230111:19";"615" +"20230111:20";"93" +"20230111:21";"707" +"20230111:22";"366" +"20230111:23";"322" +"20230112:00";"541" +"20230112:01";"441" +"20230112:02";"876" +"20230112:03";"172" +"20230112:04";"881" +"20230112:05";"367" +"20230112:06";"651" +"20230112:07";"986" +"20230112:08";"39" +"20230112:09";"455" +"20230112:10";"209" +"20230112:11";"989" +"20230112:12";"516" +"20230112:13";"72" +"20230112:14";"809" +"20230112:15";"599" +"20230112:16";"644" +"20230112:17";"295" +"20230112:18";"362" +"20230112:19";"760" +"20230112:20";"897" +"20230112:21";"215" +"20230112:22";"386" +"20230112:23";"470" +"20230113:00";"714" +"20230113:01";"342" +"20230113:02";"796" +"20230113:03";"812" +"20230113:04";"94" +"20230113:05";"590" +"20230113:06";"328" +"20230113:07";"761" +"20230113:08";"874" +"20230113:09";"363" +"20230113:10";"482" +"20230113:11";"325" +"20230113:12";"19" +"20230113:13";"185" +"20230113:14";"309" +"20230113:15";"282" +"20230113:16";"608" +"20230113:17";"18" +"20230113:18";"146" +"20230113:19";"440" +"20230113:20";"465" +"20230113:21";"451" +"20230113:22";"807" +"20230113:23";"471" +"20230114:00";"265" +"20230114:01";"681" +"20230114:02";"854" +"20230114:03";"355" +"20230114:04";"58" +"20230114:05";"20" +"20230114:06";"178" +"20230114:07";"515" +"20230114:08";"512" +"20230114:09";"47" +"20230114:10";"656" +"20230114:11";"739" +"20230114:12";"14" +"20230114:13";"160" +"20230114:14";"887" +"20230114:15";"773" +"20230114:16";"151" +"20230114:17";"443" +"20230114:18";"29" +"20230114:19";"838" +"20230114:20";"189" +"20230114:21";"958" +"20230114:22";"976" +"20230114:23";"830" +"20230115:00";"924" +"20230115:01";"588" +"20230115:02";"528" +"20230115:03";"491" +"20230115:04";"821" +"20230115:05";"974" +"20230115:06";"650" +"20230115:07";"334" +"20230115:08";"549" +"20230115:09";"303" +"20230115:10";"39" +"20230115:11";"142" +"20230115:12";"562" +"20230115:13";"391" +"20230115:14";"834" +"20230115:15";"17" +"20230115:16";"980" +"20230115:17";"761" +"20230115:18";"379" +"20230115:19";"130" +"20230115:20";"553" +"20230115:21";"578" +"20230115:22";"242" +"20230115:23";"534" +"20230116:00";"656" +"20230116:01";"921" +"20230116:02";"743" +"20230116:03";"794" +"20230116:04";"445" +"20230116:05";"847" +"20230116:06";"584" +"20230116:07";"583" +"20230116:08";"243" +"20230116:09";"716" +"20230116:10";"140" +"20230116:11";"170" +"20230116:12";"163" +"20230116:13";"349" +"20230116:14";"863" +"20230116:15";"604" +"20230116:16";"327" +"20230116:17";"654" +"20230116:18";"806" +"20230116:19";"941" +"20230116:20";"7" +"20230116:21";"329" +"20230116:22";"646" +"20230116:23";"517" +"20230117:00";"107" +"20230117:01";"921" +"20230117:02";"842" +"20230117:03";"628" +"20230117:04";"696" +"20230117:05";"456" +"20230117:06";"340" +"20230117:07";"852" +"20230117:08";"775" +"20230117:09";"144" +"20230117:10";"728" +"20230117:11";"514" +"20230117:12";"358" +"20230117:13";"386" +"20230117:14";"87" +"20230117:15";"93" +"20230117:16";"947" +"20230117:17";"644" +"20230117:18";"888" +"20230117:19";"804" +"20230117:20";"45" +"20230117:21";"337" +"20230117:22";"709" +"20230117:23";"163" +"20230118:00";"300" +"20230118:01";"256" +"20230118:02";"759" +"20230118:03";"719" +"20230118:04";"316" +"20230118:05";"447" +"20230118:06";"260" +"20230118:07";"100" +"20230118:08";"366" +"20230118:09";"272" +"20230118:10";"379" +"20230118:11";"516" +"20230118:12";"43" +"20230118:13";"397" +"20230118:14";"234" +"20230118:15";"989" +"20230118:16";"304" +"20230118:17";"139" +"20230118:18";"440" +"20230118:19";"947" +"20230118:20";"319" +"20230118:21";"359" +"20230118:22";"957" +"20230118:23";"317" +"20230119:00";"312" +"20230119:01";"389" +"20230119:02";"215" +"20230119:03";"584" +"20230119:04";"699" +"20230119:05";"528" +"20230119:06";"622" +"20230119:07";"281" +"20230119:08";"382" +"20230119:09";"635" +"20230119:10";"384" +"20230119:11";"905" +"20230119:12";"745" +"20230119:13";"904" +"20230119:14";"16" +"20230119:15";"545" +"20230119:16";"406" +"20230119:17";"670" +"20230119:18";"872" +"20230119:19";"6" +"20230119:20";"979" +"20230119:21";"906" +"20230119:22";"310" +"20230119:23";"807" +"20230120:00";"667" +"20230120:01";"479" +"20230120:02";"694" +"20230120:03";"562" +"20230120:04";"92" +"20230120:05";"527" +"20230120:06";"794" +"20230120:07";"117" +"20230120:08";"54" +"20230120:09";"35" +"20230120:10";"256" +"20230120:11";"239" +"20230120:12";"176" +"20230120:13";"560" +"20230120:14";"287" +"20230120:15";"586" +"20230120:16";"146" +"20230120:17";"819" +"20230120:18";"678" +"20230120:19";"875" +"20230120:20";"747" +"20230120:21";"399" +"20230120:22";"328" +"20230120:23";"977" +"20230121:00";"768" +"20230121:01";"973" +"20230121:02";"929" +"20230121:03";"887" +"20230121:04";"126" +"20230121:05";"520" +"20230121:06";"358" +"20230121:07";"415" +"20230121:08";"272" +"20230121:09";"672" +"20230121:10";"288" +"20230121:11";"621" +"20230121:12";"799" +"20230121:13";"319" +"20230121:14";"863" +"20230121:15";"552" +"20230121:16";"872" +"20230121:17";"188" +"20230121:18";"860" +"20230121:19";"21" +"20230121:20";"331" +"20230121:21";"950" +"20230121:22";"881" +"20230121:23";"788" +"20230122:00";"307" +"20230122:01";"511" +"20230122:02";"11" +"20230122:03";"619" +"20230122:04";"112" +"20230122:05";"510" +"20230122:06";"182" +"20230122:07";"90" +"20230122:08";"999" +"20230122:09";"17" +"20230122:10";"423" +"20230122:11";"153" +"20230122:12";"799" +"20230122:13";"513" +"20230122:14";"692" +"20230122:15";"60" +"20230122:16";"837" +"20230122:17";"375" +"20230122:18";"821" +"20230122:19";"872" +"20230122:20";"549" +"20230122:21";"721" +"20230122:22";"685" +"20230122:23";"939" +"20230123:00";"787" +"20230123:01";"991" +"20230123:02";"210" +"20230123:03";"613" +"20230123:04";"445" +"20230123:05";"190" +"20230123:06";"945" +"20230123:07";"149" +"20230123:08";"2" +"20230123:09";"62" +"20230123:10";"727" +"20230123:11";"875" +"20230123:12";"787" +"20230123:13";"58" +"20230123:14";"13" +"20230123:15";"927" +"20230123:16";"666" +"20230123:17";"325" +"20230123:18";"559" +"20230123:19";"590" +"20230123:20";"159" +"20230123:21";"662" +"20230123:22";"299" +"20230123:23";"50" +"20230124:00";"581" +"20230124:01";"265" +"20230124:02";"827" +"20230124:03";"290" +"20230124:04";"120" +"20230124:05";"796" +"20230124:06";"177" +"20230124:07";"352" +"20230124:08";"332" +"20230124:09";"858" +"20230124:10";"202" +"20230124:11";"553" +"20230124:12";"146" +"20230124:13";"611" +"20230124:14";"713" +"20230124:15";"170" +"20230124:16";"239" +"20230124:17";"898" +"20230124:18";"290" +"20230124:19";"130" +"20230124:20";"278" +"20230124:21";"643" +"20230124:22";"540" +"20230124:23";"867" +"20230125:00";"54" +"20230125:01";"74" +"20230125:02";"202" +"20230125:03";"139" +"20230125:04";"196" +"20230125:05";"625" +"20230125:06";"926" +"20230125:07";"737" +"20230125:08";"114" +"20230125:09";"450" +"20230125:10";"464" +"20230125:11";"148" +"20230125:12";"930" +"20230125:13";"471" +"20230125:14";"346" +"20230125:15";"578" +"20230125:16";"371" +"20230125:17";"452" +"20230125:18";"392" +"20230125:19";"250" +"20230125:20";"197" +"20230125:21";"55" +"20230125:22";"535" +"20230125:23";"485" +"20230126:00";"45" +"20230126:01";"961" +"20230126:02";"257" +"20230126:03";"844" +"20230126:04";"30" +"20230126:05";"470" +"20230126:06";"274" +"20230126:07";"849" +"20230126:08";"655" +"20230126:09";"319" +"20230126:10";"723" +"20230126:11";"27" +"20230126:12";"535" +"20230126:13";"394" +"20230126:14";"831" +"20230126:15";"938" +"20230126:16";"410" +"20230126:17";"738" +"20230126:18";"352" +"20230126:19";"518" +"20230126:20";"23" +"20230126:21";"544" +"20230126:22";"967" +"20230126:23";"715" +"20230127:00";"29" +"20230127:01";"275" +"20230127:02";"582" +"20230127:03";"797" +"20230127:04";"788" +"20230127:05";"422" +"20230127:06";"962" +"20230127:07";"964" +"20230127:08";"88" +"20230127:09";"47" +"20230127:10";"847" +"20230127:11";"964" +"20230127:12";"392" +"20230127:13";"69" +"20230127:14";"62" +"20230127:15";"26" +"20230127:16";"203" +"20230127:17";"473" +"20230127:18";"216" +"20230127:19";"842" +"20230127:20";"685" +"20230127:21";"272" +"20230127:22";"976" +"20230127:23";"290" +"20230128:00";"831" +"20230128:01";"25" +"20230128:02";"383" +"20230128:03";"229" +"20230128:04";"521" +"20230128:05";"79" +"20230128:06";"802" +"20230128:07";"951" +"20230128:08";"296" +"20230128:09";"149" +"20230128:10";"629" +"20230128:11";"193" +"20230128:12";"595" +"20230128:13";"876" +"20230128:14";"939" +"20230128:15";"673" +"20230128:16";"104" +"20230128:17";"859" +"20230128:18";"361" +"20230128:19";"972" +"20230128:20";"174" +"20230128:21";"574" +"20230128:22";"44" +"20230128:23";"758" +"20230129:00";"197" +"20230129:01";"904" +"20230129:02";"975" +"20230129:03";"218" +"20230129:04";"464" +"20230129:05";"974" +"20230129:06";"35" +"20230129:07";"640" +"20230129:08";"928" +"20230129:09";"656" +"20230129:10";"648" +"20230129:11";"101" +"20230129:12";"781" +"20230129:13";"265" +"20230129:14";"737" +"20230129:15";"11" +"20230129:16";"949" +"20230129:17";"642" +"20230129:18";"254" +"20230129:19";"819" +"20230129:20";"628" +"20230129:21";"416" +"20230129:22";"892" +"20230129:23";"945" +"20230130:00";"921" +"20230130:01";"259" +"20230130:02";"815" +"20230130:03";"723" +"20230130:04";"534" +"20230130:05";"381" +"20230130:06";"936" +"20230130:07";"149" +"20230130:08";"268" +"20230130:09";"346" +"20230130:10";"461" +"20230130:11";"262" +"20230130:12";"34" +"20230130:13";"406" +"20230130:14";"408" +"20230130:15";"725" +"20230130:16";"474" +"20230130:17";"885" +"20230130:18";"263" +"20230130:19";"945" +"20230130:20";"28" +"20230130:21";"944" +"20230130:22";"652" +"20230130:23";"208" +"20230131:00";"595" +"20230131:01";"267" +"20230131:02";"824" +"20230131:03";"508" +"20230131:04";"320" +"20230131:05";"438" +"20230131:06";"66" +"20230131:07";"271" +"20230131:08";"565" +"20230131:09";"613" +"20230131:10";"475" +"20230131:11";"255" +"20230131:12";"962" +"20230131:13";"694" +"20230131:14";"601" +"20230131:15";"492" +"20230131:16";"659" +"20230131:17";"194" +"20230131:18";"517" +"20230131:19";"901" +"20230131:20";"649" +"20230131:21";"477" +"20230131:22";"555" +"20230131:23";"621" +"20230201:00";"753" +"20230201:01";"647" +"20230201:02";"384" +"20230201:03";"904" +"20230201:04";"254" +"20230201:05";"3" +"20230201:06";"156" +"20230201:07";"181" +"20230201:08";"630" +"20230201:09";"275" +"20230201:10";"860" +"20230201:11";"132" +"20230201:12";"756" +"20230201:13";"775" +"20230201:14";"526" +"20230201:15";"861" +"20230201:16";"995" +"20230201:17";"586" +"20230201:18";"175" +"20230201:19";"479" +"20230201:20";"104" +"20230201:21";"891" +"20230201:22";"163" +"20230201:23";"615" +"20230202:00";"388" +"20230202:01";"157" +"20230202:02";"619" +"20230202:03";"444" +"20230202:04";"38" +"20230202:05";"980" +"20230202:06";"921" +"20230202:07";"926" +"20230202:08";"239" +"20230202:09";"174" +"20230202:10";"163" +"20230202:11";"517" +"20230202:12";"905" +"20230202:13";"365" +"20230202:14";"948" +"20230202:15";"311" +"20230202:16";"187" +"20230202:17";"492" +"20230202:18";"175" +"20230202:19";"202" +"20230202:20";"506" +"20230202:21";"660" +"20230202:22";"872" +"20230202:23";"783" +"20230203:00";"855" +"20230203:01";"153" +"20230203:02";"514" +"20230203:03";"408" +"20230203:04";"15" +"20230203:05";"839" +"20230203:06";"629" +"20230203:07";"61" +"20230203:08";"429" +"20230203:09";"560" +"20230203:10";"991" +"20230203:11";"417" +"20230203:12";"232" +"20230203:13";"784" +"20230203:14";"955" +"20230203:15";"180" +"20230203:16";"519" +"20230203:17";"870" +"20230203:18";"491" +"20230203:19";"727" +"20230203:20";"498" +"20230203:21";"275" +"20230203:22";"520" +"20230203:23";"676" +"20230204:00";"527" +"20230204:01";"154" +"20230204:02";"553" +"20230204:03";"248" +"20230204:04";"387" +"20230204:05";"110" +"20230204:06";"911" +"20230204:07";"742" +"20230204:08";"434" +"20230204:09";"247" +"20230204:10";"271" +"20230204:11";"668" +"20230204:12";"288" +"20230204:13";"890" +"20230204:14";"602" +"20230204:15";"692" +"20230204:16";"982" +"20230204:17";"493" +"20230204:18";"205" +"20230204:19";"766" +"20230204:20";"635" +"20230204:21";"593" +"20230204:22";"872" +"20230204:23";"29" +"20230205:00";"579" +"20230205:01";"158" +"20230205:02";"971" +"20230205:03";"210" +"20230205:04";"415" +"20230205:05";"739" +"20230205:06";"591" +"20230205:07";"380" +"20230205:08";"679" +"20230205:09";"644" +"20230205:10";"822" +"20230205:11";"529" +"20230205:12";"382" +"20230205:13";"204" +"20230205:14";"26" +"20230205:15";"615" +"20230205:16";"783" +"20230205:17";"169" +"20230205:18";"327" +"20230205:19";"872" +"20230205:20";"712" +"20230205:21";"587" +"20230205:22";"272" +"20230205:23";"32" +"20230206:00";"615" +"20230206:01";"748" +"20230206:02";"964" +"20230206:03";"524" +"20230206:04";"891" +"20230206:05";"764" +"20230206:06";"413" +"20230206:07";"617" +"20230206:08";"858" +"20230206:09";"694" +"20230206:10";"951" +"20230206:11";"208" +"20230206:12";"908" +"20230206:13";"589" +"20230206:14";"531" +"20230206:15";"798" +"20230206:16";"749" +"20230206:17";"454" +"20230206:18";"974" +"20230206:19";"491" +"20230206:20";"528" +"20230206:21";"976" +"20230206:22";"336" +"20230206:23";"878" +"20230207:00";"312" +"20230207:01";"87" +"20230207:02";"574" +"20230207:03";"536" +"20230207:04";"541" +"20230207:05";"762" +"20230207:06";"202" +"20230207:07";"257" +"20230207:08";"760" +"20230207:09";"148" +"20230207:10";"904" +"20230207:11";"114" +"20230207:12";"997" +"20230207:13";"995" +"20230207:14";"472" +"20230207:15";"701" +"20230207:16";"736" +"20230207:17";"291" +"20230207:18";"155" +"20230207:19";"522" +"20230207:20";"797" +"20230207:21";"861" +"20230207:22";"23" +"20230207:23";"63" +"20230208:00";"513" +"20230208:01";"274" +"20230208:02";"687" +"20230208:03";"720" +"20230208:04";"463" +"20230208:05";"975" +"20230208:06";"403" +"20230208:07";"670" +"20230208:08";"264" +"20230208:09";"628" +"20230208:10";"993" +"20230208:11";"3" +"20230208:12";"515" +"20230208:13";"831" +"20230208:14";"904" +"20230208:15";"30" +"20230208:16";"639" +"20230208:17";"73" +"20230208:18";"632" +"20230208:19";"723" +"20230208:20";"163" +"20230208:21";"222" +"20230208:22";"334" +"20230208:23";"869" +"20230209:00";"975" +"20230209:01";"434" +"20230209:02";"148" +"20230209:03";"123" +"20230209:04";"701" +"20230209:05";"205" +"20230209:06";"221" +"20230209:07";"491" +"20230209:08";"56" +"20230209:09";"606" +"20230209:10";"128" +"20230209:11";"396" +"20230209:12";"333" +"20230209:13";"719" +"20230209:14";"711" +"20230209:15";"629" +"20230209:16";"310" +"20230209:17";"172" +"20230209:18";"877" +"20230209:19";"900" +"20230209:20";"817" +"20230209:21";"489" +"20230209:22";"340" +"20230209:23";"89" +"20230210:00";"210" +"20230210:01";"582" +"20230210:02";"445" +"20230210:03";"342" +"20230210:04";"464" +"20230210:05";"713" +"20230210:06";"174" +"20230210:07";"17" +"20230210:08";"419" +"20230210:09";"350" +"20230210:10";"949" +"20230210:11";"744" +"20230210:12";"363" +"20230210:13";"809" +"20230210:14";"988" +"20230210:15";"249" +"20230210:16";"232" +"20230210:17";"923" +"20230210:18";"64" +"20230210:19";"843" +"20230210:20";"564" +"20230210:21";"298" +"20230210:22";"187" +"20230210:23";"57" +"20230211:00";"204" +"20230211:01";"72" +"20230211:02";"64" +"20230211:03";"406" +"20230211:04";"619" +"20230211:05";"755" +"20230211:06";"913" +"20230211:07";"556" +"20230211:08";"604" +"20230211:09";"372" +"20230211:10";"176" +"20230211:11";"290" +"20230211:12";"66" +"20230211:13";"985" +"20230211:14";"976" +"20230211:15";"494" +"20230211:16";"28" +"20230211:17";"113" +"20230211:18";"607" +"20230211:19";"476" +"20230211:20";"127" +"20230211:21";"668" +"20230211:22";"764" +"20230211:23";"971" +"20230212:00";"469" +"20230212:01";"190" +"20230212:02";"923" +"20230212:03";"863" +"20230212:04";"245" +"20230212:05";"381" +"20230212:06";"774" +"20230212:07";"594" +"20230212:08";"885" +"20230212:09";"880" +"20230212:10";"184" +"20230212:11";"12" +"20230212:12";"399" +"20230212:13";"453" +"20230212:14";"35" +"20230212:15";"842" +"20230212:16";"584" +"20230212:17";"170" +"20230212:18";"512" +"20230212:19";"151" +"20230212:20";"26" +"20230212:21";"792" +"20230212:22";"930" +"20230212:23";"43" +"20230213:00";"617" +"20230213:01";"343" +"20230213:02";"793" +"20230213:03";"690" +"20230213:04";"671" +"20230213:05";"290" +"20230213:06";"797" +"20230213:07";"789" +"20230213:08";"642" +"20230213:09";"76" +"20230213:10";"89" +"20230213:11";"73" +"20230213:12";"697" +"20230213:13";"966" +"20230213:14";"809" +"20230213:15";"839" +"20230213:16";"442" +"20230213:17";"17" +"20230213:18";"880" +"20230213:19";"402" +"20230213:20";"486" +"20230213:21";"573" +"20230213:22";"6" +"20230213:23";"601" +"20230214:00";"23" +"20230214:01";"800" +"20230214:02";"424" +"20230214:03";"960" +"20230214:04";"904" +"20230214:05";"960" +"20230214:06";"144" +"20230214:07";"212" +"20230214:08";"828" +"20230214:09";"690" +"20230214:10";"934" +"20230214:11";"410" +"20230214:12";"615" +"20230214:13";"629" +"20230214:14";"6" +"20230214:15";"358" +"20230214:16";"209" +"20230214:17";"620" +"20230214:18";"128" +"20230214:19";"225" +"20230214:20";"297" +"20230214:21";"653" +"20230214:22";"783" +"20230214:23";"882" +"20230215:00";"924" +"20230215:01";"179" +"20230215:02";"169" +"20230215:03";"342" +"20230215:04";"613" +"20230215:05";"439" +"20230215:06";"262" +"20230215:07";"252" +"20230215:08";"837" +"20230215:09";"878" +"20230215:10";"208" +"20230215:11";"580" +"20230215:12";"598" +"20230215:13";"804" +"20230215:14";"318" +"20230215:15";"299" +"20230215:16";"706" +"20230215:17";"393" +"20230215:18";"961" +"20230215:19";"780" +"20230215:20";"615" +"20230215:21";"551" +"20230215:22";"843" +"20230215:23";"302" +"20230216:00";"631" +"20230216:01";"737" +"20230216:02";"107" +"20230216:03";"251" +"20230216:04";"622" +"20230216:05";"77" +"20230216:06";"154" +"20230216:07";"212" +"20230216:08";"956" +"20230216:09";"309" +"20230216:10";"915" +"20230216:11";"834" +"20230216:12";"451" +"20230216:13";"166" +"20230216:14";"51" +"20230216:15";"866" +"20230216:16";"930" +"20230216:17";"799" +"20230216:18";"755" +"20230216:19";"431" +"20230216:20";"139" +"20230216:21";"173" +"20230216:22";"591" +"20230216:23";"957" +"20230217:00";"461" +"20230217:01";"144" +"20230217:02";"996" +"20230217:03";"459" +"20230217:04";"914" +"20230217:05";"407" +"20230217:06";"923" +"20230217:07";"558" +"20230217:08";"742" +"20230217:09";"416" +"20230217:10";"455" +"20230217:11";"297" +"20230217:12";"962" +"20230217:13";"715" +"20230217:14";"651" +"20230217:15";"945" +"20230217:16";"426" +"20230217:17";"912" +"20230217:18";"556" +"20230217:19";"512" +"20230217:20";"547" +"20230217:21";"299" +"20230217:22";"211" +"20230217:23";"323" +"20230218:00";"947" +"20230218:01";"409" +"20230218:02";"467" +"20230218:03";"101" +"20230218:04";"865" +"20230218:05";"575" +"20230218:06";"846" +"20230218:07";"458" +"20230218:08";"43" +"20230218:09";"980" +"20230218:10";"398" +"20230218:11";"637" +"20230218:12";"999" +"20230218:13";"984" +"20230218:14";"389" +"20230218:15";"250" +"20230218:16";"58" +"20230218:17";"53" +"20230218:18";"511" +"20230218:19";"303" +"20230218:20";"248" +"20230218:21";"727" +"20230218:22";"837" +"20230218:23";"751" +"20230219:00";"22" +"20230219:01";"654" +"20230219:02";"120" +"20230219:03";"481" +"20230219:04";"781" +"20230219:05";"364" +"20230219:06";"242" +"20230219:07";"147" +"20230219:08";"41" +"20230219:09";"297" +"20230219:10";"116" +"20230219:11";"499" +"20230219:12";"763" +"20230219:13";"160" +"20230219:14";"300" +"20230219:15";"464" +"20230219:16";"386" +"20230219:17";"295" +"20230219:18";"315" +"20230219:19";"765" +"20230219:20";"35" +"20230219:21";"680" +"20230219:22";"86" +"20230219:23";"941" +"20230220:00";"120" +"20230220:01";"54" +"20230220:02";"22" +"20230220:03";"789" +"20230220:04";"357" +"20230220:05";"353" +"20230220:06";"221" +"20230220:07";"991" +"20230220:08";"944" +"20230220:09";"728" +"20230220:10";"288" +"20230220:11";"194" +"20230220:12";"296" +"20230220:13";"207" +"20230220:14";"921" +"20230220:15";"214" +"20230220:16";"740" +"20230220:17";"219" +"20230220:18";"407" +"20230220:19";"810" +"20230220:20";"23" +"20230220:21";"598" +"20230220:22";"770" +"20230220:23";"900" +"20230221:00";"887" +"20230221:01";"450" +"20230221:02";"97" +"20230221:03";"723" +"20230221:04";"818" +"20230221:05";"947" +"20230221:06";"755" +"20230221:07";"375" +"20230221:08";"902" +"20230221:09";"787" +"20230221:10";"72" +"20230221:11";"95" +"20230221:12";"456" +"20230221:13";"410" +"20230221:14";"986" +"20230221:15";"238" +"20230221:16";"686" +"20230221:17";"891" +"20230221:18";"374" +"20230221:19";"223" +"20230221:20";"400" +"20230221:21";"742" +"20230221:22";"332" +"20230221:23";"640" +"20230222:00";"104" +"20230222:01";"231" +"20230222:02";"455" +"20230222:03";"603" +"20230222:04";"694" +"20230222:05";"59" +"20230222:06";"577" +"20230222:07";"289" +"20230222:08";"142" +"20230222:09";"123" +"20230222:10";"853" +"20230222:11";"280" +"20230222:12";"532" +"20230222:13";"54" +"20230222:14";"950" +"20230222:15";"253" +"20230222:16";"10" +"20230222:17";"336" +"20230222:18";"863" +"20230222:19";"811" +"20230222:20";"296" +"20230222:21";"182" +"20230222:22";"794" +"20230222:23";"820" +"20230223:00";"608" +"20230223:01";"603" +"20230223:02";"220" +"20230223:03";"699" +"20230223:04";"649" +"20230223:05";"8" +"20230223:06";"548" +"20230223:07";"256" +"20230223:08";"325" +"20230223:09";"949" +"20230223:10";"836" +"20230223:11";"629" +"20230223:12";"674" +"20230223:13";"882" +"20230223:14";"918" +"20230223:15";"397" +"20230223:16";"532" +"20230223:17";"541" +"20230223:18";"612" +"20230223:19";"552" +"20230223:20";"127" +"20230223:21";"355" +"20230223:22";"214" +"20230223:23";"514" +"20230224:00";"150" +"20230224:01";"447" +"20230224:02";"342" +"20230224:03";"701" +"20230224:04";"871" +"20230224:05";"206" +"20230224:06";"583" +"20230224:07";"916" +"20230224:08";"70" +"20230224:09";"904" +"20230224:10";"735" +"20230224:11";"237" +"20230224:12";"966" +"20230224:13";"163" +"20230224:14";"546" +"20230224:15";"140" +"20230224:16";"376" +"20230224:17";"230" +"20230224:18";"679" +"20230224:19";"360" +"20230224:20";"565" +"20230224:21";"653" +"20230224:22";"998" +"20230224:23";"592" +"20230225:00";"817" +"20230225:01";"531" +"20230225:02";"441" +"20230225:03";"483" +"20230225:04";"914" +"20230225:05";"780" +"20230225:06";"957" +"20230225:07";"105" +"20230225:08";"813" +"20230225:09";"881" +"20230225:10";"487" +"20230225:11";"307" +"20230225:12";"736" +"20230225:13";"43" +"20230225:14";"774" +"20230225:15";"390" +"20230225:16";"379" +"20230225:17";"404" +"20230225:18";"145" +"20230225:19";"382" +"20230225:20";"942" +"20230225:21";"505" +"20230225:22";"255" +"20230225:23";"603" +"20230226:00";"707" +"20230226:01";"379" +"20230226:02";"318" +"20230226:03";"291" +"20230226:04";"58" +"20230226:05";"250" +"20230226:06";"502" +"20230226:07";"134" +"20230226:08";"482" +"20230226:09";"14" +"20230226:10";"389" +"20230226:11";"752" +"20230226:12";"748" +"20230226:13";"456" +"20230226:14";"375" +"20230226:15";"525" +"20230226:16";"482" +"20230226:17";"191" +"20230226:18";"247" +"20230226:19";"912" +"20230226:20";"884" +"20230226:21";"856" +"20230226:22";"917" +"20230226:23";"841" +"20230227:00";"316" +"20230227:01";"483" +"20230227:02";"791" +"20230227:03";"285" +"20230227:04";"670" +"20230227:05";"314" +"20230227:06";"227" +"20230227:07";"283" +"20230227:08";"502" +"20230227:09";"168" +"20230227:10";"516" +"20230227:11";"398" +"20230227:12";"110" +"20230227:13";"926" +"20230227:14";"240" +"20230227:15";"69" +"20230227:16";"350" +"20230227:17";"727" +"20230227:18";"694" +"20230227:19";"133" +"20230227:20";"370" +"20230227:21";"67" +"20230227:22";"59" +"20230227:23";"108" +"20230228:00";"534" +"20230228:01";"474" +"20230228:02";"58" +"20230228:03";"343" +"20230228:04";"922" +"20230228:05";"906" +"20230228:06";"866" +"20230228:07";"658" +"20230228:08";"446" +"20230228:09";"506" +"20230228:10";"639" +"20230228:11";"594" +"20230228:12";"161" +"20230228:13";"12" +"20230228:14";"766" +"20230228:15";"517" +"20230228:16";"250" +"20230228:17";"878" +"20230228:18";"793" +"20230228:19";"558" +"20230228:20";"454" +"20230228:21";"213" +"20230228:22";"756" +"20230228:23";"139" +"20230301:00";"198" +"20230301:01";"910" +"20230301:02";"888" +"20230301:03";"407" +"20230301:04";"144" +"20230301:05";"58" +"20230301:06";"133" +"20230301:07";"972" +"20230301:08";"819" +"20230301:09";"842" +"20230301:10";"851" +"20230301:11";"803" +"20230301:12";"952" +"20230301:13";"380" +"20230301:14";"80" +"20230301:15";"634" +"20230301:16";"11" +"20230301:17";"512" +"20230301:18";"384" +"20230301:19";"358" +"20230301:20";"704" +"20230301:21";"671" +"20230301:22";"178" +"20230301:23";"328" +"20230302:00";"600" +"20230302:01";"278" +"20230302:02";"547" +"20230302:03";"20" +"20230302:04";"982" +"20230302:05";"856" +"20230302:06";"867" +"20230302:07";"21" +"20230302:08";"754" +"20230302:09";"647" +"20230302:10";"168" +"20230302:11";"90" +"20230302:12";"230" +"20230302:13";"895" +"20230302:14";"104" +"20230302:15";"896" +"20230302:16";"82" +"20230302:17";"238" +"20230302:18";"296" +"20230302:19";"978" +"20230302:20";"741" +"20230302:21";"458" +"20230302:22";"607" +"20230302:23";"71" +"20230303:00";"501" +"20230303:01";"650" +"20230303:02";"36" +"20230303:03";"974" +"20230303:04";"448" +"20230303:05";"581" +"20230303:06";"204" +"20230303:07";"815" +"20230303:08";"804" +"20230303:09";"274" +"20230303:10";"622" +"20230303:11";"627" +"20230303:12";"11" +"20230303:13";"952" +"20230303:14";"549" +"20230303:15";"239" +"20230303:16";"554" +"20230303:17";"224" +"20230303:18";"181" +"20230303:19";"941" +"20230303:20";"433" +"20230303:21";"713" +"20230303:22";"233" +"20230303:23";"86" +"20230304:00";"790" +"20230304:01";"877" +"20230304:02";"361" +"20230304:03";"87" +"20230304:04";"818" +"20230304:05";"25" +"20230304:06";"179" +"20230304:07";"450" +"20230304:08";"427" +"20230304:09";"590" +"20230304:10";"598" +"20230304:11";"994" +"20230304:12";"44" +"20230304:13";"783" +"20230304:14";"109" +"20230304:15";"248" +"20230304:16";"829" +"20230304:17";"239" +"20230304:18";"75" +"20230304:19";"255" +"20230304:20";"636" +"20230304:21";"515" +"20230304:22";"542" +"20230304:23";"329" +"20230305:00";"290" +"20230305:01";"503" +"20230305:02";"486" +"20230305:03";"271" +"20230305:04";"161" +"20230305:05";"683" +"20230305:06";"576" +"20230305:07";"419" +"20230305:08";"456" +"20230305:09";"846" +"20230305:10";"535" +"20230305:11";"950" +"20230305:12";"964" +"20230305:13";"435" +"20230305:14";"667" +"20230305:15";"318" +"20230305:16";"175" +"20230305:17";"216" +"20230305:18";"46" +"20230305:19";"299" +"20230305:20";"67" +"20230305:21";"265" +"20230305:22";"113" +"20230305:23";"778" +"20230306:00";"403" +"20230306:01";"374" +"20230306:02";"298" +"20230306:03";"20" +"20230306:04";"253" +"20230306:05";"303" +"20230306:06";"627" +"20230306:07";"652" +"20230306:08";"348" +"20230306:09";"513" +"20230306:10";"121" +"20230306:11";"683" +"20230306:12";"462" +"20230306:13";"441" +"20230306:14";"430" +"20230306:15";"581" +"20230306:16";"954" +"20230306:17";"799" +"20230306:18";"314" +"20230306:19";"9" +"20230306:20";"640" +"20230306:21";"15" +"20230306:22";"996" +"20230306:23";"483" +"20230307:00";"172" +"20230307:01";"969" +"20230307:02";"850" +"20230307:03";"366" +"20230307:04";"203" +"20230307:05";"327" +"20230307:06";"539" +"20230307:07";"215" +"20230307:08";"502" +"20230307:09";"690" +"20230307:10";"116" +"20230307:11";"112" +"20230307:12";"920" +"20230307:13";"180" +"20230307:14";"46" +"20230307:15";"52" +"20230307:16";"897" +"20230307:17";"660" +"20230307:18";"621" +"20230307:19";"228" +"20230307:20";"484" +"20230307:21";"818" +"20230307:22";"321" +"20230307:23";"322" +"20230308:00";"852" +"20230308:01";"334" +"20230308:02";"995" +"20230308:03";"374" +"20230308:04";"560" +"20230308:05";"714" +"20230308:06";"182" +"20230308:07";"982" +"20230308:08";"913" +"20230308:09";"935" +"20230308:10";"269" +"20230308:11";"180" +"20230308:12";"613" +"20230308:13";"458" +"20230308:14";"462" +"20230308:15";"213" +"20230308:16";"480" +"20230308:17";"97" +"20230308:18";"849" +"20230308:19";"123" +"20230308:20";"654" +"20230308:21";"391" +"20230308:22";"571" +"20230308:23";"823" +"20230309:00";"773" +"20230309:01";"969" +"20230309:02";"275" +"20230309:03";"843" +"20230309:04";"436" +"20230309:05";"427" +"20230309:06";"323" +"20230309:07";"521" +"20230309:08";"31" +"20230309:09";"215" +"20230309:10";"613" +"20230309:11";"916" +"20230309:12";"32" +"20230309:13";"243" +"20230309:14";"180" +"20230309:15";"603" +"20230309:16";"620" +"20230309:17";"596" +"20230309:18";"60" +"20230309:19";"668" +"20230309:20";"404" +"20230309:21";"401" +"20230309:22";"247" +"20230309:23";"51" +"20230310:00";"880" +"20230310:01";"639" +"20230310:02";"362" +"20230310:03";"396" +"20230310:04";"324" +"20230310:05";"35" +"20230310:06";"159" +"20230310:07";"900" +"20230310:08";"214" +"20230310:09";"15" +"20230310:10";"985" +"20230310:11";"811" +"20230310:12";"765" +"20230310:13";"712" +"20230310:14";"171" +"20230310:15";"684" +"20230310:16";"805" +"20230310:17";"464" +"20230310:18";"843" +"20230310:19";"89" +"20230310:20";"958" +"20230310:21";"988" +"20230310:22";"295" +"20230310:23";"661" +"20230311:00";"973" +"20230311:01";"669" +"20230311:02";"302" +"20230311:03";"185" +"20230311:04";"50" +"20230311:05";"640" +"20230311:06";"635" +"20230311:07";"294" +"20230311:08";"492" +"20230311:09";"327" +"20230311:10";"842" +"20230311:11";"453" +"20230311:12";"637" +"20230311:13";"938" +"20230311:14";"717" +"20230311:15";"3" +"20230311:16";"469" +"20230311:17";"122" +"20230311:18";"180" +"20230311:19";"497" +"20230311:20";"291" +"20230311:21";"356" +"20230311:22";"372" +"20230311:23";"692" +"20230312:00";"859" +"20230312:01";"241" +"20230312:02";"107" +"20230312:03";"643" +"20230312:04";"825" +"20230312:05";"133" +"20230312:06";"397" +"20230312:07";"863" +"20230312:08";"606" +"20230312:09";"794" +"20230312:10";"628" +"20230312:11";"323" +"20230312:12";"576" +"20230312:13";"856" +"20230312:14";"948" +"20230312:15";"355" +"20230312:16";"432" +"20230312:17";"93" +"20230312:18";"296" +"20230312:19";"465" +"20230312:20";"721" +"20230312:21";"489" +"20230312:22";"754" +"20230312:23";"928" +"20230313:00";"21" +"20230313:01";"951" +"20230313:02";"347" +"20230313:03";"50" +"20230313:04";"321" +"20230313:05";"52" +"20230313:06";"841" +"20230313:07";"588" +"20230313:08";"94" +"20230313:09";"721" +"20230313:10";"806" +"20230313:11";"587" +"20230313:12";"529" +"20230313:13";"240" +"20230313:14";"695" +"20230313:15";"54" +"20230313:16";"383" +"20230313:17";"256" +"20230313:18";"109" +"20230313:19";"498" +"20230313:20";"977" +"20230313:21";"494" +"20230313:22";"41" +"20230313:23";"865" +"20230314:00";"351" +"20230314:01";"171" +"20230314:02";"483" +"20230314:03";"845" +"20230314:04";"739" +"20230314:05";"894" +"20230314:06";"389" +"20230314:07";"676" +"20230314:08";"73" +"20230314:09";"682" +"20230314:10";"609" +"20230314:11";"11" +"20230314:12";"302" +"20230314:13";"905" +"20230314:14";"645" +"20230314:15";"585" +"20230314:16";"184" +"20230314:17";"498" +"20230314:18";"958" +"20230314:19";"238" +"20230314:20";"884" +"20230314:21";"199" +"20230314:22";"185" +"20230314:23";"302" +"20230315:00";"117" +"20230315:01";"11" +"20230315:02";"522" +"20230315:03";"637" +"20230315:04";"807" +"20230315:05";"37" +"20230315:06";"936" +"20230315:07";"552" +"20230315:08";"439" +"20230315:09";"26" +"20230315:10";"596" +"20230315:11";"480" +"20230315:12";"895" +"20230315:13";"358" +"20230315:14";"751" +"20230315:15";"143" +"20230315:16";"752" +"20230315:17";"750" +"20230315:18";"627" +"20230315:19";"151" +"20230315:20";"701" +"20230315:21";"127" +"20230315:22";"149" +"20230315:23";"402" +"20230316:00";"984" +"20230316:01";"503" +"20230316:02";"775" +"20230316:03";"226" +"20230316:04";"804" +"20230316:05";"173" +"20230316:06";"379" +"20230316:07";"32" +"20230316:08";"241" +"20230316:09";"643" +"20230316:10";"349" +"20230316:11";"469" +"20230316:12";"115" +"20230316:13";"410" +"20230316:14";"254" +"20230316:15";"469" +"20230316:16";"72" +"20230316:17";"916" +"20230316:18";"799" +"20230316:19";"576" +"20230316:20";"889" +"20230316:21";"411" +"20230316:22";"12" +"20230316:23";"424" +"20230317:00";"710" +"20230317:01";"372" +"20230317:02";"797" +"20230317:03";"841" +"20230317:04";"588" +"20230317:05";"595" +"20230317:06";"798" +"20230317:07";"108" +"20230317:08";"662" +"20230317:09";"130" +"20230317:10";"222" +"20230317:11";"396" +"20230317:12";"237" +"20230317:13";"551" +"20230317:14";"41" +"20230317:15";"999" +"20230317:16";"718" +"20230317:17";"495" +"20230317:18";"222" +"20230317:19";"719" +"20230317:20";"68" +"20230317:21";"364" +"20230317:22";"499" +"20230317:23";"78" +"20230318:00";"476" +"20230318:01";"678" +"20230318:02";"98" +"20230318:03";"208" +"20230318:04";"93" +"20230318:05";"657" +"20230318:06";"768" +"20230318:07";"215" +"20230318:08";"210" +"20230318:09";"706" +"20230318:10";"528" +"20230318:11";"361" +"20230318:12";"526" +"20230318:13";"518" +"20230318:14";"833" +"20230318:15";"765" +"20230318:16";"719" +"20230318:17";"820" +"20230318:18";"372" +"20230318:19";"482" +"20230318:20";"338" +"20230318:21";"341" +"20230318:22";"777" +"20230318:23";"382" +"20230319:00";"400" +"20230319:01";"961" +"20230319:02";"8" +"20230319:03";"202" +"20230319:04";"315" +"20230319:05";"585" +"20230319:06";"666" +"20230319:07";"866" +"20230319:08";"533" +"20230319:09";"65" +"20230319:10";"52" +"20230319:11";"546" +"20230319:12";"482" +"20230319:13";"724" +"20230319:14";"877" +"20230319:15";"77" +"20230319:16";"758" +"20230319:17";"728" +"20230319:18";"974" +"20230319:19";"715" +"20230319:20";"692" +"20230319:21";"323" +"20230319:22";"730" +"20230319:23";"223" +"20230320:00";"682" +"20230320:01";"309" +"20230320:02";"829" +"20230320:03";"506" +"20230320:04";"418" +"20230320:05";"911" +"20230320:06";"174" +"20230320:07";"724" +"20230320:08";"498" +"20230320:09";"843" +"20230320:10";"797" +"20230320:11";"877" +"20230320:12";"703" +"20230320:13";"162" +"20230320:14";"872" +"20230320:15";"479" +"20230320:16";"531" +"20230320:17";"454" +"20230320:18";"193" +"20230320:19";"330" +"20230320:20";"909" +"20230320:21";"540" +"20230320:22";"752" +"20230320:23";"947" +"20230321:00";"414" +"20230321:01";"498" +"20230321:02";"141" +"20230321:03";"469" +"20230321:04";"815" +"20230321:05";"731" +"20230321:06";"349" +"20230321:07";"242" +"20230321:08";"331" +"20230321:09";"805" +"20230321:10";"407" +"20230321:11";"918" +"20230321:12";"349" +"20230321:13";"738" +"20230321:14";"676" +"20230321:15";"383" +"20230321:16";"746" +"20230321:17";"87" +"20230321:18";"771" +"20230321:19";"138" +"20230321:20";"333" +"20230321:21";"726" +"20230321:22";"682" +"20230321:23";"824" +"20230322:00";"251" +"20230322:01";"116" +"20230322:02";"185" +"20230322:03";"931" +"20230322:04";"855" +"20230322:05";"324" +"20230322:06";"621" +"20230322:07";"890" +"20230322:08";"786" +"20230322:09";"143" +"20230322:10";"78" +"20230322:11";"473" +"20230322:12";"329" +"20230322:13";"975" +"20230322:14";"579" +"20230322:15";"197" +"20230322:16";"237" +"20230322:17";"143" +"20230322:18";"821" +"20230322:19";"919" +"20230322:20";"130" +"20230322:21";"244" +"20230322:22";"497" +"20230322:23";"963" +"20230323:00";"971" +"20230323:01";"193" +"20230323:02";"918" +"20230323:03";"443" +"20230323:04";"798" +"20230323:05";"332" +"20230323:06";"396" +"20230323:07";"849" +"20230323:08";"328" +"20230323:09";"304" +"20230323:10";"96" +"20230323:11";"963" +"20230323:12";"686" +"20230323:13";"571" +"20230323:14";"555" +"20230323:15";"263" +"20230323:16";"515" +"20230323:17";"339" +"20230323:18";"564" +"20230323:19";"474" +"20230323:20";"695" +"20230323:21";"462" +"20230323:22";"434" +"20230323:23";"403" +"20230324:00";"382" +"20230324:01";"572" +"20230324:02";"572" +"20230324:03";"707" +"20230324:04";"430" +"20230324:05";"815" +"20230324:06";"399" +"20230324:07";"410" +"20230324:08";"993" +"20230324:09";"405" +"20230324:10";"544" +"20230324:11";"494" +"20230324:12";"560" +"20230324:13";"916" +"20230324:14";"16" +"20230324:15";"197" +"20230324:16";"507" +"20230324:17";"779" +"20230324:18";"390" +"20230324:19";"768" +"20230324:20";"226" +"20230324:21";"868" +"20230324:22";"732" +"20230324:23";"724" +"20230325:00";"221" +"20230325:01";"107" +"20230325:02";"73" +"20230325:03";"401" +"20230325:04";"314" +"20230325:05";"581" +"20230325:06";"485" +"20230325:07";"218" +"20230325:08";"982" +"20230325:09";"17" +"20230325:10";"928" +"20230325:11";"647" +"20230325:12";"419" +"20230325:13";"422" +"20230325:14";"142" +"20230325:15";"203" +"20230325:16";"816" +"20230325:17";"339" +"20230325:18";"84" +"20230325:19";"111" +"20230325:20";"418" +"20230325:21";"183" +"20230325:22";"983" +"20230325:23";"214" +"20230326:00";"658" +"20230326:01";"951" +"20230326:02";"657" +"20230326:03";"758" +"20230326:04";"397" +"20230326:05";"642" +"20230326:06";"890" +"20230326:07";"167" +"20230326:08";"370" +"20230326:09";"385" +"20230326:10";"775" +"20230326:11";"434" +"20230326:12";"95" +"20230326:13";"215" +"20230326:14";"341" +"20230326:15";"155" +"20230326:16";"115" +"20230326:17";"206" +"20230326:18";"358" +"20230326:19";"56" +"20230326:20";"109" +"20230326:21";"30" +"20230326:22";"957" +"20230326:23";"799" +"20230327:00";"456" +"20230327:01";"797" +"20230327:02";"225" +"20230327:03";"730" +"20230327:04";"375" +"20230327:05";"696" +"20230327:06";"727" +"20230327:07";"484" +"20230327:08";"50" +"20230327:09";"653" +"20230327:10";"989" +"20230327:11";"582" +"20230327:12";"400" +"20230327:13";"607" +"20230327:14";"403" +"20230327:15";"79" +"20230327:16";"322" +"20230327:17";"774" +"20230327:18";"125" +"20230327:19";"508" +"20230327:20";"331" +"20230327:21";"538" +"20230327:22";"990" +"20230327:23";"955" +"20230328:00";"932" +"20230328:01";"294" +"20230328:02";"418" +"20230328:03";"86" +"20230328:04";"735" +"20230328:05";"938" +"20230328:06";"868" +"20230328:07";"765" +"20230328:08";"564" +"20230328:09";"981" +"20230328:10";"75" +"20230328:11";"401" +"20230328:12";"51" +"20230328:13";"449" +"20230328:14";"148" +"20230328:15";"939" +"20230328:16";"739" +"20230328:17";"212" +"20230328:18";"960" +"20230328:19";"476" +"20230328:20";"838" +"20230328:21";"106" +"20230328:22";"272" +"20230328:23";"54" +"20230329:00";"200" +"20230329:01";"488" +"20230329:02";"198" +"20230329:03";"525" +"20230329:04";"458" +"20230329:05";"932" +"20230329:06";"693" +"20230329:07";"709" +"20230329:08";"386" +"20230329:09";"234" +"20230329:10";"359" +"20230329:11";"654" +"20230329:12";"81" +"20230329:13";"970" +"20230329:14";"158" +"20230329:15";"273" +"20230329:16";"220" +"20230329:17";"698" +"20230329:18";"348" +"20230329:19";"82" +"20230329:20";"721" +"20230329:21";"670" +"20230329:22";"313" +"20230329:23";"567" +"20230330:00";"843" +"20230330:01";"239" +"20230330:02";"183" +"20230330:03";"3" +"20230330:04";"516" +"20230330:05";"400" +"20230330:06";"663" +"20230330:07";"503" +"20230330:08";"337" +"20230330:09";"641" +"20230330:10";"208" +"20230330:11";"721" +"20230330:12";"708" +"20230330:13";"190" +"20230330:14";"768" +"20230330:15";"762" +"20230330:16";"530" +"20230330:17";"287" +"20230330:18";"643" +"20230330:19";"582" +"20230330:20";"31" +"20230330:21";"278" +"20230330:22";"426" +"20230330:23";"191" +"20230331:00";"309" +"20230331:01";"126" +"20230331:02";"864" +"20230331:03";"861" +"20230331:04";"537" +"20230331:05";"126" +"20230331:06";"531" +"20230331:07";"510" +"20230331:08";"179" +"20230331:09";"523" +"20230331:10";"124" +"20230331:11";"59" +"20230331:12";"408" +"20230331:13";"147" +"20230331:14";"835" +"20230331:15";"201" +"20230331:16";"943" +"20230331:17";"410" +"20230331:18";"575" +"20230331:19";"618" +"20230331:20";"168" +"20230331:21";"180" +"20230331:22";"549" +"20230331:23";"910" +"20230401:00";"113" +"20230401:01";"71" +"20230401:02";"781" +"20230401:03";"56" +"20230401:04";"498" +"20230401:05";"346" +"20230401:06";"623" +"20230401:07";"367" +"20230401:08";"807" +"20230401:09";"616" +"20230401:10";"907" +"20230401:11";"481" +"20230401:12";"118" +"20230401:13";"261" +"20230401:14";"447" +"20230401:15";"295" +"20230401:16";"599" +"20230401:17";"719" +"20230401:18";"912" +"20230401:19";"775" +"20230401:20";"23" +"20230401:21";"214" +"20230401:22";"320" +"20230401:23";"620" +"20230402:00";"195" +"20230402:01";"525" +"20230402:02";"706" +"20230402:03";"592" +"20230402:04";"363" +"20230402:05";"687" +"20230402:06";"651" +"20230402:07";"414" +"20230402:08";"563" +"20230402:09";"885" +"20230402:10";"125" +"20230402:11";"774" +"20230402:12";"852" +"20230402:13";"554" +"20230402:14";"345" +"20230402:15";"882" +"20230402:16";"55" +"20230402:17";"57" +"20230402:18";"825" +"20230402:19";"588" +"20230402:20";"606" +"20230402:21";"928" +"20230402:22";"720" +"20230402:23";"30" +"20230403:00";"35" +"20230403:01";"38" +"20230403:02";"351" +"20230403:03";"83" +"20230403:04";"163" +"20230403:05";"602" +"20230403:06";"66" +"20230403:07";"268" +"20230403:08";"530" +"20230403:09";"153" +"20230403:10";"18" +"20230403:11";"967" +"20230403:12";"476" +"20230403:13";"599" +"20230403:14";"539" +"20230403:15";"19" +"20230403:16";"552" +"20230403:17";"283" +"20230403:18";"769" +"20230403:19";"262" +"20230403:20";"203" +"20230403:21";"458" +"20230403:22";"243" +"20230403:23";"861" +"20230404:00";"551" +"20230404:01";"317" +"20230404:02";"643" +"20230404:03";"484" +"20230404:04";"156" +"20230404:05";"247" +"20230404:06";"527" +"20230404:07";"929" +"20230404:08";"739" +"20230404:09";"269" +"20230404:10";"457" +"20230404:11";"62" +"20230404:12";"740" +"20230404:13";"241" +"20230404:14";"727" +"20230404:15";"95" +"20230404:16";"355" +"20230404:17";"237" +"20230404:18";"523" +"20230404:19";"87" +"20230404:20";"287" +"20230404:21";"251" +"20230404:22";"11" +"20230404:23";"888" +"20230405:00";"607" +"20230405:01";"162" +"20230405:02";"667" +"20230405:03";"928" +"20230405:04";"245" +"20230405:05";"663" +"20230405:06";"620" +"20230405:07";"52" +"20230405:08";"73" +"20230405:09";"871" +"20230405:10";"607" +"20230405:11";"804" +"20230405:12";"495" +"20230405:13";"86" +"20230405:14";"333" +"20230405:15";"4" +"20230405:16";"27" +"20230405:17";"883" +"20230405:18";"689" +"20230405:19";"917" +"20230405:20";"194" +"20230405:21";"716" +"20230405:22";"151" +"20230405:23";"654" +"20230406:00";"420" +"20230406:01";"390" +"20230406:02";"992" +"20230406:03";"360" +"20230406:04";"733" +"20230406:05";"999" +"20230406:06";"356" +"20230406:07";"356" +"20230406:08";"371" +"20230406:09";"145" +"20230406:10";"639" +"20230406:11";"638" +"20230406:12";"516" +"20230406:13";"301" +"20230406:14";"856" +"20230406:15";"591" +"20230406:16";"25" +"20230406:17";"519" +"20230406:18";"887" +"20230406:19";"207" +"20230406:20";"522" +"20230406:21";"726" +"20230406:22";"759" +"20230406:23";"256" +"20230407:00";"322" +"20230407:01";"880" +"20230407:02";"906" +"20230407:03";"873" +"20230407:04";"38" +"20230407:05";"541" +"20230407:06";"783" +"20230407:07";"448" +"20230407:08";"185" +"20230407:09";"182" +"20230407:10";"88" +"20230407:11";"773" +"20230407:12";"400" +"20230407:13";"495" +"20230407:14";"220" +"20230407:15";"60" +"20230407:16";"415" +"20230407:17";"989" +"20230407:18";"96" +"20230407:19";"820" +"20230407:20";"697" +"20230407:21";"959" +"20230407:22";"804" +"20230407:23";"455" +"20230408:00";"489" +"20230408:01";"974" +"20230408:02";"882" +"20230408:03";"675" +"20230408:04";"105" +"20230408:05";"976" +"20230408:06";"590" +"20230408:07";"488" +"20230408:08";"987" +"20230408:09";"481" +"20230408:10";"184" +"20230408:11";"15" +"20230408:12";"311" +"20230408:13";"841" +"20230408:14";"561" +"20230408:15";"790" +"20230408:16";"285" +"20230408:17";"288" +"20230408:18";"952" +"20230408:19";"909" +"20230408:20";"331" +"20230408:21";"249" +"20230408:22";"419" +"20230408:23";"270" +"20230409:00";"910" +"20230409:01";"485" +"20230409:02";"936" +"20230409:03";"322" +"20230409:04";"154" +"20230409:05";"0" +"20230409:06";"676" +"20230409:07";"563" +"20230409:08";"272" +"20230409:09";"729" +"20230409:10";"862" +"20230409:11";"234" +"20230409:12";"267" +"20230409:13";"956" +"20230409:14";"34" +"20230409:15";"977" +"20230409:16";"662" +"20230409:17";"407" +"20230409:18";"383" +"20230409:19";"606" +"20230409:20";"309" +"20230409:21";"275" +"20230409:22";"718" +"20230409:23";"496" +"20230410:00";"305" +"20230410:01";"124" +"20230410:02";"431" +"20230410:03";"678" +"20230410:04";"427" +"20230410:05";"44" +"20230410:06";"357" +"20230410:07";"887" +"20230410:08";"422" +"20230410:09";"472" +"20230410:10";"139" +"20230410:11";"766" +"20230410:12";"768" +"20230410:13";"175" +"20230410:14";"303" +"20230410:15";"608" +"20230410:16";"391" +"20230410:17";"433" +"20230410:18";"787" +"20230410:19";"324" +"20230410:20";"892" +"20230410:21";"360" +"20230410:22";"34" +"20230410:23";"699" +"20230411:00";"730" +"20230411:01";"433" +"20230411:02";"684" +"20230411:03";"11" +"20230411:04";"882" +"20230411:05";"979" +"20230411:06";"806" +"20230411:07";"13" +"20230411:08";"534" +"20230411:09";"53" +"20230411:10";"296" +"20230411:11";"980" +"20230411:12";"179" +"20230411:13";"279" +"20230411:14";"127" +"20230411:15";"426" +"20230411:16";"623" +"20230411:17";"111" +"20230411:18";"48" +"20230411:19";"845" +"20230411:20";"224" +"20230411:21";"845" +"20230411:22";"441" +"20230411:23";"124" +"20230412:00";"727" +"20230412:01";"797" +"20230412:02";"420" +"20230412:03";"963" +"20230412:04";"666" +"20230412:05";"641" +"20230412:06";"977" +"20230412:07";"467" +"20230412:08";"159" +"20230412:09";"32" +"20230412:10";"35" +"20230412:11";"123" +"20230412:12";"348" +"20230412:13";"700" +"20230412:14";"638" +"20230412:15";"629" +"20230412:16";"579" +"20230412:17";"795" +"20230412:18";"559" +"20230412:19";"403" +"20230412:20";"977" +"20230412:21";"603" +"20230412:22";"701" +"20230412:23";"694" +"20230413:00";"554" +"20230413:01";"712" +"20230413:02";"384" +"20230413:03";"400" +"20230413:04";"202" +"20230413:05";"266" +"20230413:06";"371" +"20230413:07";"41" +"20230413:08";"563" +"20230413:09";"344" +"20230413:10";"747" +"20230413:11";"608" +"20230413:12";"14" +"20230413:13";"92" +"20230413:14";"898" +"20230413:15";"521" +"20230413:16";"660" +"20230413:17";"153" +"20230413:18";"356" +"20230413:19";"30" +"20230413:20";"567" +"20230413:21";"141" +"20230413:22";"403" +"20230413:23";"698" +"20230414:00";"875" +"20230414:01";"289" +"20230414:02";"458" +"20230414:03";"182" +"20230414:04";"347" +"20230414:05";"811" +"20230414:06";"829" +"20230414:07";"19" +"20230414:08";"808" +"20230414:09";"759" +"20230414:10";"291" +"20230414:11";"740" +"20230414:12";"223" +"20230414:13";"104" +"20230414:14";"126" +"20230414:15";"81" +"20230414:16";"138" +"20230414:17";"905" +"20230414:18";"230" +"20230414:19";"776" +"20230414:20";"437" +"20230414:21";"572" +"20230414:22";"371" +"20230414:23";"170" +"20230415:00";"817" +"20230415:01";"372" +"20230415:02";"799" +"20230415:03";"857" +"20230415:04";"827" +"20230415:05";"480" +"20230415:06";"734" +"20230415:07";"660" +"20230415:08";"350" +"20230415:09";"129" +"20230415:10";"376" +"20230415:11";"54" +"20230415:12";"197" +"20230415:13";"910" +"20230415:14";"319" +"20230415:15";"168" +"20230415:16";"950" +"20230415:17";"182" +"20230415:18";"234" +"20230415:19";"785" +"20230415:20";"423" +"20230415:21";"834" +"20230415:22";"45" +"20230415:23";"463" +"20230416:00";"640" +"20230416:01";"256" +"20230416:02";"359" +"20230416:03";"744" +"20230416:04";"938" +"20230416:05";"180" +"20230416:06";"698" +"20230416:07";"773" +"20230416:08";"572" +"20230416:09";"595" +"20230416:10";"743" +"20230416:11";"880" +"20230416:12";"810" +"20230416:13";"249" +"20230416:14";"313" +"20230416:15";"690" +"20230416:16";"477" +"20230416:17";"753" +"20230416:18";"173" +"20230416:19";"61" +"20230416:20";"973" +"20230416:21";"485" +"20230416:22";"754" +"20230416:23";"919" +"20230417:00";"988" +"20230417:01";"197" +"20230417:02";"374" +"20230417:03";"537" +"20230417:04";"857" +"20230417:05";"734" +"20230417:06";"879" +"20230417:07";"370" +"20230417:08";"707" +"20230417:09";"298" +"20230417:10";"452" +"20230417:11";"310" +"20230417:12";"119" +"20230417:13";"86" +"20230417:14";"112" +"20230417:15";"30" +"20230417:16";"95" +"20230417:17";"352" +"20230417:18";"962" +"20230417:19";"47" +"20230417:20";"877" +"20230417:21";"659" +"20230417:22";"493" +"20230417:23";"513" +"20230418:00";"166" +"20230418:01";"955" +"20230418:02";"31" +"20230418:03";"552" +"20230418:04";"210" +"20230418:05";"703" +"20230418:06";"215" +"20230418:07";"98" +"20230418:08";"595" +"20230418:09";"436" +"20230418:10";"555" +"20230418:11";"718" +"20230418:12";"29" +"20230418:13";"50" +"20230418:14";"434" +"20230418:15";"749" +"20230418:16";"252" +"20230418:17";"60" +"20230418:18";"837" +"20230418:19";"455" +"20230418:20";"6" +"20230418:21";"494" +"20230418:22";"638" +"20230418:23";"271" +"20230419:00";"637" +"20230419:01";"7" +"20230419:02";"510" +"20230419:03";"386" +"20230419:04";"154" +"20230419:05";"847" +"20230419:06";"500" +"20230419:07";"193" +"20230419:08";"270" +"20230419:09";"88" +"20230419:10";"861" +"20230419:11";"450" +"20230419:12";"821" +"20230419:13";"32" +"20230419:14";"597" +"20230419:15";"315" +"20230419:16";"114" +"20230419:17";"321" +"20230419:18";"57" +"20230419:19";"60" +"20230419:20";"754" +"20230419:21";"173" +"20230419:22";"121" +"20230419:23";"459" +"20230420:00";"130" +"20230420:01";"57" +"20230420:02";"630" +"20230420:03";"131" +"20230420:04";"962" +"20230420:05";"476" +"20230420:06";"482" +"20230420:07";"188" +"20230420:08";"722" +"20230420:09";"157" +"20230420:10";"334" +"20230420:11";"160" +"20230420:12";"715" +"20230420:13";"87" +"20230420:14";"739" +"20230420:15";"176" +"20230420:16";"448" +"20230420:17";"6" +"20230420:18";"144" +"20230420:19";"643" +"20230420:20";"49" +"20230420:21";"809" +"20230420:22";"799" +"20230420:23";"993" +"20230421:00";"872" +"20230421:01";"401" +"20230421:02";"917" +"20230421:03";"289" +"20230421:04";"711" +"20230421:05";"101" +"20230421:06";"508" +"20230421:07";"928" +"20230421:08";"195" +"20230421:09";"510" +"20230421:10";"682" +"20230421:11";"929" +"20230421:12";"975" +"20230421:13";"388" +"20230421:14";"835" +"20230421:15";"675" +"20230421:16";"107" +"20230421:17";"842" +"20230421:18";"781" +"20230421:19";"193" +"20230421:20";"831" +"20230421:21";"97" +"20230421:22";"292" +"20230421:23";"161" +"20230422:00";"509" +"20230422:01";"386" +"20230422:02";"59" +"20230422:03";"43" +"20230422:04";"831" +"20230422:05";"546" +"20230422:06";"741" +"20230422:07";"638" +"20230422:08";"227" +"20230422:09";"852" +"20230422:10";"585" +"20230422:11";"923" +"20230422:12";"922" +"20230422:13";"843" +"20230422:14";"53" +"20230422:15";"544" +"20230422:16";"554" +"20230422:17";"842" +"20230422:18";"630" +"20230422:19";"694" +"20230422:20";"413" +"20230422:21";"270" +"20230422:22";"852" +"20230422:23";"391" +"20230423:00";"300" +"20230423:01";"430" +"20230423:02";"186" +"20230423:03";"635" +"20230423:04";"307" +"20230423:05";"602" +"20230423:06";"921" +"20230423:07";"584" +"20230423:08";"797" +"20230423:09";"405" +"20230423:10";"627" +"20230423:11";"512" +"20230423:12";"612" +"20230423:13";"307" +"20230423:14";"167" +"20230423:15";"412" +"20230423:16";"642" +"20230423:17";"600" +"20230423:18";"155" +"20230423:19";"639" +"20230423:20";"526" +"20230423:21";"635" +"20230423:22";"497" +"20230423:23";"207" +"20230424:00";"869" +"20230424:01";"869" +"20230424:02";"706" +"20230424:03";"384" +"20230424:04";"350" +"20230424:05";"469" +"20230424:06";"741" +"20230424:07";"538" +"20230424:08";"168" +"20230424:09";"352" +"20230424:10";"716" +"20230424:11";"830" +"20230424:12";"529" +"20230424:13";"631" +"20230424:14";"377" +"20230424:15";"856" +"20230424:16";"159" +"20230424:17";"101" +"20230424:18";"641" +"20230424:19";"95" +"20230424:20";"643" +"20230424:21";"167" +"20230424:22";"286" +"20230424:23";"280" +"20230425:00";"528" +"20230425:01";"942" +"20230425:02";"142" +"20230425:03";"13" +"20230425:04";"545" +"20230425:05";"40" +"20230425:06";"437" +"20230425:07";"633" +"20230425:08";"36" +"20230425:09";"146" +"20230425:10";"335" +"20230425:11";"856" +"20230425:12";"430" +"20230425:13";"758" +"20230425:14";"826" +"20230425:15";"737" +"20230425:16";"506" +"20230425:17";"981" +"20230425:18";"609" +"20230425:19";"410" +"20230425:20";"568" +"20230425:21";"761" +"20230425:22";"329" +"20230425:23";"872" +"20230426:00";"244" +"20230426:01";"338" +"20230426:02";"244" +"20230426:03";"506" +"20230426:04";"778" +"20230426:05";"802" +"20230426:06";"613" +"20230426:07";"314" +"20230426:08";"79" +"20230426:09";"235" +"20230426:10";"546" +"20230426:11";"306" +"20230426:12";"843" +"20230426:13";"53" +"20230426:14";"222" +"20230426:15";"431" +"20230426:16";"413" +"20230426:17";"331" +"20230426:18";"140" +"20230426:19";"986" +"20230426:20";"354" +"20230426:21";"63" +"20230426:22";"467" +"20230426:23";"812" +"20230427:00";"114" +"20230427:01";"185" +"20230427:02";"618" +"20230427:03";"453" +"20230427:04";"434" +"20230427:05";"959" +"20230427:06";"345" +"20230427:07";"217" +"20230427:08";"152" +"20230427:09";"671" +"20230427:10";"795" +"20230427:11";"704" +"20230427:12";"168" +"20230427:13";"869" +"20230427:14";"640" +"20230427:15";"556" +"20230427:16";"115" +"20230427:17";"613" +"20230427:18";"175" +"20230427:19";"436" +"20230427:20";"624" +"20230427:21";"929" +"20230427:22";"531" +"20230427:23";"806" +"20230428:00";"30" +"20230428:01";"149" +"20230428:02";"842" +"20230428:03";"818" +"20230428:04";"407" +"20230428:05";"364" +"20230428:06";"466" +"20230428:07";"988" +"20230428:08";"808" +"20230428:09";"309" +"20230428:10";"424" +"20230428:11";"377" +"20230428:12";"991" +"20230428:13";"859" +"20230428:14";"41" +"20230428:15";"988" +"20230428:16";"920" +"20230428:17";"491" +"20230428:18";"806" +"20230428:19";"371" +"20230428:20";"965" +"20230428:21";"654" +"20230428:22";"137" +"20230428:23";"338" +"20230429:00";"59" +"20230429:01";"288" +"20230429:02";"945" +"20230429:03";"502" +"20230429:04";"158" +"20230429:05";"570" +"20230429:06";"518" +"20230429:07";"365" +"20230429:08";"146" +"20230429:09";"91" +"20230429:10";"663" +"20230429:11";"646" +"20230429:12";"871" +"20230429:13";"561" +"20230429:14";"489" +"20230429:15";"776" +"20230429:16";"816" +"20230429:17";"964" +"20230429:18";"653" +"20230429:19";"27" +"20230429:20";"386" +"20230429:21";"355" +"20230429:22";"112" +"20230429:23";"533" +"20230430:00";"820" +"20230430:01";"555" +"20230430:02";"289" +"20230430:03";"172" +"20230430:04";"112" +"20230430:05";"520" +"20230430:06";"22" +"20230430:07";"667" +"20230430:08";"336" +"20230430:09";"419" +"20230430:10";"509" +"20230430:11";"515" +"20230430:12";"674" +"20230430:13";"849" +"20230430:14";"336" +"20230430:15";"331" +"20230430:16";"90" +"20230430:17";"268" +"20230430:18";"698" +"20230430:19";"712" +"20230430:20";"318" +"20230430:21";"862" +"20230430:22";"387" +"20230430:23";"539" +"20230501:00";"995" +"20230501:01";"35" +"20230501:02";"848" +"20230501:03";"208" +"20230501:04";"453" +"20230501:05";"433" +"20230501:06";"158" +"20230501:07";"934" +"20230501:08";"531" +"20230501:09";"713" +"20230501:10";"232" +"20230501:11";"51" +"20230501:12";"806" +"20230501:13";"219" +"20230501:14";"923" +"20230501:15";"847" +"20230501:16";"577" +"20230501:17";"98" +"20230501:18";"638" +"20230501:19";"282" +"20230501:20";"240" +"20230501:21";"149" +"20230501:22";"926" +"20230501:23";"934" +"20230502:00";"303" +"20230502:01";"974" +"20230502:02";"526" +"20230502:03";"894" +"20230502:04";"514" +"20230502:05";"972" +"20230502:06";"766" +"20230502:07";"236" +"20230502:08";"875" +"20230502:09";"615" +"20230502:10";"179" +"20230502:11";"539" +"20230502:12";"782" +"20230502:13";"829" +"20230502:14";"40" +"20230502:15";"359" +"20230502:16";"853" +"20230502:17";"939" +"20230502:18";"432" +"20230502:19";"991" +"20230502:20";"760" +"20230502:21";"846" +"20230502:22";"160" +"20230502:23";"636" +"20230503:00";"720" +"20230503:01";"333" +"20230503:02";"164" +"20230503:03";"865" +"20230503:04";"841" +"20230503:05";"272" +"20230503:06";"958" +"20230503:07";"230" +"20230503:08";"853" +"20230503:09";"42" +"20230503:10";"148" +"20230503:11";"690" +"20230503:12";"381" +"20230503:13";"143" +"20230503:14";"439" +"20230503:15";"955" +"20230503:16";"119" +"20230503:17";"48" +"20230503:18";"524" +"20230503:19";"876" +"20230503:20";"27" +"20230503:21";"219" +"20230503:22";"186" +"20230503:23";"147" +"20230504:00";"712" +"20230504:01";"769" +"20230504:02";"847" +"20230504:03";"183" +"20230504:04";"492" +"20230504:05";"563" +"20230504:06";"187" +"20230504:07";"494" +"20230504:08";"955" +"20230504:09";"573" +"20230504:10";"487" +"20230504:11";"834" +"20230504:12";"784" +"20230504:13";"119" +"20230504:14";"302" +"20230504:15";"765" +"20230504:16";"616" +"20230504:17";"161" +"20230504:18";"510" +"20230504:19";"172" +"20230504:20";"827" +"20230504:21";"747" +"20230504:22";"542" +"20230504:23";"458" +"20230505:00";"495" +"20230505:01";"670" +"20230505:02";"801" +"20230505:03";"463" +"20230505:04";"318" +"20230505:05";"914" +"20230505:06";"819" +"20230505:07";"251" +"20230505:08";"40" +"20230505:09";"589" +"20230505:10";"679" +"20230505:11";"837" +"20230505:12";"586" +"20230505:13";"149" +"20230505:14";"662" +"20230505:15";"866" +"20230505:16";"313" +"20230505:17";"832" +"20230505:18";"705" +"20230505:19";"911" +"20230505:20";"913" +"20230505:21";"462" +"20230505:22";"997" +"20230505:23";"428" +"20230506:00";"937" +"20230506:01";"8" +"20230506:02";"234" +"20230506:03";"195" +"20230506:04";"803" +"20230506:05";"350" +"20230506:06";"754" +"20230506:07";"513" +"20230506:08";"294" +"20230506:09";"538" +"20230506:10";"379" +"20230506:11";"628" +"20230506:12";"665" +"20230506:13";"998" +"20230506:14";"896" +"20230506:15";"877" +"20230506:16";"518" +"20230506:17";"329" +"20230506:18";"880" +"20230506:19";"860" +"20230506:20";"820" +"20230506:21";"117" +"20230506:22";"516" +"20230506:23";"312" +"20230507:00";"323" +"20230507:01";"587" +"20230507:02";"514" +"20230507:03";"969" +"20230507:04";"571" +"20230507:05";"196" +"20230507:06";"552" +"20230507:07";"341" +"20230507:08";"440" +"20230507:09";"725" +"20230507:10";"431" +"20230507:11";"252" +"20230507:12";"371" +"20230507:13";"297" +"20230507:14";"913" +"20230507:15";"367" +"20230507:16";"415" +"20230507:17";"595" +"20230507:18";"322" +"20230507:19";"688" +"20230507:20";"309" +"20230507:21";"130" +"20230507:22";"680" +"20230507:23";"366" +"20230508:00";"620" +"20230508:01";"742" +"20230508:02";"410" +"20230508:03";"584" +"20230508:04";"594" +"20230508:05";"587" +"20230508:06";"656" +"20230508:07";"379" +"20230508:08";"310" +"20230508:09";"984" +"20230508:10";"59" +"20230508:11";"825" +"20230508:12";"448" +"20230508:13";"705" +"20230508:14";"462" +"20230508:15";"933" +"20230508:16";"951" +"20230508:17";"523" +"20230508:18";"798" +"20230508:19";"821" +"20230508:20";"174" +"20230508:21";"319" +"20230508:22";"66" +"20230508:23";"211" +"20230509:00";"131" +"20230509:01";"589" +"20230509:02";"714" +"20230509:03";"627" +"20230509:04";"388" +"20230509:05";"320" +"20230509:06";"506" +"20230509:07";"290" +"20230509:08";"931" +"20230509:09";"75" +"20230509:10";"564" +"20230509:11";"591" +"20230509:12";"637" +"20230509:13";"848" +"20230509:14";"391" +"20230509:15";"57" +"20230509:16";"361" +"20230509:17";"337" +"20230509:18";"231" +"20230509:19";"841" +"20230509:20";"439" +"20230509:21";"622" +"20230509:22";"716" +"20230509:23";"776" +"20230510:00";"298" +"20230510:01";"186" +"20230510:02";"54" +"20230510:03";"167" +"20230510:04";"864" +"20230510:05";"50" +"20230510:06";"73" +"20230510:07";"793" +"20230510:08";"792" +"20230510:09";"277" +"20230510:10";"302" +"20230510:11";"6" +"20230510:12";"814" +"20230510:13";"381" +"20230510:14";"579" +"20230510:15";"964" +"20230510:16";"503" +"20230510:17";"840" +"20230510:18";"295" +"20230510:19";"180" +"20230510:20";"388" +"20230510:21";"59" +"20230510:22";"914" +"20230510:23";"503" +"20230511:00";"392" +"20230511:01";"924" +"20230511:02";"59" +"20230511:03";"368" +"20230511:04";"703" +"20230511:05";"690" +"20230511:06";"593" +"20230511:07";"29" +"20230511:08";"980" +"20230511:09";"15" +"20230511:10";"247" +"20230511:11";"309" +"20230511:12";"996" +"20230511:13";"538" +"20230511:14";"955" +"20230511:15";"645" +"20230511:16";"499" +"20230511:17";"669" +"20230511:18";"662" +"20230511:19";"514" +"20230511:20";"452" +"20230511:21";"235" +"20230511:22";"628" +"20230511:23";"37" +"20230512:00";"441" +"20230512:01";"474" +"20230512:02";"630" +"20230512:03";"255" +"20230512:04";"198" +"20230512:05";"481" +"20230512:06";"365" +"20230512:07";"781" +"20230512:08";"83" +"20230512:09";"43" +"20230512:10";"358" +"20230512:11";"993" +"20230512:12";"474" +"20230512:13";"87" +"20230512:14";"330" +"20230512:15";"793" +"20230512:16";"610" +"20230512:17";"87" +"20230512:18";"801" +"20230512:19";"329" +"20230512:20";"334" +"20230512:21";"973" +"20230512:22";"875" +"20230512:23";"513" +"20230513:00";"182" +"20230513:01";"635" +"20230513:02";"899" +"20230513:03";"474" +"20230513:04";"445" +"20230513:05";"882" +"20230513:06";"815" +"20230513:07";"862" +"20230513:08";"145" +"20230513:09";"730" +"20230513:10";"544" +"20230513:11";"838" +"20230513:12";"634" +"20230513:13";"79" +"20230513:14";"100" +"20230513:15";"442" +"20230513:16";"131" +"20230513:17";"841" +"20230513:18";"438" +"20230513:19";"15" +"20230513:20";"239" +"20230513:21";"509" +"20230513:22";"338" +"20230513:23";"467" +"20230514:00";"637" +"20230514:01";"466" +"20230514:02";"258" +"20230514:03";"393" +"20230514:04";"429" +"20230514:05";"15" +"20230514:06";"961" +"20230514:07";"913" +"20230514:08";"3" +"20230514:09";"107" +"20230514:10";"847" +"20230514:11";"268" +"20230514:12";"757" +"20230514:13";"643" +"20230514:14";"633" +"20230514:15";"871" +"20230514:16";"279" +"20230514:17";"42" +"20230514:18";"906" +"20230514:19";"930" +"20230514:20";"163" +"20230514:21";"722" +"20230514:22";"780" +"20230514:23";"276" +"20230515:00";"199" +"20230515:01";"867" +"20230515:02";"308" +"20230515:03";"354" +"20230515:04";"142" +"20230515:05";"470" +"20230515:06";"572" +"20230515:07";"54" +"20230515:08";"895" +"20230515:09";"795" +"20230515:10";"225" +"20230515:11";"433" +"20230515:12";"876" +"20230515:13";"625" +"20230515:14";"527" +"20230515:15";"606" +"20230515:16";"67" +"20230515:17";"604" +"20230515:18";"315" +"20230515:19";"794" +"20230515:20";"326" +"20230515:21";"535" +"20230515:22";"990" +"20230515:23";"427" +"20230516:00";"237" +"20230516:01";"212" +"20230516:02";"394" +"20230516:03";"293" +"20230516:04";"699" +"20230516:05";"322" +"20230516:06";"1" +"20230516:07";"221" +"20230516:08";"196" +"20230516:09";"346" +"20230516:10";"394" +"20230516:11";"728" +"20230516:12";"882" +"20230516:13";"978" +"20230516:14";"871" +"20230516:15";"221" +"20230516:16";"173" +"20230516:17";"552" +"20230516:18";"437" +"20230516:19";"467" +"20230516:20";"777" +"20230516:21";"79" +"20230516:22";"424" +"20230516:23";"998" +"20230517:00";"659" +"20230517:01";"24" +"20230517:02";"899" +"20230517:03";"632" +"20230517:04";"529" +"20230517:05";"141" +"20230517:06";"956" +"20230517:07";"616" +"20230517:08";"834" +"20230517:09";"583" +"20230517:10";"125" +"20230517:11";"70" +"20230517:12";"183" +"20230517:13";"722" +"20230517:14";"676" +"20230517:15";"918" +"20230517:16";"360" +"20230517:17";"620" +"20230517:18";"923" +"20230517:19";"737" +"20230517:20";"74" +"20230517:21";"73" +"20230517:22";"797" +"20230517:23";"961" +"20230518:00";"95" +"20230518:01";"239" +"20230518:02";"632" +"20230518:03";"479" +"20230518:04";"635" +"20230518:05";"551" +"20230518:06";"593" +"20230518:07";"523" +"20230518:08";"336" +"20230518:09";"568" +"20230518:10";"529" +"20230518:11";"158" +"20230518:12";"675" +"20230518:13";"699" +"20230518:14";"907" +"20230518:15";"967" +"20230518:16";"121" +"20230518:17";"433" +"20230518:18";"673" +"20230518:19";"993" +"20230518:20";"197" +"20230518:21";"52" +"20230518:22";"998" +"20230518:23";"363" +"20230519:00";"364" +"20230519:01";"343" +"20230519:02";"247" +"20230519:03";"952" +"20230519:04";"420" +"20230519:05";"811" +"20230519:06";"747" +"20230519:07";"792" +"20230519:08";"676" +"20230519:09";"257" +"20230519:10";"610" +"20230519:11";"433" +"20230519:12";"967" +"20230519:13";"511" +"20230519:14";"403" +"20230519:15";"256" +"20230519:16";"617" +"20230519:17";"889" +"20230519:18";"87" +"20230519:19";"96" +"20230519:20";"567" +"20230519:21";"456" +"20230519:22";"184" +"20230519:23";"584" +"20230520:00";"456" +"20230520:01";"266" +"20230520:02";"597" +"20230520:03";"790" +"20230520:04";"480" +"20230520:05";"54" +"20230520:06";"384" +"20230520:07";"132" +"20230520:08";"880" +"20230520:09";"274" +"20230520:10";"412" +"20230520:11";"176" +"20230520:12";"437" +"20230520:13";"999" +"20230520:14";"161" +"20230520:15";"860" +"20230520:16";"831" +"20230520:17";"307" +"20230520:18";"853" +"20230520:19";"899" +"20230520:20";"912" +"20230520:21";"64" +"20230520:22";"396" +"20230520:23";"698" +"20230521:00";"855" +"20230521:01";"608" +"20230521:02";"774" +"20230521:03";"96" +"20230521:04";"16" +"20230521:05";"457" +"20230521:06";"975" +"20230521:07";"894" +"20230521:08";"365" +"20230521:09";"988" +"20230521:10";"397" +"20230521:11";"976" +"20230521:12";"161" +"20230521:13";"439" +"20230521:14";"355" +"20230521:15";"614" +"20230521:16";"218" +"20230521:17";"434" +"20230521:18";"989" +"20230521:19";"138" +"20230521:20";"747" +"20230521:21";"182" +"20230521:22";"530" +"20230521:23";"950" +"20230522:00";"244" +"20230522:01";"897" +"20230522:02";"916" +"20230522:03";"658" +"20230522:04";"955" +"20230522:05";"455" +"20230522:06";"796" +"20230522:07";"40" +"20230522:08";"171" +"20230522:09";"385" +"20230522:10";"358" +"20230522:11";"667" +"20230522:12";"941" +"20230522:13";"882" +"20230522:14";"714" +"20230522:15";"423" +"20230522:16";"177" +"20230522:17";"609" +"20230522:18";"402" +"20230522:19";"712" +"20230522:20";"17" +"20230522:21";"343" +"20230522:22";"746" +"20230522:23";"532" +"20230523:00";"130" +"20230523:01";"213" +"20230523:02";"154" +"20230523:03";"44" +"20230523:04";"959" +"20230523:05";"587" +"20230523:06";"228" +"20230523:07";"607" +"20230523:08";"330" +"20230523:09";"992" +"20230523:10";"664" +"20230523:11";"201" +"20230523:12";"503" +"20230523:13";"676" +"20230523:14";"330" +"20230523:15";"676" +"20230523:16";"248" +"20230523:17";"399" +"20230523:18";"341" +"20230523:19";"120" +"20230523:20";"681" +"20230523:21";"696" +"20230523:22";"527" +"20230523:23";"941" +"20230524:00";"653" +"20230524:01";"335" +"20230524:02";"547" +"20230524:03";"162" +"20230524:04";"551" +"20230524:05";"287" +"20230524:06";"792" +"20230524:07";"768" +"20230524:08";"250" +"20230524:09";"323" +"20230524:10";"198" +"20230524:11";"508" +"20230524:12";"0" +"20230524:13";"7" +"20230524:14";"806" +"20230524:15";"326" +"20230524:16";"483" +"20230524:17";"391" +"20230524:18";"900" +"20230524:19";"111" +"20230524:20";"430" +"20230524:21";"180" +"20230524:22";"78" +"20230524:23";"617" +"20230525:00";"145" +"20230525:01";"223" +"20230525:02";"962" +"20230525:03";"891" +"20230525:04";"964" +"20230525:05";"217" +"20230525:06";"367" +"20230525:07";"165" +"20230525:08";"385" +"20230525:09";"803" +"20230525:10";"332" +"20230525:11";"606" +"20230525:12";"441" +"20230525:13";"330" +"20230525:14";"501" +"20230525:15";"2" +"20230525:16";"530" +"20230525:17";"951" +"20230525:18";"430" +"20230525:19";"639" +"20230525:20";"841" +"20230525:21";"326" +"20230525:22";"264" +"20230525:23";"375" +"20230526:00";"759" +"20230526:01";"303" +"20230526:02";"663" +"20230526:03";"70" +"20230526:04";"655" +"20230526:05";"60" +"20230526:06";"144" +"20230526:07";"773" +"20230526:08";"615" +"20230526:09";"871" +"20230526:10";"737" +"20230526:11";"51" +"20230526:12";"687" +"20230526:13";"491" +"20230526:14";"666" +"20230526:15";"511" +"20230526:16";"931" +"20230526:17";"798" +"20230526:18";"385" +"20230526:19";"623" +"20230526:20";"343" +"20230526:21";"994" +"20230526:22";"142" +"20230526:23";"180" +"20230527:00";"179" +"20230527:01";"894" +"20230527:02";"792" +"20230527:03";"745" +"20230527:04";"158" +"20230527:05";"964" +"20230527:06";"489" +"20230527:07";"156" +"20230527:08";"187" +"20230527:09";"992" +"20230527:10";"171" +"20230527:11";"595" +"20230527:12";"296" +"20230527:13";"826" +"20230527:14";"694" +"20230527:15";"970" +"20230527:16";"879" +"20230527:17";"665" +"20230527:18";"98" +"20230527:19";"395" +"20230527:20";"342" +"20230527:21";"32" +"20230527:22";"342" +"20230527:23";"699" +"20230528:00";"155" +"20230528:01";"565" +"20230528:02";"18" +"20230528:03";"706" +"20230528:04";"359" +"20230528:05";"852" +"20230528:06";"283" +"20230528:07";"643" +"20230528:08";"136" +"20230528:09";"300" +"20230528:10";"921" +"20230528:11";"988" +"20230528:12";"82" +"20230528:13";"941" +"20230528:14";"626" +"20230528:15";"485" +"20230528:16";"833" +"20230528:17";"879" +"20230528:18";"139" +"20230528:19";"548" +"20230528:20";"267" +"20230528:21";"580" +"20230528:22";"998" +"20230528:23";"728" +"20230529:00";"566" +"20230529:01";"882" +"20230529:02";"113" +"20230529:03";"680" +"20230529:04";"499" +"20230529:05";"307" +"20230529:06";"738" +"20230529:07";"703" +"20230529:08";"70" +"20230529:09";"19" +"20230529:10";"894" +"20230529:11";"922" +"20230529:12";"754" +"20230529:13";"673" +"20230529:14";"791" +"20230529:15";"908" +"20230529:16";"967" +"20230529:17";"244" +"20230529:18";"68" +"20230529:19";"716" +"20230529:20";"233" +"20230529:21";"470" +"20230529:22";"283" +"20230529:23";"51" +"20230530:00";"769" +"20230530:01";"817" +"20230530:02";"767" +"20230530:03";"866" +"20230530:04";"459" +"20230530:05";"724" +"20230530:06";"805" +"20230530:07";"859" +"20230530:08";"466" +"20230530:09";"727" +"20230530:10";"784" +"20230530:11";"485" +"20230530:12";"96" +"20230530:13";"404" +"20230530:14";"810" +"20230530:15";"595" +"20230530:16";"133" +"20230530:17";"381" +"20230530:18";"538" +"20230530:19";"506" +"20230530:20";"327" +"20230530:21";"960" +"20230530:22";"632" +"20230530:23";"136" +"20230531:00";"482" +"20230531:01";"778" +"20230531:02";"980" +"20230531:03";"219" +"20230531:04";"781" +"20230531:05";"339" +"20230531:06";"267" +"20230531:07";"247" +"20230531:08";"881" +"20230531:09";"610" +"20230531:10";"489" +"20230531:11";"710" +"20230531:12";"55" +"20230531:13";"356" +"20230531:14";"513" +"20230531:15";"653" +"20230531:16";"500" +"20230531:17";"940" +"20230531:18";"517" +"20230531:19";"377" +"20230531:20";"819" +"20230531:21";"328" +"20230531:22";"493" +"20230531:23";"740" +"20230601:00";"935" +"20230601:01";"326" +"20230601:02";"136" +"20230601:03";"135" +"20230601:04";"307" +"20230601:05";"668" +"20230601:06";"779" +"20230601:07";"532" +"20230601:08";"616" +"20230601:09";"259" +"20230601:10";"211" +"20230601:11";"74" +"20230601:12";"231" +"20230601:13";"152" +"20230601:14";"48" +"20230601:15";"266" +"20230601:16";"619" +"20230601:17";"890" +"20230601:18";"392" +"20230601:19";"766" +"20230601:20";"720" +"20230601:21";"607" +"20230601:22";"658" +"20230601:23";"262" +"20230602:00";"427" +"20230602:01";"555" +"20230602:02";"311" +"20230602:03";"792" +"20230602:04";"795" +"20230602:05";"514" +"20230602:06";"950" +"20230602:07";"137" +"20230602:08";"311" +"20230602:09";"575" +"20230602:10";"86" +"20230602:11";"721" +"20230602:12";"587" +"20230602:13";"127" +"20230602:14";"543" +"20230602:15";"639" +"20230602:16";"737" +"20230602:17";"760" +"20230602:18";"157" +"20230602:19";"235" +"20230602:20";"820" +"20230602:21";"873" +"20230602:22";"374" +"20230602:23";"711" +"20230603:00";"927" +"20230603:01";"438" +"20230603:02";"912" +"20230603:03";"294" +"20230603:04";"150" +"20230603:05";"894" +"20230603:06";"716" +"20230603:07";"567" +"20230603:08";"369" +"20230603:09";"610" +"20230603:10";"413" +"20230603:11";"656" +"20230603:12";"926" +"20230603:13";"584" +"20230603:14";"453" +"20230603:15";"644" +"20230603:16";"280" +"20230603:17";"945" +"20230603:18";"860" +"20230603:19";"269" +"20230603:20";"941" +"20230603:21";"359" +"20230603:22";"46" +"20230603:23";"113" +"20230604:00";"844" +"20230604:01";"971" +"20230604:02";"739" +"20230604:03";"113" +"20230604:04";"548" +"20230604:05";"309" +"20230604:06";"532" +"20230604:07";"657" +"20230604:08";"280" +"20230604:09";"373" +"20230604:10";"835" +"20230604:11";"673" +"20230604:12";"823" +"20230604:13";"109" +"20230604:14";"942" +"20230604:15";"176" +"20230604:16";"372" +"20230604:17";"539" +"20230604:18";"433" +"20230604:19";"150" +"20230604:20";"244" +"20230604:21";"453" +"20230604:22";"1" +"20230604:23";"681" +"20230605:00";"666" +"20230605:01";"653" +"20230605:02";"907" +"20230605:03";"119" +"20230605:04";"816" +"20230605:05";"321" +"20230605:06";"846" +"20230605:07";"770" +"20230605:08";"484" +"20230605:09";"571" +"20230605:10";"829" +"20230605:11";"204" +"20230605:12";"802" +"20230605:13";"262" +"20230605:14";"330" +"20230605:15";"51" +"20230605:16";"498" +"20230605:17";"264" +"20230605:18";"700" +"20230605:19";"62" +"20230605:20";"61" +"20230605:21";"816" +"20230605:22";"544" +"20230605:23";"26" +"20230606:00";"218" +"20230606:01";"955" +"20230606:02";"972" +"20230606:03";"961" +"20230606:04";"540" +"20230606:05";"422" +"20230606:06";"975" +"20230606:07";"43" +"20230606:08";"692" +"20230606:09";"328" +"20230606:10";"918" +"20230606:11";"228" +"20230606:12";"501" +"20230606:13";"821" +"20230606:14";"819" +"20230606:15";"222" +"20230606:16";"703" +"20230606:17";"183" +"20230606:18";"328" +"20230606:19";"676" +"20230606:20";"355" +"20230606:21";"867" +"20230606:22";"968" +"20230606:23";"903" +"20230607:00";"683" +"20230607:01";"422" +"20230607:02";"950" +"20230607:03";"278" +"20230607:04";"271" +"20230607:05";"889" +"20230607:06";"540" +"20230607:07";"872" +"20230607:08";"352" +"20230607:09";"985" +"20230607:10";"593" +"20230607:11";"787" +"20230607:12";"609" +"20230607:13";"827" +"20230607:14";"488" +"20230607:15";"107" +"20230607:16";"568" +"20230607:17";"996" +"20230607:18";"782" +"20230607:19";"194" +"20230607:20";"748" +"20230607:21";"66" +"20230607:22";"875" +"20230607:23";"940" +"20230608:00";"238" +"20230608:01";"198" +"20230608:02";"504" +"20230608:03";"309" +"20230608:04";"886" +"20230608:05";"408" +"20230608:06";"895" +"20230608:07";"627" +"20230608:08";"136" +"20230608:09";"679" +"20230608:10";"546" +"20230608:11";"626" +"20230608:12";"199" +"20230608:13";"99" +"20230608:14";"711" +"20230608:15";"533" +"20230608:16";"258" +"20230608:17";"614" +"20230608:18";"164" +"20230608:19";"95" +"20230608:20";"215" +"20230608:21";"778" +"20230608:22";"337" +"20230608:23";"296" +"20230609:00";"927" +"20230609:01";"454" +"20230609:02";"338" +"20230609:03";"639" +"20230609:04";"286" +"20230609:05";"635" +"20230609:06";"482" +"20230609:07";"251" +"20230609:08";"37" +"20230609:09";"788" +"20230609:10";"330" +"20230609:11";"823" +"20230609:12";"753" +"20230609:13";"196" +"20230609:14";"983" +"20230609:15";"235" +"20230609:16";"754" +"20230609:17";"998" +"20230609:18";"936" +"20230609:19";"350" +"20230609:20";"780" +"20230609:21";"273" +"20230609:22";"222" +"20230609:23";"320" +"20230610:00";"153" +"20230610:01";"389" +"20230610:02";"70" +"20230610:03";"536" +"20230610:04";"542" +"20230610:05";"556" +"20230610:06";"698" +"20230610:07";"412" +"20230610:08";"800" +"20230610:09";"847" +"20230610:10";"323" +"20230610:11";"197" +"20230610:12";"677" +"20230610:13";"426" +"20230610:14";"263" +"20230610:15";"215" +"20230610:16";"40" +"20230610:17";"904" +"20230610:18";"61" +"20230610:19";"211" +"20230610:20";"387" +"20230610:21";"455" +"20230610:22";"840" +"20230610:23";"923" +"20230611:00";"704" +"20230611:01";"48" +"20230611:02";"384" +"20230611:03";"212" +"20230611:04";"215" +"20230611:05";"991" +"20230611:06";"3" +"20230611:07";"406" +"20230611:08";"917" +"20230611:09";"887" +"20230611:10";"608" +"20230611:11";"672" +"20230611:12";"958" +"20230611:13";"850" +"20230611:14";"228" +"20230611:15";"907" +"20230611:16";"870" +"20230611:17";"298" +"20230611:18";"707" +"20230611:19";"700" +"20230611:20";"920" +"20230611:21";"506" +"20230611:22";"502" +"20230611:23";"613" +"20230612:00";"750" +"20230612:01";"115" +"20230612:02";"491" +"20230612:03";"182" +"20230612:04";"504" +"20230612:05";"924" +"20230612:06";"228" +"20230612:07";"407" +"20230612:08";"273" +"20230612:09";"523" +"20230612:10";"769" +"20230612:11";"928" +"20230612:12";"670" +"20230612:13";"967" +"20230612:14";"194" +"20230612:15";"914" +"20230612:16";"474" +"20230612:17";"517" +"20230612:18";"583" +"20230612:19";"406" +"20230612:20";"839" +"20230612:21";"12" +"20230612:22";"926" +"20230612:23";"382" +"20230613:00";"805" +"20230613:01";"693" +"20230613:02";"752" +"20230613:03";"837" +"20230613:04";"919" +"20230613:05";"102" +"20230613:06";"679" +"20230613:07";"504" +"20230613:08";"433" +"20230613:09";"69" +"20230613:10";"84" +"20230613:11";"173" +"20230613:12";"9" +"20230613:13";"741" +"20230613:14";"595" +"20230613:15";"958" +"20230613:16";"646" +"20230613:17";"843" +"20230613:18";"260" +"20230613:19";"192" +"20230613:20";"402" +"20230613:21";"14" +"20230613:22";"734" +"20230613:23";"610" +"20230614:00";"457" +"20230614:01";"540" +"20230614:02";"821" +"20230614:03";"337" +"20230614:04";"98" +"20230614:05";"564" +"20230614:06";"830" +"20230614:07";"490" +"20230614:08";"679" +"20230614:09";"391" +"20230614:10";"745" +"20230614:11";"77" +"20230614:12";"465" +"20230614:13";"126" +"20230614:14";"730" +"20230614:15";"357" +"20230614:16";"587" +"20230614:17";"832" +"20230614:18";"533" +"20230614:19";"108" +"20230614:20";"932" +"20230614:21";"699" +"20230614:22";"593" +"20230614:23";"828" +"20230615:00";"148" +"20230615:01";"373" +"20230615:02";"396" +"20230615:03";"598" +"20230615:04";"931" +"20230615:05";"508" +"20230615:06";"721" +"20230615:07";"835" +"20230615:08";"275" +"20230615:09";"339" +"20230615:10";"463" +"20230615:11";"474" +"20230615:12";"985" +"20230615:13";"586" +"20230615:14";"388" +"20230615:15";"595" +"20230615:16";"929" +"20230615:17";"33" +"20230615:18";"974" +"20230615:19";"688" +"20230615:20";"581" +"20230615:21";"120" +"20230615:22";"762" +"20230615:23";"955" +"20230616:00";"591" +"20230616:01";"29" +"20230616:02";"927" +"20230616:03";"99" +"20230616:04";"519" +"20230616:05";"134" +"20230616:06";"854" +"20230616:07";"149" +"20230616:08";"88" +"20230616:09";"835" +"20230616:10";"734" +"20230616:11";"833" +"20230616:12";"968" +"20230616:13";"608" +"20230616:14";"746" +"20230616:15";"666" +"20230616:16";"195" +"20230616:17";"137" +"20230616:18";"530" +"20230616:19";"499" +"20230616:20";"215" +"20230616:21";"900" +"20230616:22";"721" +"20230616:23";"336" +"20230617:00";"539" +"20230617:01";"632" +"20230617:02";"665" +"20230617:03";"861" +"20230617:04";"84" +"20230617:05";"945" +"20230617:06";"48" +"20230617:07";"451" +"20230617:08";"976" +"20230617:09";"693" +"20230617:10";"159" +"20230617:11";"449" +"20230617:12";"731" +"20230617:13";"544" +"20230617:14";"813" +"20230617:15";"623" +"20230617:16";"896" +"20230617:17";"21" +"20230617:18";"796" +"20230617:19";"220" +"20230617:20";"619" +"20230617:21";"120" +"20230617:22";"881" +"20230617:23";"518" +"20230618:00";"413" +"20230618:01";"698" +"20230618:02";"705" +"20230618:03";"204" +"20230618:04";"868" +"20230618:05";"813" +"20230618:06";"834" +"20230618:07";"371" +"20230618:08";"567" +"20230618:09";"880" +"20230618:10";"823" +"20230618:11";"602" +"20230618:12";"989" +"20230618:13";"56" +"20230618:14";"416" +"20230618:15";"17" +"20230618:16";"268" +"20230618:17";"243" +"20230618:18";"0" +"20230618:19";"706" +"20230618:20";"755" +"20230618:21";"771" +"20230618:22";"713" +"20230618:23";"624" +"20230619:00";"923" +"20230619:01";"141" +"20230619:02";"612" +"20230619:03";"504" +"20230619:04";"879" +"20230619:05";"345" +"20230619:06";"464" +"20230619:07";"306" +"20230619:08";"662" +"20230619:09";"849" +"20230619:10";"407" +"20230619:11";"973" +"20230619:12";"510" +"20230619:13";"65" +"20230619:14";"961" +"20230619:15";"272" +"20230619:16";"334" +"20230619:17";"510" +"20230619:18";"894" +"20230619:19";"774" +"20230619:20";"985" +"20230619:21";"822" +"20230619:22";"881" +"20230619:23";"890" +"20230620:00";"447" +"20230620:01";"545" +"20230620:02";"358" +"20230620:03";"225" +"20230620:04";"189" +"20230620:05";"905" +"20230620:06";"643" +"20230620:07";"369" +"20230620:08";"28" +"20230620:09";"415" +"20230620:10";"623" +"20230620:11";"950" +"20230620:12";"866" +"20230620:13";"542" +"20230620:14";"914" +"20230620:15";"480" +"20230620:16";"647" +"20230620:17";"301" +"20230620:18";"749" +"20230620:19";"435" +"20230620:20";"824" +"20230620:21";"89" +"20230620:22";"155" +"20230620:23";"621" +"20230621:00";"200" +"20230621:01";"246" +"20230621:02";"392" +"20230621:03";"832" +"20230621:04";"862" +"20230621:05";"469" +"20230621:06";"852" +"20230621:07";"624" +"20230621:08";"332" +"20230621:09";"318" +"20230621:10";"998" +"20230621:11";"221" +"20230621:12";"266" +"20230621:13";"404" +"20230621:14";"109" +"20230621:15";"757" +"20230621:16";"709" +"20230621:17";"840" +"20230621:18";"478" +"20230621:19";"96" +"20230621:20";"71" +"20230621:21";"963" +"20230621:22";"69" +"20230621:23";"138" +"20230622:00";"286" +"20230622:01";"796" +"20230622:02";"24" +"20230622:03";"929" +"20230622:04";"929" +"20230622:05";"499" +"20230622:06";"261" +"20230622:07";"901" +"20230622:08";"387" +"20230622:09";"569" +"20230622:10";"183" +"20230622:11";"417" +"20230622:12";"645" +"20230622:13";"188" +"20230622:14";"311" +"20230622:15";"348" +"20230622:16";"125" +"20230622:17";"990" +"20230622:18";"403" +"20230622:19";"618" +"20230622:20";"577" +"20230622:21";"348" +"20230622:22";"607" +"20230622:23";"191" +"20230623:00";"454" +"20230623:01";"700" +"20230623:02";"226" +"20230623:03";"200" +"20230623:04";"364" +"20230623:05";"4" +"20230623:06";"823" +"20230623:07";"993" +"20230623:08";"721" +"20230623:09";"638" +"20230623:10";"660" +"20230623:11";"674" +"20230623:12";"742" +"20230623:13";"522" +"20230623:14";"767" +"20230623:15";"674" +"20230623:16";"576" +"20230623:17";"228" +"20230623:18";"352" +"20230623:19";"655" +"20230623:20";"376" +"20230623:21";"113" +"20230623:22";"984" +"20230623:23";"881" +"20230624:00";"158" +"20230624:01";"22" +"20230624:02";"480" +"20230624:03";"343" +"20230624:04";"252" +"20230624:05";"277" +"20230624:06";"780" +"20230624:07";"976" +"20230624:08";"491" +"20230624:09";"399" +"20230624:10";"49" +"20230624:11";"862" +"20230624:12";"625" +"20230624:13";"319" +"20230624:14";"809" +"20230624:15";"543" +"20230624:16";"402" +"20230624:17";"778" +"20230624:18";"378" +"20230624:19";"517" +"20230624:20";"827" +"20230624:21";"501" +"20230624:22";"721" +"20230624:23";"185" +"20230625:00";"522" +"20230625:01";"20" +"20230625:02";"430" +"20230625:03";"37" +"20230625:04";"485" +"20230625:05";"241" +"20230625:06";"335" +"20230625:07";"383" +"20230625:08";"60" +"20230625:09";"760" +"20230625:10";"223" +"20230625:11";"889" +"20230625:12";"722" +"20230625:13";"331" +"20230625:14";"728" +"20230625:15";"276" +"20230625:16";"756" +"20230625:17";"959" +"20230625:18";"607" +"20230625:19";"784" +"20230625:20";"396" +"20230625:21";"490" +"20230625:22";"570" +"20230625:23";"56" +"20230626:00";"963" +"20230626:01";"396" +"20230626:02";"936" +"20230626:03";"833" +"20230626:04";"761" +"20230626:05";"626" +"20230626:06";"30" +"20230626:07";"6" +"20230626:08";"84" +"20230626:09";"297" +"20230626:10";"175" +"20230626:11";"538" +"20230626:12";"286" +"20230626:13";"172" +"20230626:14";"60" +"20230626:15";"687" +"20230626:16";"556" +"20230626:17";"622" +"20230626:18";"9" +"20230626:19";"367" +"20230626:20";"271" +"20230626:21";"632" +"20230626:22";"475" +"20230626:23";"695" +"20230627:00";"213" +"20230627:01";"885" +"20230627:02";"969" +"20230627:03";"702" +"20230627:04";"561" +"20230627:05";"365" +"20230627:06";"312" +"20230627:07";"326" +"20230627:08";"512" +"20230627:09";"262" +"20230627:10";"599" +"20230627:11";"991" +"20230627:12";"512" +"20230627:13";"747" +"20230627:14";"968" +"20230627:15";"954" +"20230627:16";"903" +"20230627:17";"251" +"20230627:18";"785" +"20230627:19";"264" +"20230627:20";"0" +"20230627:21";"355" +"20230627:22";"644" +"20230627:23";"751" +"20230628:00";"698" +"20230628:01";"532" +"20230628:02";"635" +"20230628:03";"490" +"20230628:04";"111" +"20230628:05";"337" +"20230628:06";"418" +"20230628:07";"802" +"20230628:08";"189" +"20230628:09";"206" +"20230628:10";"315" +"20230628:11";"730" +"20230628:12";"620" +"20230628:13";"794" +"20230628:14";"841" +"20230628:15";"41" +"20230628:16";"485" +"20230628:17";"827" +"20230628:18";"365" +"20230628:19";"580" +"20230628:20";"784" +"20230628:21";"498" +"20230628:22";"119" +"20230628:23";"389" +"20230629:00";"688" +"20230629:01";"434" +"20230629:02";"881" +"20230629:03";"801" +"20230629:04";"903" +"20230629:05";"183" +"20230629:06";"901" +"20230629:07";"354" +"20230629:08";"467" +"20230629:09";"146" +"20230629:10";"645" +"20230629:11";"182" +"20230629:12";"838" +"20230629:13";"850" +"20230629:14";"29" +"20230629:15";"206" +"20230629:16";"563" +"20230629:17";"275" +"20230629:18";"533" +"20230629:19";"835" +"20230629:20";"624" +"20230629:21";"144" +"20230629:22";"173" +"20230629:23";"257" +"20230630:00";"933" +"20230630:01";"632" +"20230630:02";"680" +"20230630:03";"884" +"20230630:04";"105" +"20230630:05";"715" +"20230630:06";"410" +"20230630:07";"76" +"20230630:08";"284" +"20230630:09";"768" +"20230630:10";"10" +"20230630:11";"875" +"20230630:12";"315" +"20230630:13";"451" +"20230630:14";"653" +"20230630:15";"796" +"20230630:16";"315" +"20230630:17";"967" +"20230630:18";"13" +"20230630:19";"626" +"20230630:20";"706" +"20230630:21";"509" +"20230630:22";"150" +"20230630:23";"723" +"20230701:00";"62" +"20230701:01";"498" +"20230701:02";"519" +"20230701:03";"953" +"20230701:04";"498" +"20230701:05";"77" +"20230701:06";"303" +"20230701:07";"775" +"20230701:08";"785" +"20230701:09";"561" +"20230701:10";"384" +"20230701:11";"509" +"20230701:12";"265" +"20230701:13";"177" +"20230701:14";"25" +"20230701:15";"901" +"20230701:16";"963" +"20230701:17";"988" +"20230701:18";"243" +"20230701:19";"234" +"20230701:20";"48" +"20230701:21";"47" +"20230701:22";"715" +"20230701:23";"438" +"20230702:00";"930" +"20230702:01";"320" +"20230702:02";"428" +"20230702:03";"36" +"20230702:04";"389" +"20230702:05";"414" +"20230702:06";"250" +"20230702:07";"964" +"20230702:08";"903" +"20230702:09";"989" +"20230702:10";"501" +"20230702:11";"91" +"20230702:12";"100" +"20230702:13";"516" +"20230702:14";"882" +"20230702:15";"932" +"20230702:16";"668" +"20230702:17";"40" +"20230702:18";"766" +"20230702:19";"807" +"20230702:20";"976" +"20230702:21";"163" +"20230702:22";"280" +"20230702:23";"833" +"20230703:00";"981" +"20230703:01";"42" +"20230703:02";"613" +"20230703:03";"903" +"20230703:04";"586" +"20230703:05";"388" +"20230703:06";"277" +"20230703:07";"85" +"20230703:08";"308" +"20230703:09";"962" +"20230703:10";"938" +"20230703:11";"355" +"20230703:12";"571" +"20230703:13";"662" +"20230703:14";"280" +"20230703:15";"733" +"20230703:16";"642" +"20230703:17";"810" +"20230703:18";"188" +"20230703:19";"257" +"20230703:20";"448" +"20230703:21";"193" +"20230703:22";"406" +"20230703:23";"428" +"20230704:00";"106" +"20230704:01";"675" +"20230704:02";"867" +"20230704:03";"680" +"20230704:04";"581" +"20230704:05";"657" +"20230704:06";"169" +"20230704:07";"53" +"20230704:08";"822" +"20230704:09";"984" +"20230704:10";"167" +"20230704:11";"535" +"20230704:12";"931" +"20230704:13";"316" +"20230704:14";"602" +"20230704:15";"481" +"20230704:16";"429" +"20230704:17";"589" +"20230704:18";"482" +"20230704:19";"946" +"20230704:20";"936" +"20230704:21";"425" +"20230704:22";"933" +"20230704:23";"830" +"20230705:00";"943" +"20230705:01";"314" +"20230705:02";"751" +"20230705:03";"417" +"20230705:04";"410" +"20230705:05";"994" +"20230705:06";"460" +"20230705:07";"104" +"20230705:08";"223" +"20230705:09";"816" +"20230705:10";"350" +"20230705:11";"765" +"20230705:12";"42" +"20230705:13";"762" +"20230705:14";"15" +"20230705:15";"982" +"20230705:16";"10" +"20230705:17";"868" +"20230705:18";"477" +"20230705:19";"164" +"20230705:20";"311" +"20230705:21";"571" +"20230705:22";"605" +"20230705:23";"539" +"20230706:00";"602" +"20230706:01";"608" +"20230706:02";"908" +"20230706:03";"807" +"20230706:04";"816" +"20230706:05";"856" +"20230706:06";"215" +"20230706:07";"15" +"20230706:08";"844" +"20230706:09";"726" +"20230706:10";"416" +"20230706:11";"309" +"20230706:12";"41" +"20230706:13";"479" +"20230706:14";"707" +"20230706:15";"438" +"20230706:16";"454" +"20230706:17";"960" +"20230706:18";"322" +"20230706:19";"247" +"20230706:20";"458" +"20230706:21";"731" +"20230706:22";"364" +"20230706:23";"907" +"20230707:00";"529" +"20230707:01";"12" +"20230707:02";"23" +"20230707:03";"313" +"20230707:04";"6" +"20230707:05";"60" +"20230707:06";"469" +"20230707:07";"931" +"20230707:08";"414" +"20230707:09";"400" +"20230707:10";"353" +"20230707:11";"779" +"20230707:12";"639" +"20230707:13";"416" +"20230707:14";"848" +"20230707:15";"202" +"20230707:16";"504" +"20230707:17";"959" +"20230707:18";"722" +"20230707:19";"301" +"20230707:20";"880" +"20230707:21";"879" +"20230707:22";"604" +"20230707:23";"53" +"20230708:00";"473" +"20230708:01";"971" +"20230708:02";"469" +"20230708:03";"736" +"20230708:04";"388" +"20230708:05";"442" +"20230708:06";"850" +"20230708:07";"303" +"20230708:08";"587" +"20230708:09";"466" +"20230708:10";"710" +"20230708:11";"975" +"20230708:12";"578" +"20230708:13";"631" +"20230708:14";"116" +"20230708:15";"928" +"20230708:16";"96" +"20230708:17";"479" +"20230708:18";"405" +"20230708:19";"684" +"20230708:20";"822" +"20230708:21";"971" +"20230708:22";"357" +"20230708:23";"349" +"20230709:00";"779" +"20230709:01";"730" +"20230709:02";"337" +"20230709:03";"782" +"20230709:04";"429" +"20230709:05";"166" +"20230709:06";"864" +"20230709:07";"273" +"20230709:08";"332" +"20230709:09";"994" +"20230709:10";"242" +"20230709:11";"726" +"20230709:12";"111" +"20230709:13";"978" +"20230709:14";"717" +"20230709:15";"288" +"20230709:16";"598" +"20230709:17";"382" +"20230709:18";"265" +"20230709:19";"792" +"20230709:20";"257" +"20230709:21";"786" +"20230709:22";"899" +"20230709:23";"765" +"20230710:00";"210" +"20230710:01";"257" +"20230710:02";"136" +"20230710:03";"658" +"20230710:04";"876" +"20230710:05";"771" +"20230710:06";"524" +"20230710:07";"179" +"20230710:08";"903" +"20230710:09";"550" +"20230710:10";"463" +"20230710:11";"990" +"20230710:12";"77" +"20230710:13";"513" +"20230710:14";"457" +"20230710:15";"620" +"20230710:16";"891" +"20230710:17";"335" +"20230710:18";"729" +"20230710:19";"657" +"20230710:20";"13" +"20230710:21";"35" +"20230710:22";"569" +"20230710:23";"589" +"20230711:00";"7" +"20230711:01";"742" +"20230711:02";"709" +"20230711:03";"947" +"20230711:04";"350" +"20230711:05";"91" +"20230711:06";"189" +"20230711:07";"741" +"20230711:08";"928" +"20230711:09";"825" +"20230711:10";"216" +"20230711:11";"283" +"20230711:12";"622" +"20230711:13";"231" +"20230711:14";"62" +"20230711:15";"923" +"20230711:16";"18" +"20230711:17";"279" +"20230711:18";"538" +"20230711:19";"675" +"20230711:20";"477" +"20230711:21";"135" +"20230711:22";"495" +"20230711:23";"466" +"20230712:00";"537" +"20230712:01";"894" +"20230712:02";"571" +"20230712:03";"516" +"20230712:04";"64" +"20230712:05";"33" +"20230712:06";"953" +"20230712:07";"243" +"20230712:08";"341" +"20230712:09";"730" +"20230712:10";"184" +"20230712:11";"873" +"20230712:12";"687" +"20230712:13";"143" +"20230712:14";"249" +"20230712:15";"731" +"20230712:16";"53" +"20230712:17";"60" +"20230712:18";"155" +"20230712:19";"516" +"20230712:20";"604" +"20230712:21";"705" +"20230712:22";"462" +"20230712:23";"977" +"20230713:00";"125" +"20230713:01";"809" +"20230713:02";"725" +"20230713:03";"163" +"20230713:04";"429" +"20230713:05";"237" +"20230713:06";"412" +"20230713:07";"956" +"20230713:08";"767" +"20230713:09";"611" +"20230713:10";"296" +"20230713:11";"929" +"20230713:12";"212" +"20230713:13";"88" +"20230713:14";"759" +"20230713:15";"176" +"20230713:16";"842" +"20230713:17";"632" +"20230713:18";"261" +"20230713:19";"844" +"20230713:20";"506" +"20230713:21";"804" +"20230713:22";"556" +"20230713:23";"171" +"20230714:00";"690" +"20230714:01";"724" +"20230714:02";"456" +"20230714:03";"747" +"20230714:04";"144" +"20230714:05";"409" +"20230714:06";"772" +"20230714:07";"164" +"20230714:08";"402" +"20230714:09";"590" +"20230714:10";"660" +"20230714:11";"534" +"20230714:12";"101" +"20230714:13";"360" +"20230714:14";"738" +"20230714:15";"833" +"20230714:16";"290" +"20230714:17";"242" +"20230714:18";"122" +"20230714:19";"72" +"20230714:20";"767" +"20230714:21";"956" +"20230714:22";"193" +"20230714:23";"793" +"20230715:00";"798" +"20230715:01";"189" +"20230715:02";"140" +"20230715:03";"989" +"20230715:04";"298" +"20230715:05";"283" +"20230715:06";"440" +"20230715:07";"611" +"20230715:08";"260" +"20230715:09";"458" +"20230715:10";"154" +"20230715:11";"398" +"20230715:12";"648" +"20230715:13";"685" +"20230715:14";"888" +"20230715:15";"250" +"20230715:16";"222" +"20230715:17";"155" +"20230715:18";"752" +"20230715:19";"678" +"20230715:20";"727" +"20230715:21";"910" +"20230715:22";"907" +"20230715:23";"228" +"20230716:00";"8" +"20230716:01";"187" +"20230716:02";"178" +"20230716:03";"237" +"20230716:04";"629" +"20230716:05";"888" +"20230716:06";"792" +"20230716:07";"548" +"20230716:08";"155" +"20230716:09";"363" +"20230716:10";"513" +"20230716:11";"196" +"20230716:12";"400" +"20230716:13";"651" +"20230716:14";"933" +"20230716:15";"417" +"20230716:16";"918" +"20230716:17";"865" +"20230716:18";"889" +"20230716:19";"754" +"20230716:20";"354" +"20230716:21";"485" +"20230716:22";"924" +"20230716:23";"809" +"20230717:00";"684" +"20230717:01";"729" +"20230717:02";"893" +"20230717:03";"525" +"20230717:04";"378" +"20230717:05";"95" +"20230717:06";"333" +"20230717:07";"744" +"20230717:08";"951" +"20230717:09";"448" +"20230717:10";"177" +"20230717:11";"21" +"20230717:12";"485" +"20230717:13";"759" +"20230717:14";"897" +"20230717:15";"402" +"20230717:16";"884" +"20230717:17";"979" +"20230717:18";"297" +"20230717:19";"960" +"20230717:20";"316" +"20230717:21";"809" +"20230717:22";"706" +"20230717:23";"178" +"20230718:00";"386" +"20230718:01";"819" +"20230718:02";"451" +"20230718:03";"197" +"20230718:04";"88" +"20230718:05";"746" +"20230718:06";"143" +"20230718:07";"627" +"20230718:08";"296" +"20230718:09";"623" +"20230718:10";"599" +"20230718:11";"842" +"20230718:12";"832" +"20230718:13";"498" +"20230718:14";"985" +"20230718:15";"376" +"20230718:16";"370" +"20230718:17";"353" +"20230718:18";"784" +"20230718:19";"262" +"20230718:20";"783" +"20230718:21";"776" +"20230718:22";"355" +"20230718:23";"693" +"20230719:00";"34" +"20230719:01";"554" +"20230719:02";"147" +"20230719:03";"722" +"20230719:04";"513" +"20230719:05";"202" +"20230719:06";"970" +"20230719:07";"313" +"20230719:08";"622" +"20230719:09";"398" +"20230719:10";"97" +"20230719:11";"817" +"20230719:12";"396" +"20230719:13";"644" +"20230719:14";"415" +"20230719:15";"28" +"20230719:16";"750" +"20230719:17";"634" +"20230719:18";"156" +"20230719:19";"628" +"20230719:20";"268" +"20230719:21";"959" +"20230719:22";"454" +"20230719:23";"962" +"20230720:00";"997" +"20230720:01";"679" +"20230720:02";"401" +"20230720:03";"108" +"20230720:04";"636" +"20230720:05";"150" +"20230720:06";"687" +"20230720:07";"820" +"20230720:08";"388" +"20230720:09";"417" +"20230720:10";"739" +"20230720:11";"197" +"20230720:12";"634" +"20230720:13";"456" +"20230720:14";"61" +"20230720:15";"533" +"20230720:16";"273" +"20230720:17";"384" +"20230720:18";"440" +"20230720:19";"207" +"20230720:20";"522" +"20230720:21";"327" +"20230720:22";"117" +"20230720:23";"27" +"20230721:00";"51" +"20230721:01";"527" +"20230721:02";"394" +"20230721:03";"817" +"20230721:04";"125" +"20230721:05";"469" +"20230721:06";"842" +"20230721:07";"776" +"20230721:08";"722" +"20230721:09";"797" +"20230721:10";"178" +"20230721:11";"278" +"20230721:12";"405" +"20230721:13";"963" +"20230721:14";"747" +"20230721:15";"571" +"20230721:16";"632" +"20230721:17";"680" +"20230721:18";"802" +"20230721:19";"80" +"20230721:20";"234" +"20230721:21";"312" +"20230721:22";"600" +"20230721:23";"753" +"20230722:00";"642" +"20230722:01";"905" +"20230722:02";"246" +"20230722:03";"979" +"20230722:04";"76" +"20230722:05";"573" +"20230722:06";"256" +"20230722:07";"337" +"20230722:08";"981" +"20230722:09";"564" +"20230722:10";"314" +"20230722:11";"391" +"20230722:12";"556" +"20230722:13";"687" +"20230722:14";"35" +"20230722:15";"447" +"20230722:16";"189" +"20230722:17";"101" +"20230722:18";"744" +"20230722:19";"216" +"20230722:20";"266" +"20230722:21";"10" +"20230722:22";"54" +"20230722:23";"536" +"20230723:00";"82" +"20230723:01";"767" +"20230723:02";"920" +"20230723:03";"615" +"20230723:04";"717" +"20230723:05";"301" +"20230723:06";"844" +"20230723:07";"317" +"20230723:08";"68" +"20230723:09";"452" +"20230723:10";"987" +"20230723:11";"887" +"20230723:12";"494" +"20230723:13";"109" +"20230723:14";"279" +"20230723:15";"177" +"20230723:16";"378" +"20230723:17";"183" +"20230723:18";"319" +"20230723:19";"433" +"20230723:20";"184" +"20230723:21";"84" +"20230723:22";"130" +"20230723:23";"419" +"20230724:00";"580" +"20230724:01";"736" +"20230724:02";"918" +"20230724:03";"134" +"20230724:04";"962" +"20230724:05";"839" +"20230724:06";"672" +"20230724:07";"754" +"20230724:08";"218" +"20230724:09";"166" +"20230724:10";"129" +"20230724:11";"358" +"20230724:12";"910" +"20230724:13";"920" +"20230724:14";"297" +"20230724:15";"904" +"20230724:16";"822" +"20230724:17";"804" +"20230724:18";"339" +"20230724:19";"437" +"20230724:20";"67" +"20230724:21";"250" +"20230724:22";"590" +"20230724:23";"224" +"20230725:00";"545" +"20230725:01";"717" +"20230725:02";"116" +"20230725:03";"195" +"20230725:04";"537" +"20230725:05";"618" +"20230725:06";"17" +"20230725:07";"246" +"20230725:08";"988" +"20230725:09";"399" +"20230725:10";"192" +"20230725:11";"483" +"20230725:12";"516" +"20230725:13";"371" +"20230725:14";"43" +"20230725:15";"973" +"20230725:16";"864" +"20230725:17";"391" +"20230725:18";"290" +"20230725:19";"36" +"20230725:20";"834" +"20230725:21";"342" +"20230725:22";"150" +"20230725:23";"874" +"20230726:00";"502" +"20230726:01";"531" +"20230726:02";"19" +"20230726:03";"553" +"20230726:04";"656" +"20230726:05";"12" +"20230726:06";"688" +"20230726:07";"438" +"20230726:08";"576" +"20230726:09";"122" +"20230726:10";"117" +"20230726:11";"774" +"20230726:12";"255" +"20230726:13";"482" +"20230726:14";"751" +"20230726:15";"22" +"20230726:16";"120" +"20230726:17";"273" +"20230726:18";"56" +"20230726:19";"243" +"20230726:20";"138" +"20230726:21";"531" +"20230726:22";"955" +"20230726:23";"878" +"20230727:00";"113" +"20230727:01";"410" +"20230727:02";"236" +"20230727:03";"857" +"20230727:04";"337" +"20230727:05";"588" +"20230727:06";"658" +"20230727:07";"705" +"20230727:08";"257" +"20230727:09";"780" +"20230727:10";"278" +"20230727:11";"416" +"20230727:12";"798" +"20230727:13";"362" +"20230727:14";"519" +"20230727:15";"549" +"20230727:16";"288" +"20230727:17";"731" +"20230727:18";"328" +"20230727:19";"201" +"20230727:20";"45" +"20230727:21";"543" +"20230727:22";"5" +"20230727:23";"230" +"20230728:00";"648" +"20230728:01";"548" +"20230728:02";"150" +"20230728:03";"502" +"20230728:04";"424" +"20230728:05";"384" +"20230728:06";"687" +"20230728:07";"669" +"20230728:08";"678" +"20230728:09";"653" +"20230728:10";"72" +"20230728:11";"525" +"20230728:12";"540" +"20230728:13";"787" +"20230728:14";"216" +"20230728:15";"683" +"20230728:16";"45" +"20230728:17";"964" +"20230728:18";"794" +"20230728:19";"794" +"20230728:20";"661" +"20230728:21";"146" +"20230728:22";"779" +"20230728:23";"480" +"20230729:00";"641" +"20230729:01";"599" +"20230729:02";"22" +"20230729:03";"792" +"20230729:04";"230" +"20230729:05";"969" +"20230729:06";"620" +"20230729:07";"819" +"20230729:08";"28" +"20230729:09";"529" +"20230729:10";"214" +"20230729:11";"761" +"20230729:12";"236" +"20230729:13";"484" +"20230729:14";"526" +"20230729:15";"151" +"20230729:16";"336" +"20230729:17";"946" +"20230729:18";"157" +"20230729:19";"68" +"20230729:20";"399" +"20230729:21";"197" +"20230729:22";"631" +"20230729:23";"922" +"20230730:00";"134" +"20230730:01";"191" +"20230730:02";"740" +"20230730:03";"214" +"20230730:04";"168" +"20230730:05";"397" +"20230730:06";"362" +"20230730:07";"738" +"20230730:08";"167" +"20230730:09";"401" +"20230730:10";"562" +"20230730:11";"104" +"20230730:12";"83" +"20230730:13";"26" +"20230730:14";"903" +"20230730:15";"363" +"20230730:16";"87" +"20230730:17";"883" +"20230730:18";"85" +"20230730:19";"347" +"20230730:20";"925" +"20230730:21";"508" +"20230730:22";"591" +"20230730:23";"711" +"20230731:00";"80" +"20230731:01";"815" +"20230731:02";"159" +"20230731:03";"39" +"20230731:04";"191" +"20230731:05";"410" +"20230731:06";"748" +"20230731:07";"385" +"20230731:08";"446" +"20230731:09";"857" +"20230731:10";"378" +"20230731:11";"559" +"20230731:12";"488" +"20230731:13";"425" +"20230731:14";"672" +"20230731:15";"670" +"20230731:16";"143" +"20230731:17";"700" +"20230731:18";"502" +"20230731:19";"295" +"20230731:20";"505" +"20230731:21";"718" +"20230731:22";"572" +"20230731:23";"747" +"20230801:00";"214" +"20230801:01";"590" +"20230801:02";"757" +"20230801:03";"90" +"20230801:04";"176" +"20230801:05";"338" +"20230801:06";"83" +"20230801:07";"569" +"20230801:08";"273" +"20230801:09";"675" +"20230801:10";"729" +"20230801:11";"373" +"20230801:12";"177" +"20230801:13";"386" +"20230801:14";"394" +"20230801:15";"31" +"20230801:16";"756" +"20230801:17";"655" +"20230801:18";"95" +"20230801:19";"916" +"20230801:20";"685" +"20230801:21";"236" +"20230801:22";"238" +"20230801:23";"162" +"20230802:00";"976" +"20230802:01";"731" +"20230802:02";"590" +"20230802:03";"405" +"20230802:04";"540" +"20230802:05";"863" +"20230802:06";"27" +"20230802:07";"746" +"20230802:08";"648" +"20230802:09";"191" +"20230802:10";"838" +"20230802:11";"802" +"20230802:12";"596" +"20230802:13";"229" +"20230802:14";"104" +"20230802:15";"730" +"20230802:16";"305" +"20230802:17";"590" +"20230802:18";"621" +"20230802:19";"504" +"20230802:20";"718" +"20230802:21";"789" +"20230802:22";"508" +"20230802:23";"300" +"20230803:00";"830" +"20230803:01";"156" +"20230803:02";"674" +"20230803:03";"988" +"20230803:04";"111" +"20230803:05";"566" +"20230803:06";"897" +"20230803:07";"785" +"20230803:08";"936" +"20230803:09";"72" +"20230803:10";"792" +"20230803:11";"311" +"20230803:12";"687" +"20230803:13";"930" +"20230803:14";"133" +"20230803:15";"222" +"20230803:16";"988" +"20230803:17";"937" +"20230803:18";"738" +"20230803:19";"429" +"20230803:20";"530" +"20230803:21";"77" +"20230803:22";"893" +"20230803:23";"56" +"20230804:00";"895" +"20230804:01";"858" +"20230804:02";"912" +"20230804:03";"195" +"20230804:04";"976" +"20230804:05";"394" +"20230804:06";"582" +"20230804:07";"587" +"20230804:08";"926" +"20230804:09";"952" +"20230804:10";"449" +"20230804:11";"740" +"20230804:12";"74" +"20230804:13";"537" +"20230804:14";"444" +"20230804:15";"7" +"20230804:16";"473" +"20230804:17";"705" +"20230804:18";"545" +"20230804:19";"504" +"20230804:20";"809" +"20230804:21";"963" +"20230804:22";"284" +"20230804:23";"619" +"20230805:00";"211" +"20230805:01";"962" +"20230805:02";"899" +"20230805:03";"30" +"20230805:04";"130" +"20230805:05";"299" +"20230805:06";"556" +"20230805:07";"205" +"20230805:08";"265" +"20230805:09";"454" +"20230805:10";"799" +"20230805:11";"817" +"20230805:12";"435" +"20230805:13";"466" +"20230805:14";"84" +"20230805:15";"863" +"20230805:16";"864" +"20230805:17";"402" +"20230805:18";"74" +"20230805:19";"168" +"20230805:20";"234" +"20230805:21";"981" +"20230805:22";"392" +"20230805:23";"39" +"20230806:00";"48" +"20230806:01";"634" +"20230806:02";"868" +"20230806:03";"432" +"20230806:04";"261" +"20230806:05";"427" +"20230806:06";"429" +"20230806:07";"483" +"20230806:08";"263" +"20230806:09";"541" +"20230806:10";"925" +"20230806:11";"888" +"20230806:12";"997" +"20230806:13";"345" +"20230806:14";"922" +"20230806:15";"704" +"20230806:16";"340" +"20230806:17";"294" +"20230806:18";"252" +"20230806:19";"401" +"20230806:20";"216" +"20230806:21";"623" +"20230806:22";"438" +"20230806:23";"319" +"20230807:00";"145" +"20230807:01";"177" +"20230807:02";"339" +"20230807:03";"245" +"20230807:04";"613" +"20230807:05";"696" +"20230807:06";"264" +"20230807:07";"1" +"20230807:08";"368" +"20230807:09";"681" +"20230807:10";"507" +"20230807:11";"575" +"20230807:12";"118" +"20230807:13";"975" +"20230807:14";"312" +"20230807:15";"809" +"20230807:16";"451" +"20230807:17";"534" +"20230807:18";"682" +"20230807:19";"408" +"20230807:20";"194" +"20230807:21";"927" +"20230807:22";"496" +"20230807:23";"405" +"20230808:00";"202" +"20230808:01";"188" +"20230808:02";"479" +"20230808:03";"342" +"20230808:04";"689" +"20230808:05";"599" +"20230808:06";"104" +"20230808:07";"798" +"20230808:08";"429" +"20230808:09";"13" +"20230808:10";"885" +"20230808:11";"331" +"20230808:12";"292" +"20230808:13";"713" +"20230808:14";"365" +"20230808:15";"961" +"20230808:16";"672" +"20230808:17";"933" +"20230808:18";"554" +"20230808:19";"54" +"20230808:20";"740" +"20230808:21";"458" +"20230808:22";"390" +"20230808:23";"163" +"20230809:00";"818" +"20230809:01";"811" +"20230809:02";"265" +"20230809:03";"970" +"20230809:04";"966" +"20230809:05";"512" +"20230809:06";"667" +"20230809:07";"523" +"20230809:08";"532" +"20230809:09";"834" +"20230809:10";"525" +"20230809:11";"131" +"20230809:12";"510" +"20230809:13";"957" +"20230809:14";"292" +"20230809:15";"462" +"20230809:16";"412" +"20230809:17";"340" +"20230809:18";"972" +"20230809:19";"4" +"20230809:20";"528" +"20230809:21";"349" +"20230809:22";"875" +"20230809:23";"713" +"20230810:00";"65" +"20230810:01";"661" +"20230810:02";"185" +"20230810:03";"703" +"20230810:04";"565" +"20230810:05";"43" +"20230810:06";"738" +"20230810:07";"198" +"20230810:08";"93" +"20230810:09";"989" +"20230810:10";"494" +"20230810:11";"399" +"20230810:12";"243" +"20230810:13";"31" +"20230810:14";"97" +"20230810:15";"232" +"20230810:16";"269" +"20230810:17";"680" +"20230810:18";"588" +"20230810:19";"352" +"20230810:20";"823" +"20230810:21";"697" +"20230810:22";"260" +"20230810:23";"436" +"20230811:00";"980" +"20230811:01";"241" +"20230811:02";"421" +"20230811:03";"671" +"20230811:04";"547" +"20230811:05";"804" +"20230811:06";"184" +"20230811:07";"102" +"20230811:08";"757" +"20230811:09";"894" +"20230811:10";"910" +"20230811:11";"431" +"20230811:12";"370" +"20230811:13";"684" +"20230811:14";"342" +"20230811:15";"70" +"20230811:16";"179" +"20230811:17";"569" +"20230811:18";"420" +"20230811:19";"403" +"20230811:20";"356" +"20230811:21";"671" +"20230811:22";"937" +"20230811:23";"787" +"20230812:00";"876" +"20230812:01";"588" +"20230812:02";"39" +"20230812:03";"809" +"20230812:04";"440" +"20230812:05";"970" +"20230812:06";"665" +"20230812:07";"539" +"20230812:08";"54" +"20230812:09";"863" +"20230812:10";"804" +"20230812:11";"785" +"20230812:12";"436" +"20230812:13";"698" +"20230812:14";"304" +"20230812:15";"423" +"20230812:16";"595" +"20230812:17";"11" +"20230812:18";"717" +"20230812:19";"789" +"20230812:20";"91" +"20230812:21";"748" +"20230812:22";"969" +"20230812:23";"351" +"20230813:00";"427" +"20230813:01";"299" +"20230813:02";"848" +"20230813:03";"208" +"20230813:04";"617" +"20230813:05";"865" +"20230813:06";"312" +"20230813:07";"328" +"20230813:08";"755" +"20230813:09";"928" +"20230813:10";"640" +"20230813:11";"459" +"20230813:12";"343" +"20230813:13";"994" +"20230813:14";"918" +"20230813:15";"999" +"20230813:16";"664" +"20230813:17";"949" +"20230813:18";"1" +"20230813:19";"798" +"20230813:20";"853" +"20230813:21";"523" +"20230813:22";"752" +"20230813:23";"38" +"20230814:00";"515" +"20230814:01";"383" +"20230814:02";"637" +"20230814:03";"150" +"20230814:04";"854" +"20230814:05";"774" +"20230814:06";"859" +"20230814:07";"966" +"20230814:08";"379" +"20230814:09";"156" +"20230814:10";"632" +"20230814:11";"425" +"20230814:12";"739" +"20230814:13";"568" +"20230814:14";"809" +"20230814:15";"690" +"20230814:16";"322" +"20230814:17";"97" +"20230814:18";"131" +"20230814:19";"589" +"20230814:20";"546" +"20230814:21";"344" +"20230814:22";"441" +"20230814:23";"183" +"20230815:00";"156" +"20230815:01";"540" +"20230815:02";"107" +"20230815:03";"655" +"20230815:04";"251" +"20230815:05";"53" +"20230815:06";"591" +"20230815:07";"603" +"20230815:08";"11" +"20230815:09";"16" +"20230815:10";"248" +"20230815:11";"314" +"20230815:12";"5" +"20230815:13";"826" +"20230815:14";"997" +"20230815:15";"933" +"20230815:16";"146" +"20230815:17";"553" +"20230815:18";"370" +"20230815:19";"631" +"20230815:20";"937" +"20230815:21";"786" +"20230815:22";"106" +"20230815:23";"654" +"20230816:00";"108" +"20230816:01";"869" +"20230816:02";"293" +"20230816:03";"484" +"20230816:04";"857" +"20230816:05";"573" +"20230816:06";"863" +"20230816:07";"123" +"20230816:08";"728" +"20230816:09";"30" +"20230816:10";"761" +"20230816:11";"383" +"20230816:12";"207" +"20230816:13";"381" +"20230816:14";"102" +"20230816:15";"969" +"20230816:16";"632" +"20230816:17";"587" +"20230816:18";"288" +"20230816:19";"247" +"20230816:20";"797" +"20230816:21";"985" +"20230816:22";"840" +"20230816:23";"547" +"20230817:00";"659" +"20230817:01";"855" +"20230817:02";"237" +"20230817:03";"348" +"20230817:04";"592" +"20230817:05";"652" +"20230817:06";"947" +"20230817:07";"595" +"20230817:08";"618" +"20230817:09";"666" +"20230817:10";"226" +"20230817:11";"351" +"20230817:12";"216" +"20230817:13";"237" +"20230817:14";"936" +"20230817:15";"692" +"20230817:16";"292" +"20230817:17";"752" +"20230817:18";"408" +"20230817:19";"487" +"20230817:20";"616" +"20230817:21";"452" +"20230817:22";"86" +"20230817:23";"576" +"20230818:00";"470" +"20230818:01";"272" +"20230818:02";"837" +"20230818:03";"416" +"20230818:04";"497" +"20230818:05";"95" +"20230818:06";"554" +"20230818:07";"925" +"20230818:08";"408" +"20230818:09";"416" +"20230818:10";"392" +"20230818:11";"335" +"20230818:12";"397" +"20230818:13";"190" +"20230818:14";"607" +"20230818:15";"859" +"20230818:16";"745" +"20230818:17";"454" +"20230818:18";"643" +"20230818:19";"578" +"20230818:20";"296" +"20230818:21";"534" +"20230818:22";"340" +"20230818:23";"303" +"20230819:00";"940" +"20230819:01";"738" +"20230819:02";"76" +"20230819:03";"986" +"20230819:04";"669" +"20230819:05";"385" +"20230819:06";"803" +"20230819:07";"428" +"20230819:08";"123" +"20230819:09";"589" +"20230819:10";"763" +"20230819:11";"391" +"20230819:12";"865" +"20230819:13";"329" +"20230819:14";"26" +"20230819:15";"313" +"20230819:16";"957" +"20230819:17";"244" +"20230819:18";"417" +"20230819:19";"218" +"20230819:20";"425" +"20230819:21";"115" +"20230819:22";"827" +"20230819:23";"234" +"20230820:00";"809" +"20230820:01";"713" +"20230820:02";"456" +"20230820:03";"220" +"20230820:04";"471" +"20230820:05";"714" +"20230820:06";"393" +"20230820:07";"559" +"20230820:08";"803" +"20230820:09";"544" +"20230820:10";"228" +"20230820:11";"264" +"20230820:12";"82" +"20230820:13";"762" +"20230820:14";"506" +"20230820:15";"620" +"20230820:16";"651" +"20230820:17";"50" +"20230820:18";"804" +"20230820:19";"563" +"20230820:20";"409" +"20230820:21";"616" +"20230820:22";"896" +"20230820:23";"655" +"20230821:00";"27" +"20230821:01";"328" +"20230821:02";"791" +"20230821:03";"210" +"20230821:04";"924" +"20230821:05";"225" +"20230821:06";"36" +"20230821:07";"500" +"20230821:08";"490" +"20230821:09";"563" +"20230821:10";"891" +"20230821:11";"872" +"20230821:12";"442" +"20230821:13";"995" +"20230821:14";"490" +"20230821:15";"234" +"20230821:16";"956" +"20230821:17";"806" +"20230821:18";"525" +"20230821:19";"571" +"20230821:20";"547" +"20230821:21";"204" +"20230821:22";"460" +"20230821:23";"635" +"20230822:00";"31" +"20230822:01";"707" +"20230822:02";"98" +"20230822:03";"661" +"20230822:04";"316" +"20230822:05";"702" +"20230822:06";"28" +"20230822:07";"88" +"20230822:08";"41" +"20230822:09";"942" +"20230822:10";"9" +"20230822:11";"31" +"20230822:12";"220" +"20230822:13";"832" +"20230822:14";"784" +"20230822:15";"492" +"20230822:16";"633" +"20230822:17";"715" +"20230822:18";"629" +"20230822:19";"542" +"20230822:20";"321" +"20230822:21";"189" +"20230822:22";"445" +"20230822:23";"14" +"20230823:00";"6" +"20230823:01";"339" +"20230823:02";"392" +"20230823:03";"914" +"20230823:04";"108" +"20230823:05";"857" +"20230823:06";"151" +"20230823:07";"521" +"20230823:08";"560" +"20230823:09";"136" +"20230823:10";"470" +"20230823:11";"479" +"20230823:12";"437" +"20230823:13";"431" +"20230823:14";"857" +"20230823:15";"803" +"20230823:16";"664" +"20230823:17";"514" +"20230823:18";"151" +"20230823:19";"563" +"20230823:20";"3" +"20230823:21";"877" +"20230823:22";"329" +"20230823:23";"726" +"20230824:00";"536" +"20230824:01";"53" +"20230824:02";"851" +"20230824:03";"485" +"20230824:04";"625" +"20230824:05";"902" +"20230824:06";"163" +"20230824:07";"56" +"20230824:08";"802" +"20230824:09";"926" +"20230824:10";"534" +"20230824:11";"315" +"20230824:12";"562" +"20230824:13";"180" +"20230824:14";"609" +"20230824:15";"525" +"20230824:16";"348" +"20230824:17";"726" +"20230824:18";"977" +"20230824:19";"908" +"20230824:20";"530" +"20230824:21";"867" +"20230824:22";"367" +"20230824:23";"370" +"20230825:00";"114" +"20230825:01";"929" +"20230825:02";"531" +"20230825:03";"710" +"20230825:04";"462" +"20230825:05";"693" +"20230825:06";"676" +"20230825:07";"999" +"20230825:08";"27" +"20230825:09";"749" +"20230825:10";"600" +"20230825:11";"672" +"20230825:12";"581" +"20230825:13";"720" +"20230825:14";"868" +"20230825:15";"830" +"20230825:16";"731" +"20230825:17";"377" +"20230825:18";"136" +"20230825:19";"963" +"20230825:20";"80" +"20230825:21";"446" +"20230825:22";"684" +"20230825:23";"263" +"20230826:00";"315" +"20230826:01";"85" +"20230826:02";"430" +"20230826:03";"207" +"20230826:04";"306" +"20230826:05";"907" +"20230826:06";"3" +"20230826:07";"665" +"20230826:08";"619" +"20230826:09";"54" +"20230826:10";"170" +"20230826:11";"264" +"20230826:12";"592" +"20230826:13";"833" +"20230826:14";"674" +"20230826:15";"34" +"20230826:16";"444" +"20230826:17";"546" +"20230826:18";"529" +"20230826:19";"176" +"20230826:20";"28" +"20230826:21";"625" +"20230826:22";"976" +"20230826:23";"950" +"20230827:00";"154" +"20230827:01";"518" +"20230827:02";"924" +"20230827:03";"230" +"20230827:04";"947" +"20230827:05";"610" +"20230827:06";"754" +"20230827:07";"459" +"20230827:08";"614" +"20230827:09";"542" +"20230827:10";"997" +"20230827:11";"94" +"20230827:12";"255" +"20230827:13";"775" +"20230827:14";"744" +"20230827:15";"679" +"20230827:16";"661" +"20230827:17";"989" +"20230827:18";"249" +"20230827:19";"705" +"20230827:20";"786" +"20230827:21";"423" +"20230827:22";"666" +"20230827:23";"461" +"20230828:00";"89" +"20230828:01";"959" +"20230828:02";"192" +"20230828:03";"439" +"20230828:04";"234" +"20230828:05";"147" +"20230828:06";"456" +"20230828:07";"96" +"20230828:08";"98" +"20230828:09";"398" +"20230828:10";"474" +"20230828:11";"535" +"20230828:12";"958" +"20230828:13";"465" +"20230828:14";"547" +"20230828:15";"948" +"20230828:16";"793" +"20230828:17";"280" +"20230828:18";"287" +"20230828:19";"667" +"20230828:20";"249" +"20230828:21";"492" +"20230828:22";"435" +"20230828:23";"51" +"20230829:00";"38" +"20230829:01";"599" +"20230829:02";"296" +"20230829:03";"213" +"20230829:04";"644" +"20230829:05";"530" +"20230829:06";"562" +"20230829:07";"728" +"20230829:08";"425" +"20230829:09";"136" +"20230829:10";"668" +"20230829:11";"99" +"20230829:12";"750" +"20230829:13";"450" +"20230829:14";"186" +"20230829:15";"219" +"20230829:16";"161" +"20230829:17";"275" +"20230829:18";"974" +"20230829:19";"578" +"20230829:20";"821" +"20230829:21";"367" +"20230829:22";"528" +"20230829:23";"587" +"20230830:00";"652" +"20230830:01";"527" +"20230830:02";"466" +"20230830:03";"129" +"20230830:04";"424" +"20230830:05";"802" +"20230830:06";"402" +"20230830:07";"998" +"20230830:08";"697" +"20230830:09";"394" +"20230830:10";"893" +"20230830:11";"448" +"20230830:12";"511" +"20230830:13";"157" +"20230830:14";"977" +"20230830:15";"729" +"20230830:16";"781" +"20230830:17";"655" +"20230830:18";"680" +"20230830:19";"426" +"20230830:20";"518" +"20230830:21";"384" +"20230830:22";"519" +"20230830:23";"905" +"20230831:00";"4" +"20230831:01";"302" +"20230831:02";"861" +"20230831:03";"507" +"20230831:04";"103" +"20230831:05";"523" +"20230831:06";"910" +"20230831:07";"196" +"20230831:08";"529" +"20230831:09";"891" +"20230831:10";"143" +"20230831:11";"558" +"20230831:12";"102" +"20230831:13";"536" +"20230831:14";"554" +"20230831:15";"668" +"20230831:16";"790" +"20230831:17";"224" +"20230831:18";"639" +"20230831:19";"215" +"20230831:20";"844" +"20230831:21";"652" +"20230831:22";"582" +"20230831:23";"886" +"20230901:00";"794" +"20230901:01";"951" +"20230901:02";"430" +"20230901:03";"685" +"20230901:04";"521" +"20230901:05";"810" +"20230901:06";"709" +"20230901:07";"639" +"20230901:08";"677" +"20230901:09";"612" +"20230901:10";"677" +"20230901:11";"83" +"20230901:12";"325" +"20230901:13";"23" +"20230901:14";"262" +"20230901:15";"384" +"20230901:16";"792" +"20230901:17";"713" +"20230901:18";"468" +"20230901:19";"416" +"20230901:20";"530" +"20230901:21";"275" +"20230901:22";"462" +"20230901:23";"170" +"20230902:00";"774" +"20230902:01";"946" +"20230902:02";"235" +"20230902:03";"813" +"20230902:04";"405" +"20230902:05";"240" +"20230902:06";"425" +"20230902:07";"103" +"20230902:08";"220" +"20230902:09";"672" +"20230902:10";"795" +"20230902:11";"288" +"20230902:12";"700" +"20230902:13";"917" +"20230902:14";"487" +"20230902:15";"392" +"20230902:16";"683" +"20230902:17";"867" +"20230902:18";"733" +"20230902:19";"168" +"20230902:20";"194" +"20230902:21";"966" +"20230902:22";"859" +"20230902:23";"372" +"20230903:00";"122" +"20230903:01";"551" +"20230903:02";"935" +"20230903:03";"271" +"20230903:04";"497" +"20230903:05";"422" +"20230903:06";"446" +"20230903:07";"575" +"20230903:08";"123" +"20230903:09";"426" +"20230903:10";"470" +"20230903:11";"799" +"20230903:12";"109" +"20230903:13";"574" +"20230903:14";"895" +"20230903:15";"854" +"20230903:16";"524" +"20230903:17";"521" +"20230903:18";"507" +"20230903:19";"806" +"20230903:20";"521" +"20230903:21";"509" +"20230903:22";"425" +"20230903:23";"694" +"20230904:00";"231" +"20230904:01";"220" +"20230904:02";"525" +"20230904:03";"245" +"20230904:04";"625" +"20230904:05";"404" +"20230904:06";"682" +"20230904:07";"819" +"20230904:08";"947" +"20230904:09";"924" +"20230904:10";"117" +"20230904:11";"584" +"20230904:12";"8" +"20230904:13";"647" +"20230904:14";"737" +"20230904:15";"49" +"20230904:16";"357" +"20230904:17";"494" +"20230904:18";"286" +"20230904:19";"75" +"20230904:20";"799" +"20230904:21";"974" +"20230904:22";"93" +"20230904:23";"726" +"20230905:00";"833" +"20230905:01";"650" +"20230905:02";"778" +"20230905:03";"46" +"20230905:04";"395" +"20230905:05";"200" +"20230905:06";"676" +"20230905:07";"571" +"20230905:08";"187" +"20230905:09";"995" +"20230905:10";"26" +"20230905:11";"958" +"20230905:12";"332" +"20230905:13";"865" +"20230905:14";"570" +"20230905:15";"80" +"20230905:16";"487" +"20230905:17";"498" +"20230905:18";"636" +"20230905:19";"65" +"20230905:20";"532" +"20230905:21";"634" +"20230905:22";"420" +"20230905:23";"12" +"20230906:00";"799" +"20230906:01";"705" +"20230906:02";"431" +"20230906:03";"609" +"20230906:04";"88" +"20230906:05";"173" +"20230906:06";"300" +"20230906:07";"649" +"20230906:08";"746" +"20230906:09";"681" +"20230906:10";"904" +"20230906:11";"363" +"20230906:12";"30" +"20230906:13";"258" +"20230906:14";"7" +"20230906:15";"286" +"20230906:16";"92" +"20230906:17";"647" +"20230906:18";"619" +"20230906:19";"48" +"20230906:20";"934" +"20230906:21";"824" +"20230906:22";"423" +"20230906:23";"508" +"20230907:00";"128" +"20230907:01";"478" +"20230907:02";"444" +"20230907:03";"853" +"20230907:04";"702" +"20230907:05";"863" +"20230907:06";"725" +"20230907:07";"807" +"20230907:08";"709" +"20230907:09";"26" +"20230907:10";"706" +"20230907:11";"171" +"20230907:12";"547" +"20230907:13";"379" +"20230907:14";"928" +"20230907:15";"27" +"20230907:16";"784" +"20230907:17";"141" +"20230907:18";"890" +"20230907:19";"810" +"20230907:20";"936" +"20230907:21";"12" +"20230907:22";"639" +"20230907:23";"968" +"20230908:00";"109" +"20230908:01";"851" +"20230908:02";"542" +"20230908:03";"739" +"20230908:04";"306" +"20230908:05";"13" +"20230908:06";"251" +"20230908:07";"670" +"20230908:08";"572" +"20230908:09";"448" +"20230908:10";"620" +"20230908:11";"864" +"20230908:12";"95" +"20230908:13";"979" +"20230908:14";"168" +"20230908:15";"960" +"20230908:16";"798" +"20230908:17";"882" +"20230908:18";"245" +"20230908:19";"544" +"20230908:20";"188" +"20230908:21";"284" +"20230908:22";"880" +"20230908:23";"653" +"20230909:00";"900" +"20230909:01";"472" +"20230909:02";"125" +"20230909:03";"112" +"20230909:04";"347" +"20230909:05";"903" +"20230909:06";"89" +"20230909:07";"322" +"20230909:08";"346" +"20230909:09";"854" +"20230909:10";"329" +"20230909:11";"318" +"20230909:12";"29" +"20230909:13";"356" +"20230909:14";"566" +"20230909:15";"166" +"20230909:16";"429" +"20230909:17";"650" +"20230909:18";"424" +"20230909:19";"921" +"20230909:20";"782" +"20230909:21";"643" +"20230909:22";"485" +"20230909:23";"592" +"20230910:00";"78" +"20230910:01";"662" +"20230910:02";"340" +"20230910:03";"626" +"20230910:04";"336" +"20230910:05";"855" +"20230910:06";"572" +"20230910:07";"239" +"20230910:08";"589" +"20230910:09";"148" +"20230910:10";"706" +"20230910:11";"663" +"20230910:12";"927" +"20230910:13";"21" +"20230910:14";"71" +"20230910:15";"697" +"20230910:16";"727" +"20230910:17";"59" +"20230910:18";"323" +"20230910:19";"632" +"20230910:20";"972" +"20230910:21";"633" +"20230910:22";"291" +"20230910:23";"233" +"20230911:00";"204" +"20230911:01";"41" +"20230911:02";"559" +"20230911:03";"395" +"20230911:04";"303" +"20230911:05";"734" +"20230911:06";"559" +"20230911:07";"586" +"20230911:08";"887" +"20230911:09";"473" +"20230911:10";"455" +"20230911:11";"116" +"20230911:12";"613" +"20230911:13";"770" +"20230911:14";"31" +"20230911:15";"193" +"20230911:16";"897" +"20230911:17";"538" +"20230911:18";"350" +"20230911:19";"39" +"20230911:20";"34" +"20230911:21";"356" +"20230911:22";"643" +"20230911:23";"251" +"20230912:00";"919" +"20230912:01";"521" +"20230912:02";"884" +"20230912:03";"856" +"20230912:04";"643" +"20230912:05";"105" +"20230912:06";"89" +"20230912:07";"237" +"20230912:08";"603" +"20230912:09";"424" +"20230912:10";"630" +"20230912:11";"965" +"20230912:12";"958" +"20230912:13";"915" +"20230912:14";"435" +"20230912:15";"694" +"20230912:16";"615" +"20230912:17";"530" +"20230912:18";"893" +"20230912:19";"731" +"20230912:20";"699" +"20230912:21";"265" +"20230912:22";"162" +"20230912:23";"709" +"20230913:00";"83" +"20230913:01";"280" +"20230913:02";"416" +"20230913:03";"656" +"20230913:04";"429" +"20230913:05";"633" +"20230913:06";"527" +"20230913:07";"227" +"20230913:08";"389" +"20230913:09";"138" +"20230913:10";"459" +"20230913:11";"424" +"20230913:12";"924" +"20230913:13";"319" +"20230913:14";"977" +"20230913:15";"242" +"20230913:16";"433" +"20230913:17";"544" +"20230913:18";"20" +"20230913:19";"973" +"20230913:20";"68" +"20230913:21";"241" +"20230913:22";"66" +"20230913:23";"875" +"20230914:00";"872" +"20230914:01";"353" +"20230914:02";"90" +"20230914:03";"199" +"20230914:04";"256" +"20230914:05";"118" +"20230914:06";"287" +"20230914:07";"812" +"20230914:08";"818" +"20230914:09";"457" +"20230914:10";"277" +"20230914:11";"867" +"20230914:12";"767" +"20230914:13";"79" +"20230914:14";"525" +"20230914:15";"882" +"20230914:16";"117" +"20230914:17";"96" +"20230914:18";"215" +"20230914:19";"823" +"20230914:20";"756" +"20230914:21";"130" +"20230914:22";"520" +"20230914:23";"7" +"20230915:00";"386" +"20230915:01";"595" +"20230915:02";"162" +"20230915:03";"792" +"20230915:04";"461" +"20230915:05";"565" +"20230915:06";"76" +"20230915:07";"421" +"20230915:08";"355" +"20230915:09";"863" +"20230915:10";"729" +"20230915:11";"365" +"20230915:12";"374" +"20230915:13";"267" +"20230915:14";"813" +"20230915:15";"880" +"20230915:16";"637" +"20230915:17";"823" +"20230915:18";"342" +"20230915:19";"365" +"20230915:20";"122" +"20230915:21";"664" +"20230915:22";"435" +"20230915:23";"538" +"20230916:00";"707" +"20230916:01";"358" +"20230916:02";"963" +"20230916:03";"124" +"20230916:04";"768" +"20230916:05";"189" +"20230916:06";"267" +"20230916:07";"310" +"20230916:08";"482" +"20230916:09";"481" +"20230916:10";"41" +"20230916:11";"349" +"20230916:12";"134" +"20230916:13";"602" +"20230916:14";"226" +"20230916:15";"817" +"20230916:16";"500" +"20230916:17";"227" +"20230916:18";"551" +"20230916:19";"729" +"20230916:20";"458" +"20230916:21";"419" +"20230916:22";"921" +"20230916:23";"964" +"20230917:00";"462" +"20230917:01";"862" +"20230917:02";"987" +"20230917:03";"396" +"20230917:04";"685" +"20230917:05";"810" +"20230917:06";"585" +"20230917:07";"46" +"20230917:08";"959" +"20230917:09";"560" +"20230917:10";"647" +"20230917:11";"787" +"20230917:12";"548" +"20230917:13";"869" +"20230917:14";"430" +"20230917:15";"622" +"20230917:16";"922" +"20230917:17";"645" +"20230917:18";"728" +"20230917:19";"973" +"20230917:20";"640" +"20230917:21";"628" +"20230917:22";"938" +"20230917:23";"826" +"20230918:00";"953" +"20230918:01";"423" +"20230918:02";"897" +"20230918:03";"72" +"20230918:04";"68" +"20230918:05";"497" +"20230918:06";"787" +"20230918:07";"550" +"20230918:08";"808" +"20230918:09";"328" +"20230918:10";"352" +"20230918:11";"607" +"20230918:12";"31" +"20230918:13";"0" +"20230918:14";"776" +"20230918:15";"901" +"20230918:16";"296" +"20230918:17";"381" +"20230918:18";"684" +"20230918:19";"688" +"20230918:20";"710" +"20230918:21";"526" +"20230918:22";"874" +"20230918:23";"306" +"20230919:00";"976" +"20230919:01";"957" +"20230919:02";"135" +"20230919:03";"39" +"20230919:04";"313" +"20230919:05";"133" +"20230919:06";"486" +"20230919:07";"558" +"20230919:08";"258" +"20230919:09";"722" +"20230919:10";"397" +"20230919:11";"487" +"20230919:12";"379" +"20230919:13";"283" +"20230919:14";"872" +"20230919:15";"493" +"20230919:16";"738" +"20230919:17";"640" +"20230919:18";"445" +"20230919:19";"774" +"20230919:20";"630" +"20230919:21";"473" +"20230919:22";"434" +"20230919:23";"274" +"20230920:00";"839" +"20230920:01";"857" +"20230920:02";"23" +"20230920:03";"823" +"20230920:04";"400" +"20230920:05";"717" +"20230920:06";"565" +"20230920:07";"459" +"20230920:08";"289" +"20230920:09";"927" +"20230920:10";"117" +"20230920:11";"868" +"20230920:12";"889" +"20230920:13";"659" +"20230920:14";"312" +"20230920:15";"946" +"20230920:16";"830" +"20230920:17";"83" +"20230920:18";"821" +"20230920:19";"900" +"20230920:20";"554" +"20230920:21";"995" +"20230920:22";"801" +"20230920:23";"284" +"20230921:00";"639" +"20230921:01";"27" +"20230921:02";"137" +"20230921:03";"247" +"20230921:04";"398" +"20230921:05";"128" +"20230921:06";"596" +"20230921:07";"542" +"20230921:08";"741" +"20230921:09";"952" +"20230921:10";"682" +"20230921:11";"842" +"20230921:12";"622" +"20230921:13";"486" +"20230921:14";"354" +"20230921:15";"418" +"20230921:16";"58" +"20230921:17";"985" +"20230921:18";"814" +"20230921:19";"489" +"20230921:20";"742" +"20230921:21";"153" +"20230921:22";"34" +"20230921:23";"174" +"20230922:00";"273" +"20230922:01";"650" +"20230922:02";"960" +"20230922:03";"778" +"20230922:04";"855" +"20230922:05";"70" +"20230922:06";"550" +"20230922:07";"771" +"20230922:08";"763" +"20230922:09";"861" +"20230922:10";"175" +"20230922:11";"822" +"20230922:12";"648" +"20230922:13";"374" +"20230922:14";"619" +"20230922:15";"26" +"20230922:16";"76" +"20230922:17";"494" +"20230922:18";"125" +"20230922:19";"394" +"20230922:20";"222" +"20230922:21";"64" +"20230922:22";"503" +"20230922:23";"413" +"20230923:00";"404" +"20230923:01";"306" +"20230923:02";"218" +"20230923:03";"309" +"20230923:04";"883" +"20230923:05";"1" +"20230923:06";"843" +"20230923:07";"706" +"20230923:08";"493" +"20230923:09";"559" +"20230923:10";"186" +"20230923:11";"93" +"20230923:12";"78" +"20230923:13";"110" +"20230923:14";"517" +"20230923:15";"81" +"20230923:16";"835" +"20230923:17";"538" +"20230923:18";"902" +"20230923:19";"255" +"20230923:20";"494" +"20230923:21";"266" +"20230923:22";"734" +"20230923:23";"943" +"20230924:00";"221" +"20230924:01";"35" +"20230924:02";"812" +"20230924:03";"788" +"20230924:04";"503" +"20230924:05";"930" +"20230924:06";"587" +"20230924:07";"741" +"20230924:08";"373" +"20230924:09";"994" +"20230924:10";"913" +"20230924:11";"814" +"20230924:12";"201" +"20230924:13";"867" +"20230924:14";"413" +"20230924:15";"888" +"20230924:16";"434" +"20230924:17";"294" +"20230924:18";"732" +"20230924:19";"925" +"20230924:20";"652" +"20230924:21";"778" +"20230924:22";"767" +"20230924:23";"526" +"20230925:00";"217" +"20230925:01";"500" +"20230925:02";"453" +"20230925:03";"326" +"20230925:04";"614" +"20230925:05";"795" +"20230925:06";"356" +"20230925:07";"171" +"20230925:08";"471" +"20230925:09";"947" +"20230925:10";"404" +"20230925:11";"477" +"20230925:12";"617" +"20230925:13";"721" +"20230925:14";"695" +"20230925:15";"257" +"20230925:16";"72" +"20230925:17";"561" +"20230925:18";"710" +"20230925:19";"882" +"20230925:20";"228" +"20230925:21";"474" +"20230925:22";"777" +"20230925:23";"816" +"20230926:00";"610" +"20230926:01";"248" +"20230926:02";"160" +"20230926:03";"348" +"20230926:04";"668" +"20230926:05";"31" +"20230926:06";"594" +"20230926:07";"342" +"20230926:08";"574" +"20230926:09";"453" +"20230926:10";"279" +"20230926:11";"876" +"20230926:12";"33" +"20230926:13";"720" +"20230926:14";"626" +"20230926:15";"498" +"20230926:16";"530" +"20230926:17";"491" +"20230926:18";"383" +"20230926:19";"709" +"20230926:20";"619" +"20230926:21";"412" +"20230926:22";"186" +"20230926:23";"201" +"20230927:00";"730" +"20230927:01";"948" +"20230927:02";"523" +"20230927:03";"933" +"20230927:04";"339" +"20230927:05";"131" +"20230927:06";"485" +"20230927:07";"79" +"20230927:08";"96" +"20230927:09";"767" +"20230927:10";"408" +"20230927:11";"139" +"20230927:12";"928" +"20230927:13";"578" +"20230927:14";"136" +"20230927:15";"736" +"20230927:16";"730" +"20230927:17";"612" +"20230927:18";"183" +"20230927:19";"474" +"20230927:20";"142" +"20230927:21";"719" +"20230927:22";"404" +"20230927:23";"700" +"20230928:00";"82" +"20230928:01";"888" +"20230928:02";"236" +"20230928:03";"522" +"20230928:04";"961" +"20230928:05";"120" +"20230928:06";"198" +"20230928:07";"930" +"20230928:08";"671" +"20230928:09";"17" +"20230928:10";"116" +"20230928:11";"504" +"20230928:12";"364" +"20230928:13";"621" +"20230928:14";"363" +"20230928:15";"318" +"20230928:16";"485" +"20230928:17";"145" +"20230928:18";"535" +"20230928:19";"205" +"20230928:20";"929" +"20230928:21";"297" +"20230928:22";"382" +"20230928:23";"352" +"20230929:00";"166" +"20230929:01";"88" +"20230929:02";"469" +"20230929:03";"105" +"20230929:04";"201" +"20230929:05";"779" +"20230929:06";"976" +"20230929:07";"604" +"20230929:08";"485" +"20230929:09";"831" +"20230929:10";"858" +"20230929:11";"596" +"20230929:12";"372" +"20230929:13";"175" +"20230929:14";"397" +"20230929:15";"697" +"20230929:16";"492" +"20230929:17";"951" +"20230929:18";"964" +"20230929:19";"230" +"20230929:20";"219" +"20230929:21";"440" +"20230929:22";"986" +"20230929:23";"426" +"20230930:00";"171" +"20230930:01";"215" +"20230930:02";"758" +"20230930:03";"495" +"20230930:04";"495" +"20230930:05";"777" +"20230930:06";"327" +"20230930:07";"901" +"20230930:08";"125" +"20230930:09";"158" +"20230930:10";"112" +"20230930:11";"643" +"20230930:12";"528" +"20230930:13";"370" +"20230930:14";"474" +"20230930:15";"70" +"20230930:16";"967" +"20230930:17";"856" +"20230930:18";"841" +"20230930:19";"915" +"20230930:20";"228" +"20230930:21";"692" +"20230930:22";"303" +"20230930:23";"956" +"20231001:00";"268" +"20231001:01";"690" +"20231001:02";"834" +"20231001:03";"781" +"20231001:04";"329" +"20231001:05";"344" +"20231001:06";"368" +"20231001:07";"622" +"20231001:08";"784" +"20231001:09";"45" +"20231001:10";"977" +"20231001:11";"710" +"20231001:12";"120" +"20231001:13";"163" +"20231001:14";"564" +"20231001:15";"64" +"20231001:16";"758" +"20231001:17";"323" +"20231001:18";"706" +"20231001:19";"265" +"20231001:20";"133" +"20231001:21";"770" +"20231001:22";"641" +"20231001:23";"545" +"20231002:00";"564" +"20231002:01";"16" +"20231002:02";"538" +"20231002:03";"799" +"20231002:04";"647" +"20231002:05";"176" +"20231002:06";"546" +"20231002:07";"861" +"20231002:08";"979" +"20231002:09";"790" +"20231002:10";"589" +"20231002:11";"162" +"20231002:12";"855" +"20231002:13";"873" +"20231002:14";"198" +"20231002:15";"260" +"20231002:16";"131" +"20231002:17";"872" +"20231002:18";"350" +"20231002:19";"93" +"20231002:20";"997" +"20231002:21";"625" +"20231002:22";"722" +"20231002:23";"158" +"20231003:00";"374" +"20231003:01";"422" +"20231003:02";"126" +"20231003:03";"85" +"20231003:04";"144" +"20231003:05";"937" +"20231003:06";"593" +"20231003:07";"796" +"20231003:08";"712" +"20231003:09";"865" +"20231003:10";"435" +"20231003:11";"506" +"20231003:12";"706" +"20231003:13";"846" +"20231003:14";"843" +"20231003:15";"499" +"20231003:16";"869" +"20231003:17";"797" +"20231003:18";"709" +"20231003:19";"937" +"20231003:20";"41" +"20231003:21";"63" +"20231003:22";"120" +"20231003:23";"570" +"20231004:00";"267" +"20231004:01";"846" +"20231004:02";"998" +"20231004:03";"897" +"20231004:04";"973" +"20231004:05";"383" +"20231004:06";"675" +"20231004:07";"565" +"20231004:08";"440" +"20231004:09";"315" +"20231004:10";"939" +"20231004:11";"44" +"20231004:12";"997" +"20231004:13";"852" +"20231004:14";"684" +"20231004:15";"837" +"20231004:16";"784" +"20231004:17";"351" +"20231004:18";"161" +"20231004:19";"745" +"20231004:20";"733" +"20231004:21";"21" +"20231004:22";"668" +"20231004:23";"135" +"20231005:00";"841" +"20231005:01";"94" +"20231005:02";"875" +"20231005:03";"172" +"20231005:04";"415" +"20231005:05";"60" +"20231005:06";"804" +"20231005:07";"490" +"20231005:08";"450" +"20231005:09";"424" +"20231005:10";"890" +"20231005:11";"870" +"20231005:12";"888" +"20231005:13";"603" +"20231005:14";"571" +"20231005:15";"395" +"20231005:16";"435" +"20231005:17";"918" +"20231005:18";"717" +"20231005:19";"229" +"20231005:20";"506" +"20231005:21";"456" +"20231005:22";"536" +"20231005:23";"105" +"20231006:00";"554" +"20231006:01";"943" +"20231006:02";"310" +"20231006:03";"424" +"20231006:04";"203" +"20231006:05";"537" +"20231006:06";"280" +"20231006:07";"755" +"20231006:08";"740" +"20231006:09";"977" +"20231006:10";"369" +"20231006:11";"137" +"20231006:12";"21" +"20231006:13";"830" +"20231006:14";"748" +"20231006:15";"550" +"20231006:16";"152" +"20231006:17";"134" +"20231006:18";"402" +"20231006:19";"622" +"20231006:20";"351" +"20231006:21";"384" +"20231006:22";"253" +"20231006:23";"629" +"20231007:00";"293" +"20231007:01";"853" +"20231007:02";"630" +"20231007:03";"174" +"20231007:04";"446" +"20231007:05";"891" +"20231007:06";"795" +"20231007:07";"516" +"20231007:08";"592" +"20231007:09";"423" +"20231007:10";"60" +"20231007:11";"649" +"20231007:12";"339" +"20231007:13";"153" +"20231007:14";"146" +"20231007:15";"523" +"20231007:16";"296" +"20231007:17";"1" +"20231007:18";"689" +"20231007:19";"909" +"20231007:20";"496" +"20231007:21";"878" +"20231007:22";"855" +"20231007:23";"110" +"20231008:00";"454" +"20231008:01";"170" +"20231008:02";"975" +"20231008:03";"755" +"20231008:04";"664" +"20231008:05";"716" +"20231008:06";"755" +"20231008:07";"16" +"20231008:08";"29" +"20231008:09";"358" +"20231008:10";"26" +"20231008:11";"89" +"20231008:12";"776" +"20231008:13";"933" +"20231008:14";"510" +"20231008:15";"445" +"20231008:16";"878" +"20231008:17";"711" +"20231008:18";"491" +"20231008:19";"727" +"20231008:20";"651" +"20231008:21";"391" +"20231008:22";"718" +"20231008:23";"573" +"20231009:00";"989" +"20231009:01";"281" +"20231009:02";"493" +"20231009:03";"388" +"20231009:04";"965" +"20231009:05";"449" +"20231009:06";"560" +"20231009:07";"995" +"20231009:08";"123" +"20231009:09";"701" +"20231009:10";"371" +"20231009:11";"807" +"20231009:12";"265" +"20231009:13";"202" +"20231009:14";"669" +"20231009:15";"270" +"20231009:16";"251" +"20231009:17";"201" +"20231009:18";"155" +"20231009:19";"580" +"20231009:20";"229" +"20231009:21";"948" +"20231009:22";"274" +"20231009:23";"392" +"20231010:00";"896" +"20231010:01";"416" +"20231010:02";"678" +"20231010:03";"261" +"20231010:04";"533" +"20231010:05";"455" +"20231010:06";"30" +"20231010:07";"799" +"20231010:08";"566" +"20231010:09";"256" +"20231010:10";"293" +"20231010:11";"214" +"20231010:12";"591" +"20231010:13";"518" +"20231010:14";"602" +"20231010:15";"869" +"20231010:16";"606" +"20231010:17";"399" +"20231010:18";"407" +"20231010:19";"264" +"20231010:20";"375" +"20231010:21";"549" +"20231010:22";"544" +"20231010:23";"118" +"20231011:00";"83" +"20231011:01";"77" +"20231011:02";"973" +"20231011:03";"680" +"20231011:04";"553" +"20231011:05";"613" +"20231011:06";"939" +"20231011:07";"929" +"20231011:08";"96" +"20231011:09";"450" +"20231011:10";"190" +"20231011:11";"746" +"20231011:12";"166" +"20231011:13";"81" +"20231011:14";"284" +"20231011:15";"177" +"20231011:16";"104" +"20231011:17";"99" +"20231011:18";"654" +"20231011:19";"655" +"20231011:20";"913" +"20231011:21";"953" +"20231011:22";"21" +"20231011:23";"940" +"20231012:00";"455" +"20231012:01";"559" +"20231012:02";"931" +"20231012:03";"547" +"20231012:04";"151" +"20231012:05";"568" +"20231012:06";"624" +"20231012:07";"905" +"20231012:08";"85" +"20231012:09";"130" +"20231012:10";"619" +"20231012:11";"126" +"20231012:12";"651" +"20231012:13";"802" +"20231012:14";"31" +"20231012:15";"512" +"20231012:16";"394" +"20231012:17";"241" +"20231012:18";"175" +"20231012:19";"662" +"20231012:20";"543" +"20231012:21";"986" +"20231012:22";"579" +"20231012:23";"909" +"20231013:00";"609" +"20231013:01";"248" +"20231013:02";"722" +"20231013:03";"983" +"20231013:04";"812" +"20231013:05";"408" +"20231013:06";"421" +"20231013:07";"604" +"20231013:08";"994" +"20231013:09";"744" +"20231013:10";"796" +"20231013:11";"313" +"20231013:12";"713" +"20231013:13";"34" +"20231013:14";"29" +"20231013:15";"961" +"20231013:16";"631" +"20231013:17";"190" +"20231013:18";"265" +"20231013:19";"870" +"20231013:20";"476" +"20231013:21";"17" +"20231013:22";"329" +"20231013:23";"317" +"20231014:00";"209" +"20231014:01";"499" +"20231014:02";"698" +"20231014:03";"824" +"20231014:04";"424" +"20231014:05";"942" +"20231014:06";"845" +"20231014:07";"3" +"20231014:08";"669" +"20231014:09";"463" +"20231014:10";"664" +"20231014:11";"139" +"20231014:12";"730" +"20231014:13";"119" +"20231014:14";"619" +"20231014:15";"250" +"20231014:16";"147" +"20231014:17";"610" +"20231014:18";"892" +"20231014:19";"103" +"20231014:20";"772" +"20231014:21";"34" +"20231014:22";"969" +"20231014:23";"726" +"20231015:00";"952" +"20231015:01";"510" +"20231015:02";"738" +"20231015:03";"459" +"20231015:04";"819" +"20231015:05";"478" +"20231015:06";"184" +"20231015:07";"309" +"20231015:08";"391" +"20231015:09";"535" +"20231015:10";"4" +"20231015:11";"696" +"20231015:12";"964" +"20231015:13";"976" +"20231015:14";"244" +"20231015:15";"216" +"20231015:16";"247" +"20231015:17";"332" +"20231015:18";"904" +"20231015:19";"641" +"20231015:20";"617" +"20231015:21";"200" +"20231015:22";"805" +"20231015:23";"740" +"20231016:00";"656" +"20231016:01";"680" +"20231016:02";"918" +"20231016:03";"414" +"20231016:04";"912" +"20231016:05";"810" +"20231016:06";"101" +"20231016:07";"537" +"20231016:08";"858" +"20231016:09";"43" +"20231016:10";"964" +"20231016:11";"679" +"20231016:12";"606" +"20231016:13";"779" +"20231016:14";"6" +"20231016:15";"61" +"20231016:16";"787" +"20231016:17";"563" +"20231016:18";"319" +"20231016:19";"730" +"20231016:20";"594" +"20231016:21";"572" +"20231016:22";"340" +"20231016:23";"488" +"20231017:00";"226" +"20231017:01";"395" +"20231017:02";"303" +"20231017:03";"300" +"20231017:04";"11" +"20231017:05";"883" +"20231017:06";"647" +"20231017:07";"360" +"20231017:08";"191" +"20231017:09";"342" +"20231017:10";"761" +"20231017:11";"541" +"20231017:12";"369" +"20231017:13";"185" +"20231017:14";"863" +"20231017:15";"959" +"20231017:16";"918" +"20231017:17";"389" +"20231017:18";"42" +"20231017:19";"807" +"20231017:20";"520" +"20231017:21";"801" +"20231017:22";"515" +"20231017:23";"661" +"20231018:00";"208" +"20231018:01";"290" +"20231018:02";"449" +"20231018:03";"815" +"20231018:04";"585" +"20231018:05";"994" +"20231018:06";"286" +"20231018:07";"379" +"20231018:08";"469" +"20231018:09";"238" +"20231018:10";"934" +"20231018:11";"989" +"20231018:12";"458" +"20231018:13";"566" +"20231018:14";"493" +"20231018:15";"166" +"20231018:16";"40" +"20231018:17";"368" +"20231018:18";"180" +"20231018:19";"0" +"20231018:20";"48" +"20231018:21";"433" +"20231018:22";"755" +"20231018:23";"596" +"20231019:00";"624" +"20231019:01";"439" +"20231019:02";"852" +"20231019:03";"479" +"20231019:04";"136" +"20231019:05";"792" +"20231019:06";"891" +"20231019:07";"455" +"20231019:08";"344" +"20231019:09";"726" +"20231019:10";"226" +"20231019:11";"803" +"20231019:12";"361" +"20231019:13";"749" +"20231019:14";"836" +"20231019:15";"325" +"20231019:16";"945" +"20231019:17";"991" +"20231019:18";"270" +"20231019:19";"448" +"20231019:20";"996" +"20231019:21";"697" +"20231019:22";"393" +"20231019:23";"221" +"20231020:00";"239" +"20231020:01";"723" +"20231020:02";"140" +"20231020:03";"611" +"20231020:04";"96" +"20231020:05";"583" +"20231020:06";"458" +"20231020:07";"414" +"20231020:08";"872" +"20231020:09";"189" +"20231020:10";"274" +"20231020:11";"99" +"20231020:12";"252" +"20231020:13";"453" +"20231020:14";"180" +"20231020:15";"589" +"20231020:16";"894" +"20231020:17";"684" +"20231020:18";"702" +"20231020:19";"550" +"20231020:20";"667" +"20231020:21";"476" +"20231020:22";"130" +"20231020:23";"792" +"20231021:00";"385" +"20231021:01";"62" +"20231021:02";"262" +"20231021:03";"507" +"20231021:04";"677" +"20231021:05";"824" +"20231021:06";"955" +"20231021:07";"946" +"20231021:08";"783" +"20231021:09";"592" +"20231021:10";"664" +"20231021:11";"782" +"20231021:12";"261" +"20231021:13";"601" +"20231021:14";"738" +"20231021:15";"663" +"20231021:16";"406" +"20231021:17";"710" +"20231021:18";"112" +"20231021:19";"47" +"20231021:20";"919" +"20231021:21";"460" +"20231021:22";"683" +"20231021:23";"713" +"20231022:00";"459" +"20231022:01";"756" +"20231022:02";"675" +"20231022:03";"733" +"20231022:04";"883" +"20231022:05";"719" +"20231022:06";"546" +"20231022:07";"510" +"20231022:08";"890" +"20231022:09";"264" +"20231022:10";"242" +"20231022:11";"66" +"20231022:12";"124" +"20231022:13";"777" +"20231022:14";"690" +"20231022:15";"91" +"20231022:16";"190" +"20231022:17";"1" +"20231022:18";"739" +"20231022:19";"651" +"20231022:20";"101" +"20231022:21";"111" +"20231022:22";"263" +"20231022:23";"887" +"20231023:00";"788" +"20231023:01";"184" +"20231023:02";"965" +"20231023:03";"537" +"20231023:04";"108" +"20231023:05";"633" +"20231023:06";"989" +"20231023:07";"897" +"20231023:08";"900" +"20231023:09";"807" +"20231023:10";"882" +"20231023:11";"234" +"20231023:12";"133" +"20231023:13";"855" +"20231023:14";"321" +"20231023:15";"166" +"20231023:16";"162" +"20231023:17";"367" +"20231023:18";"925" +"20231023:19";"392" +"20231023:20";"174" +"20231023:21";"964" +"20231023:22";"985" +"20231023:23";"664" +"20231024:00";"538" +"20231024:01";"490" +"20231024:02";"158" +"20231024:03";"675" +"20231024:04";"296" +"20231024:05";"911" +"20231024:06";"666" +"20231024:07";"220" +"20231024:08";"488" +"20231024:09";"69" +"20231024:10";"153" +"20231024:11";"304" +"20231024:12";"656" +"20231024:13";"537" +"20231024:14";"451" +"20231024:15";"545" +"20231024:16";"81" +"20231024:17";"350" +"20231024:18";"200" +"20231024:19";"282" +"20231024:20";"145" +"20231024:21";"374" +"20231024:22";"647" +"20231024:23";"3" +"20231025:00";"869" +"20231025:01";"230" +"20231025:02";"229" +"20231025:03";"329" +"20231025:04";"546" +"20231025:05";"546" +"20231025:06";"355" +"20231025:07";"285" +"20231025:08";"91" +"20231025:09";"367" +"20231025:10";"433" +"20231025:11";"152" +"20231025:12";"691" +"20231025:13";"388" +"20231025:14";"801" +"20231025:15";"22" +"20231025:16";"197" +"20231025:17";"144" +"20231025:18";"250" +"20231025:19";"563" +"20231025:20";"857" +"20231025:21";"103" +"20231025:22";"224" +"20231025:23";"990" +"20231026:00";"174" +"20231026:01";"230" +"20231026:02";"506" +"20231026:03";"934" +"20231026:04";"932" +"20231026:05";"743" +"20231026:06";"833" +"20231026:07";"135" +"20231026:08";"181" +"20231026:09";"377" +"20231026:10";"826" +"20231026:11";"978" +"20231026:12";"356" +"20231026:13";"879" +"20231026:14";"302" +"20231026:15";"966" +"20231026:16";"996" +"20231026:17";"869" +"20231026:18";"453" +"20231026:19";"218" +"20231026:20";"832" +"20231026:21";"302" +"20231026:22";"747" +"20231026:23";"107" +"20231027:00";"89" +"20231027:01";"128" +"20231027:02";"543" +"20231027:03";"102" +"20231027:04";"218" +"20231027:05";"830" +"20231027:06";"968" +"20231027:07";"336" +"20231027:08";"353" +"20231027:09";"840" +"20231027:10";"920" +"20231027:11";"962" +"20231027:12";"329" +"20231027:13";"148" +"20231027:14";"103" +"20231027:15";"416" +"20231027:16";"920" +"20231027:17";"640" +"20231027:18";"595" +"20231027:19";"919" +"20231027:20";"126" +"20231027:21";"794" +"20231027:22";"151" +"20231027:23";"762" +"20231028:00";"420" +"20231028:01";"792" +"20231028:02";"679" +"20231028:03";"662" +"20231028:04";"705" +"20231028:05";"273" +"20231028:06";"151" +"20231028:07";"18" +"20231028:08";"304" +"20231028:09";"913" +"20231028:10";"499" +"20231028:11";"47" +"20231028:12";"915" +"20231028:13";"157" +"20231028:14";"604" +"20231028:15";"351" +"20231028:16";"790" +"20231028:17";"692" +"20231028:18";"382" +"20231028:19";"90" +"20231028:20";"438" +"20231028:21";"628" +"20231028:22";"152" +"20231028:23";"712" +"20231029:00";"168" +"20231029:01";"583" +"20231029:02";"694" +"20231029:03";"497" +"20231029:04";"301" +"20231029:05";"506" +"20231029:06";"734" +"20231029:07";"663" +"20231029:08";"527" +"20231029:09";"34" +"20231029:10";"519" +"20231029:11";"566" +"20231029:12";"304" +"20231029:13";"300" +"20231029:14";"429" +"20231029:15";"734" +"20231029:16";"537" +"20231029:17";"662" +"20231029:18";"481" +"20231029:19";"811" +"20231029:20";"802" +"20231029:21";"808" +"20231029:22";"620" +"20231029:23";"76" +"20231030:00";"555" +"20231030:01";"61" +"20231030:02";"477" +"20231030:03";"375" +"20231030:04";"711" +"20231030:05";"900" +"20231030:06";"523" +"20231030:07";"149" +"20231030:08";"986" +"20231030:09";"597" +"20231030:10";"222" +"20231030:11";"883" +"20231030:12";"129" +"20231030:13";"405" +"20231030:14";"74" +"20231030:15";"694" +"20231030:16";"372" +"20231030:17";"209" +"20231030:18";"80" +"20231030:19";"54" +"20231030:20";"12" +"20231030:21";"108" +"20231030:22";"209" +"20231030:23";"220" +"20231031:00";"343" +"20231031:01";"203" +"20231031:02";"441" +"20231031:03";"622" +"20231031:04";"482" +"20231031:05";"206" +"20231031:06";"12" +"20231031:07";"732" +"20231031:08";"438" +"20231031:09";"435" +"20231031:10";"430" +"20231031:11";"550" +"20231031:12";"578" +"20231031:13";"149" +"20231031:14";"551" +"20231031:15";"461" +"20231031:16";"316" +"20231031:17";"413" +"20231031:18";"411" +"20231031:19";"981" +"20231031:20";"336" +"20231031:21";"318" +"20231031:22";"105" +"20231031:23";"406" +"20231101:00";"682" +"20231101:01";"60" +"20231101:02";"451" +"20231101:03";"829" +"20231101:04";"130" +"20231101:05";"851" +"20231101:06";"314" +"20231101:07";"787" +"20231101:08";"386" +"20231101:09";"405" +"20231101:10";"415" +"20231101:11";"134" +"20231101:12";"861" +"20231101:13";"329" +"20231101:14";"216" +"20231101:15";"459" +"20231101:16";"390" +"20231101:17";"246" +"20231101:18";"636" +"20231101:19";"825" +"20231101:20";"291" +"20231101:21";"384" +"20231101:22";"734" +"20231101:23";"618" +"20231102:00";"507" +"20231102:01";"834" +"20231102:02";"903" +"20231102:03";"177" +"20231102:04";"542" +"20231102:05";"8" +"20231102:06";"395" +"20231102:07";"238" +"20231102:08";"696" +"20231102:09";"482" +"20231102:10";"319" +"20231102:11";"508" +"20231102:12";"976" +"20231102:13";"942" +"20231102:14";"743" +"20231102:15";"451" +"20231102:16";"517" +"20231102:17";"33" +"20231102:18";"544" +"20231102:19";"548" +"20231102:20";"897" +"20231102:21";"842" +"20231102:22";"94" +"20231102:23";"1" +"20231103:00";"243" +"20231103:01";"281" +"20231103:02";"131" +"20231103:03";"961" +"20231103:04";"354" +"20231103:05";"787" +"20231103:06";"595" +"20231103:07";"125" +"20231103:08";"789" +"20231103:09";"819" +"20231103:10";"3" +"20231103:11";"541" +"20231103:12";"131" +"20231103:13";"931" +"20231103:14";"404" +"20231103:15";"281" +"20231103:16";"121" +"20231103:17";"460" +"20231103:18";"429" +"20231103:19";"599" +"20231103:20";"211" +"20231103:21";"934" +"20231103:22";"600" +"20231103:23";"619" +"20231104:00";"703" +"20231104:01";"960" +"20231104:02";"695" +"20231104:03";"999" +"20231104:04";"981" +"20231104:05";"903" +"20231104:06";"565" +"20231104:07";"772" +"20231104:08";"854" +"20231104:09";"700" +"20231104:10";"888" +"20231104:11";"132" +"20231104:12";"256" +"20231104:13";"616" +"20231104:14";"383" +"20231104:15";"979" +"20231104:16";"281" +"20231104:17";"853" +"20231104:18";"118" +"20231104:19";"598" +"20231104:20";"456" +"20231104:21";"745" +"20231104:22";"754" +"20231104:23";"54" +"20231105:00";"80" +"20231105:01";"287" +"20231105:02";"933" +"20231105:03";"431" +"20231105:04";"857" +"20231105:05";"617" +"20231105:06";"245" +"20231105:07";"150" +"20231105:08";"486" +"20231105:09";"683" +"20231105:10";"544" +"20231105:11";"628" +"20231105:12";"66" +"20231105:13";"575" +"20231105:14";"881" +"20231105:15";"779" +"20231105:16";"911" +"20231105:17";"628" +"20231105:18";"260" +"20231105:19";"5" +"20231105:20";"254" +"20231105:21";"981" +"20231105:22";"318" +"20231105:23";"339" +"20231106:00";"117" +"20231106:01";"74" +"20231106:02";"765" +"20231106:03";"731" +"20231106:04";"847" +"20231106:05";"787" +"20231106:06";"748" +"20231106:07";"685" +"20231106:08";"876" +"20231106:09";"558" +"20231106:10";"251" +"20231106:11";"995" +"20231106:12";"140" +"20231106:13";"371" +"20231106:14";"576" +"20231106:15";"9" +"20231106:16";"778" +"20231106:17";"662" +"20231106:18";"715" +"20231106:19";"12" +"20231106:20";"355" +"20231106:21";"261" +"20231106:22";"964" +"20231106:23";"259" +"20231107:00";"392" +"20231107:01";"798" +"20231107:02";"829" +"20231107:03";"374" +"20231107:04";"156" +"20231107:05";"168" +"20231107:06";"980" +"20231107:07";"911" +"20231107:08";"484" +"20231107:09";"259" +"20231107:10";"956" +"20231107:11";"448" +"20231107:12";"648" +"20231107:13";"110" +"20231107:14";"712" +"20231107:15";"240" +"20231107:16";"75" +"20231107:17";"840" +"20231107:18";"17" +"20231107:19";"710" +"20231107:20";"214" +"20231107:21";"776" +"20231107:22";"336" +"20231107:23";"104" +"20231108:00";"562" +"20231108:01";"655" +"20231108:02";"675" +"20231108:03";"390" +"20231108:04";"703" +"20231108:05";"283" +"20231108:06";"700" +"20231108:07";"414" +"20231108:08";"305" +"20231108:09";"72" +"20231108:10";"304" +"20231108:11";"175" +"20231108:12";"633" +"20231108:13";"658" +"20231108:14";"556" +"20231108:15";"64" +"20231108:16";"111" +"20231108:17";"133" +"20231108:18";"362" +"20231108:19";"688" +"20231108:20";"181" +"20231108:21";"372" +"20231108:22";"929" +"20231108:23";"138" +"20231109:00";"1" +"20231109:01";"536" +"20231109:02";"689" +"20231109:03";"970" +"20231109:04";"626" +"20231109:05";"970" +"20231109:06";"301" +"20231109:07";"309" +"20231109:08";"660" +"20231109:09";"178" +"20231109:10";"350" +"20231109:11";"60" +"20231109:12";"114" +"20231109:13";"152" +"20231109:14";"310" +"20231109:15";"570" +"20231109:16";"311" +"20231109:17";"501" +"20231109:18";"115" +"20231109:19";"401" +"20231109:20";"291" +"20231109:21";"395" +"20231109:22";"735" +"20231109:23";"732" +"20231110:00";"366" +"20231110:01";"203" +"20231110:02";"286" +"20231110:03";"158" +"20231110:04";"898" +"20231110:05";"783" +"20231110:06";"188" +"20231110:07";"649" +"20231110:08";"633" +"20231110:09";"566" +"20231110:10";"915" +"20231110:11";"64" +"20231110:12";"647" +"20231110:13";"897" +"20231110:14";"558" +"20231110:15";"22" +"20231110:16";"797" +"20231110:17";"754" +"20231110:18";"664" +"20231110:19";"331" +"20231110:20";"288" +"20231110:21";"28" +"20231110:22";"566" +"20231110:23";"18" +"20231111:00";"207" +"20231111:01";"96" +"20231111:02";"767" +"20231111:03";"467" +"20231111:04";"977" +"20231111:05";"299" +"20231111:06";"395" +"20231111:07";"11" +"20231111:08";"328" +"20231111:09";"778" +"20231111:10";"295" +"20231111:11";"316" +"20231111:12";"325" +"20231111:13";"237" +"20231111:14";"806" +"20231111:15";"755" +"20231111:16";"975" +"20231111:17";"957" +"20231111:18";"789" +"20231111:19";"689" +"20231111:20";"95" +"20231111:21";"797" +"20231111:22";"829" +"20231111:23";"901" +"20231112:00";"406" +"20231112:01";"659" +"20231112:02";"946" +"20231112:03";"697" +"20231112:04";"659" +"20231112:05";"9" +"20231112:06";"791" +"20231112:07";"391" +"20231112:08";"570" +"20231112:09";"173" +"20231112:10";"394" +"20231112:11";"842" +"20231112:12";"145" +"20231112:13";"900" +"20231112:14";"356" +"20231112:15";"777" +"20231112:16";"215" +"20231112:17";"376" +"20231112:18";"535" +"20231112:19";"496" +"20231112:20";"477" +"20231112:21";"588" +"20231112:22";"70" +"20231112:23";"243" +"20231113:00";"401" +"20231113:01";"518" +"20231113:02";"522" +"20231113:03";"915" +"20231113:04";"364" +"20231113:05";"260" +"20231113:06";"56" +"20231113:07";"466" +"20231113:08";"449" +"20231113:09";"27" +"20231113:10";"498" +"20231113:11";"520" +"20231113:12";"469" +"20231113:13";"15" +"20231113:14";"477" +"20231113:15";"776" +"20231113:16";"999" +"20231113:17";"752" +"20231113:18";"618" +"20231113:19";"7" +"20231113:20";"540" +"20231113:21";"30" +"20231113:22";"696" +"20231113:23";"886" +"20231114:00";"303" +"20231114:01";"878" +"20231114:02";"982" +"20231114:03";"783" +"20231114:04";"770" +"20231114:05";"772" +"20231114:06";"133" +"20231114:07";"90" +"20231114:08";"366" +"20231114:09";"895" +"20231114:10";"438" +"20231114:11";"535" +"20231114:12";"482" +"20231114:13";"44" +"20231114:14";"433" +"20231114:15";"344" +"20231114:16";"779" +"20231114:17";"885" +"20231114:18";"473" +"20231114:19";"212" +"20231114:20";"148" +"20231114:21";"744" +"20231114:22";"262" +"20231114:23";"212" +"20231115:00";"970" +"20231115:01";"774" +"20231115:02";"475" +"20231115:03";"901" +"20231115:04";"557" +"20231115:05";"861" +"20231115:06";"131" +"20231115:07";"453" +"20231115:08";"956" +"20231115:09";"678" +"20231115:10";"213" +"20231115:11";"980" +"20231115:12";"904" +"20231115:13";"322" +"20231115:14";"960" +"20231115:15";"702" +"20231115:16";"351" +"20231115:17";"580" +"20231115:18";"822" +"20231115:19";"114" +"20231115:20";"654" +"20231115:21";"575" +"20231115:22";"262" +"20231115:23";"59" +"20231116:00";"288" +"20231116:01";"850" +"20231116:02";"815" +"20231116:03";"605" +"20231116:04";"513" +"20231116:05";"717" +"20231116:06";"913" +"20231116:07";"642" +"20231116:08";"227" +"20231116:09";"52" +"20231116:10";"567" +"20231116:11";"241" +"20231116:12";"377" +"20231116:13";"148" +"20231116:14";"817" +"20231116:15";"848" +"20231116:16";"789" +"20231116:17";"544" +"20231116:18";"96" +"20231116:19";"130" +"20231116:20";"168" +"20231116:21";"700" +"20231116:22";"786" +"20231116:23";"64" +"20231117:00";"687" +"20231117:01";"632" +"20231117:02";"699" +"20231117:03";"296" +"20231117:04";"678" +"20231117:05";"154" +"20231117:06";"733" +"20231117:07";"106" +"20231117:08";"519" +"20231117:09";"517" +"20231117:10";"864" +"20231117:11";"612" +"20231117:12";"933" +"20231117:13";"784" +"20231117:14";"649" +"20231117:15";"94" +"20231117:16";"706" +"20231117:17";"728" +"20231117:18";"751" +"20231117:19";"11" +"20231117:20";"235" +"20231117:21";"398" +"20231117:22";"702" +"20231117:23";"904" +"20231118:00";"40" +"20231118:01";"881" +"20231118:02";"393" +"20231118:03";"938" +"20231118:04";"996" +"20231118:05";"441" +"20231118:06";"540" +"20231118:07";"162" +"20231118:08";"956" +"20231118:09";"250" +"20231118:10";"941" +"20231118:11";"201" +"20231118:12";"109" +"20231118:13";"860" +"20231118:14";"980" +"20231118:15";"929" +"20231118:16";"363" +"20231118:17";"963" +"20231118:18";"401" +"20231118:19";"340" +"20231118:20";"908" +"20231118:21";"792" +"20231118:22";"723" +"20231118:23";"438" +"20231119:00";"34" +"20231119:01";"674" +"20231119:02";"7" +"20231119:03";"887" +"20231119:04";"576" +"20231119:05";"855" +"20231119:06";"223" +"20231119:07";"162" +"20231119:08";"88" +"20231119:09";"12" +"20231119:10";"373" +"20231119:11";"847" +"20231119:12";"912" +"20231119:13";"160" +"20231119:14";"546" +"20231119:15";"78" +"20231119:16";"460" +"20231119:17";"472" +"20231119:18";"465" +"20231119:19";"275" +"20231119:20";"403" +"20231119:21";"831" +"20231119:22";"162" +"20231119:23";"265" +"20231120:00";"219" +"20231120:01";"397" +"20231120:02";"542" +"20231120:03";"472" +"20231120:04";"864" +"20231120:05";"55" +"20231120:06";"441" +"20231120:07";"786" +"20231120:08";"880" +"20231120:09";"128" +"20231120:10";"958" +"20231120:11";"422" +"20231120:12";"975" +"20231120:13";"968" +"20231120:14";"378" +"20231120:15";"342" +"20231120:16";"608" +"20231120:17";"280" +"20231120:18";"920" +"20231120:19";"971" +"20231120:20";"302" +"20231120:21";"696" +"20231120:22";"287" +"20231120:23";"734" +"20231121:00";"810" +"20231121:01";"70" +"20231121:02";"821" +"20231121:03";"752" +"20231121:04";"438" +"20231121:05";"389" +"20231121:06";"912" +"20231121:07";"81" +"20231121:08";"376" +"20231121:09";"202" +"20231121:10";"0" +"20231121:11";"188" +"20231121:12";"818" +"20231121:13";"130" +"20231121:14";"468" +"20231121:15";"678" +"20231121:16";"524" +"20231121:17";"148" +"20231121:18";"431" +"20231121:19";"219" +"20231121:20";"517" +"20231121:21";"876" +"20231121:22";"574" +"20231121:23";"474" +"20231122:00";"338" +"20231122:01";"483" +"20231122:02";"522" +"20231122:03";"144" +"20231122:04";"350" +"20231122:05";"755" +"20231122:06";"557" +"20231122:07";"469" +"20231122:08";"478" +"20231122:09";"211" +"20231122:10";"629" +"20231122:11";"710" +"20231122:12";"199" +"20231122:13";"578" +"20231122:14";"893" +"20231122:15";"523" +"20231122:16";"948" +"20231122:17";"722" +"20231122:18";"417" +"20231122:19";"265" +"20231122:20";"744" +"20231122:21";"36" +"20231122:22";"995" +"20231122:23";"144" +"20231123:00";"587" +"20231123:01";"321" +"20231123:02";"615" +"20231123:03";"158" +"20231123:04";"285" +"20231123:05";"228" +"20231123:06";"223" +"20231123:07";"366" +"20231123:08";"305" +"20231123:09";"804" +"20231123:10";"679" +"20231123:11";"41" +"20231123:12";"336" +"20231123:13";"226" +"20231123:14";"697" +"20231123:15";"353" +"20231123:16";"488" +"20231123:17";"891" +"20231123:18";"249" +"20231123:19";"827" +"20231123:20";"547" +"20231123:21";"443" +"20231123:22";"288" +"20231123:23";"39" +"20231124:00";"71" +"20231124:01";"57" +"20231124:02";"296" +"20231124:03";"320" +"20231124:04";"647" +"20231124:05";"289" +"20231124:06";"923" +"20231124:07";"535" +"20231124:08";"97" +"20231124:09";"115" +"20231124:10";"825" +"20231124:11";"92" +"20231124:12";"858" +"20231124:13";"849" +"20231124:14";"32" +"20231124:15";"847" +"20231124:16";"635" +"20231124:17";"688" +"20231124:18";"860" +"20231124:19";"253" +"20231124:20";"51" +"20231124:21";"949" +"20231124:22";"535" +"20231124:23";"280" +"20231125:00";"141" +"20231125:01";"163" +"20231125:02";"451" +"20231125:03";"738" +"20231125:04";"591" +"20231125:05";"847" +"20231125:06";"688" +"20231125:07";"259" +"20231125:08";"374" +"20231125:09";"147" +"20231125:10";"346" +"20231125:11";"811" +"20231125:12";"320" +"20231125:13";"630" +"20231125:14";"150" +"20231125:15";"999" +"20231125:16";"149" +"20231125:17";"8" +"20231125:18";"500" +"20231125:19";"520" +"20231125:20";"87" +"20231125:21";"788" +"20231125:22";"599" +"20231125:23";"860" +"20231126:00";"690" +"20231126:01";"736" +"20231126:02";"2" +"20231126:03";"38" +"20231126:04";"720" +"20231126:05";"229" +"20231126:06";"988" +"20231126:07";"252" +"20231126:08";"45" +"20231126:09";"852" +"20231126:10";"509" +"20231126:11";"981" +"20231126:12";"217" +"20231126:13";"465" +"20231126:14";"58" +"20231126:15";"723" +"20231126:16";"464" +"20231126:17";"926" +"20231126:18";"923" +"20231126:19";"691" +"20231126:20";"702" +"20231126:21";"609" +"20231126:22";"476" +"20231126:23";"557" +"20231127:00";"385" +"20231127:01";"375" +"20231127:02";"576" +"20231127:03";"498" +"20231127:04";"344" +"20231127:05";"215" +"20231127:06";"805" +"20231127:07";"835" +"20231127:08";"966" +"20231127:09";"598" +"20231127:10";"989" +"20231127:11";"933" +"20231127:12";"715" +"20231127:13";"120" +"20231127:14";"328" +"20231127:15";"373" +"20231127:16";"516" +"20231127:17";"611" +"20231127:18";"44" +"20231127:19";"263" +"20231127:20";"45" +"20231127:21";"300" +"20231127:22";"838" +"20231127:23";"206" +"20231128:00";"653" +"20231128:01";"640" +"20231128:02";"22" +"20231128:03";"242" +"20231128:04";"720" +"20231128:05";"962" +"20231128:06";"141" +"20231128:07";"171" +"20231128:08";"749" +"20231128:09";"910" +"20231128:10";"134" +"20231128:11";"399" +"20231128:12";"668" +"20231128:13";"917" +"20231128:14";"330" +"20231128:15";"163" +"20231128:16";"626" +"20231128:17";"831" +"20231128:18";"455" +"20231128:19";"998" +"20231128:20";"446" +"20231128:21";"811" +"20231128:22";"150" +"20231128:23";"488" +"20231129:00";"114" +"20231129:01";"586" +"20231129:02";"992" +"20231129:03";"737" +"20231129:04";"369" +"20231129:05";"70" +"20231129:06";"923" +"20231129:07";"267" +"20231129:08";"129" +"20231129:09";"950" +"20231129:10";"415" +"20231129:11";"639" +"20231129:12";"21" +"20231129:13";"860" +"20231129:14";"363" +"20231129:15";"673" +"20231129:16";"582" +"20231129:17";"637" +"20231129:18";"779" +"20231129:19";"914" +"20231129:20";"84" +"20231129:21";"618" +"20231129:22";"219" +"20231129:23";"993" +"20231130:00";"675" +"20231130:01";"43" +"20231130:02";"120" +"20231130:03";"396" +"20231130:04";"568" +"20231130:05";"794" +"20231130:06";"931" +"20231130:07";"400" +"20231130:08";"781" +"20231130:09";"911" +"20231130:10";"75" +"20231130:11";"542" +"20231130:12";"923" +"20231130:13";"784" +"20231130:14";"731" +"20231130:15";"969" +"20231130:16";"528" +"20231130:17";"414" +"20231130:18";"838" +"20231130:19";"947" +"20231130:20";"690" +"20231130:21";"543" +"20231130:22";"33" +"20231130:23";"595" +"20231201:00";"776" +"20231201:01";"16" +"20231201:02";"355" +"20231201:03";"639" +"20231201:04";"824" +"20231201:05";"945" +"20231201:06";"68" +"20231201:07";"167" +"20231201:08";"672" +"20231201:09";"290" +"20231201:10";"903" +"20231201:11";"830" +"20231201:12";"746" +"20231201:13";"558" +"20231201:14";"873" +"20231201:15";"195" +"20231201:16";"124" +"20231201:17";"189" +"20231201:18";"315" +"20231201:19";"102" +"20231201:20";"218" +"20231201:21";"404" +"20231201:22";"818" +"20231201:23";"803" +"20231202:00";"378" +"20231202:01";"233" +"20231202:02";"963" +"20231202:03";"605" +"20231202:04";"112" +"20231202:05";"264" +"20231202:06";"342" +"20231202:07";"820" +"20231202:08";"608" +"20231202:09";"295" +"20231202:10";"519" +"20231202:11";"730" +"20231202:12";"524" +"20231202:13";"99" +"20231202:14";"760" +"20231202:15";"279" +"20231202:16";"792" +"20231202:17";"915" +"20231202:18";"432" +"20231202:19";"910" +"20231202:20";"190" +"20231202:21";"195" +"20231202:22";"652" +"20231202:23";"670" +"20231203:00";"510" +"20231203:01";"32" +"20231203:02";"673" +"20231203:03";"415" +"20231203:04";"683" +"20231203:05";"906" +"20231203:06";"345" +"20231203:07";"662" +"20231203:08";"746" +"20231203:09";"487" +"20231203:10";"362" +"20231203:11";"590" +"20231203:12";"649" +"20231203:13";"942" +"20231203:14";"528" +"20231203:15";"575" +"20231203:16";"494" +"20231203:17";"342" +"20231203:18";"757" +"20231203:19";"824" +"20231203:20";"151" +"20231203:21";"297" +"20231203:22";"303" +"20231203:23";"667" +"20231204:00";"321" +"20231204:01";"835" +"20231204:02";"686" +"20231204:03";"676" +"20231204:04";"288" +"20231204:05";"357" +"20231204:06";"707" +"20231204:07";"520" +"20231204:08";"433" +"20231204:09";"919" +"20231204:10";"8" +"20231204:11";"400" +"20231204:12";"206" +"20231204:13";"983" +"20231204:14";"200" +"20231204:15";"535" +"20231204:16";"465" +"20231204:17";"839" +"20231204:18";"57" +"20231204:19";"941" +"20231204:20";"590" +"20231204:21";"92" +"20231204:22";"591" +"20231204:23";"383" +"20231205:00";"448" +"20231205:01";"932" +"20231205:02";"399" +"20231205:03";"374" +"20231205:04";"995" +"20231205:05";"441" +"20231205:06";"968" +"20231205:07";"761" +"20231205:08";"810" +"20231205:09";"49" +"20231205:10";"664" +"20231205:11";"454" +"20231205:12";"216" +"20231205:13";"218" +"20231205:14";"161" +"20231205:15";"829" +"20231205:16";"783" +"20231205:17";"969" +"20231205:18";"370" +"20231205:19";"876" +"20231205:20";"397" +"20231205:21";"897" +"20231205:22";"807" +"20231205:23";"691" +"20231206:00";"702" +"20231206:01";"432" +"20231206:02";"459" +"20231206:03";"706" +"20231206:04";"582" +"20231206:05";"474" +"20231206:06";"1" +"20231206:07";"531" +"20231206:08";"163" +"20231206:09";"497" +"20231206:10";"907" +"20231206:11";"765" +"20231206:12";"23" +"20231206:13";"127" +"20231206:14";"227" +"20231206:15";"410" +"20231206:16";"366" +"20231206:17";"209" +"20231206:18";"501" +"20231206:19";"150" +"20231206:20";"767" +"20231206:21";"92" +"20231206:22";"944" +"20231206:23";"292" +"20231207:00";"97" +"20231207:01";"551" +"20231207:02";"271" +"20231207:03";"316" +"20231207:04";"160" +"20231207:05";"712" +"20231207:06";"374" +"20231207:07";"646" +"20231207:08";"397" +"20231207:09";"870" +"20231207:10";"230" +"20231207:11";"674" +"20231207:12";"668" +"20231207:13";"330" +"20231207:14";"179" +"20231207:15";"424" +"20231207:16";"704" +"20231207:17";"299" +"20231207:18";"818" +"20231207:19";"964" +"20231207:20";"136" +"20231207:21";"196" +"20231207:22";"128" +"20231207:23";"896" +"20231208:00";"242" +"20231208:01";"87" +"20231208:02";"32" +"20231208:03";"820" +"20231208:04";"52" +"20231208:05";"575" +"20231208:06";"252" +"20231208:07";"307" +"20231208:08";"904" +"20231208:09";"20" +"20231208:10";"939" +"20231208:11";"196" +"20231208:12";"168" +"20231208:13";"150" +"20231208:14";"847" +"20231208:15";"860" +"20231208:16";"786" +"20231208:17";"567" +"20231208:18";"989" +"20231208:19";"504" +"20231208:20";"608" +"20231208:21";"559" +"20231208:22";"529" +"20231208:23";"74" +"20231209:00";"743" +"20231209:01";"895" +"20231209:02";"53" +"20231209:03";"667" +"20231209:04";"165" +"20231209:05";"153" +"20231209:06";"142" +"20231209:07";"738" +"20231209:08";"516" +"20231209:09";"715" +"20231209:10";"514" +"20231209:11";"842" +"20231209:12";"134" +"20231209:13";"317" +"20231209:14";"604" +"20231209:15";"828" +"20231209:16";"470" +"20231209:17";"12" +"20231209:18";"64" +"20231209:19";"225" +"20231209:20";"255" +"20231209:21";"542" +"20231209:22";"473" +"20231209:23";"829" +"20231210:00";"19" +"20231210:01";"610" +"20231210:02";"225" +"20231210:03";"219" +"20231210:04";"549" +"20231210:05";"998" +"20231210:06";"673" +"20231210:07";"105" +"20231210:08";"683" +"20231210:09";"458" +"20231210:10";"119" +"20231210:11";"537" +"20231210:12";"217" +"20231210:13";"41" +"20231210:14";"643" +"20231210:15";"58" +"20231210:16";"70" +"20231210:17";"935" +"20231210:18";"471" +"20231210:19";"311" +"20231210:20";"564" +"20231210:21";"364" +"20231210:22";"543" +"20231210:23";"347" +"20231211:00";"437" +"20231211:01";"821" +"20231211:02";"169" +"20231211:03";"111" +"20231211:04";"634" +"20231211:05";"75" +"20231211:06";"781" +"20231211:07";"391" +"20231211:08";"961" +"20231211:09";"501" +"20231211:10";"214" +"20231211:11";"123" +"20231211:12";"101" +"20231211:13";"510" +"20231211:14";"856" +"20231211:15";"330" +"20231211:16";"169" +"20231211:17";"54" +"20231211:18";"852" +"20231211:19";"563" +"20231211:20";"63" +"20231211:21";"635" +"20231211:22";"349" +"20231211:23";"293" +"20231212:00";"426" +"20231212:01";"297" +"20231212:02";"782" +"20231212:03";"205" +"20231212:04";"656" +"20231212:05";"152" +"20231212:06";"675" +"20231212:07";"475" +"20231212:08";"728" +"20231212:09";"501" +"20231212:10";"188" +"20231212:11";"892" +"20231212:12";"714" +"20231212:13";"386" +"20231212:14";"602" +"20231212:15";"199" +"20231212:16";"532" +"20231212:17";"103" +"20231212:18";"900" +"20231212:19";"928" +"20231212:20";"156" +"20231212:21";"168" +"20231212:22";"867" +"20231212:23";"677" +"20231213:00";"425" +"20231213:01";"171" +"20231213:02";"815" +"20231213:03";"392" +"20231213:04";"943" +"20231213:05";"816" +"20231213:06";"999" +"20231213:07";"60" +"20231213:08";"254" +"20231213:09";"428" +"20231213:10";"28" +"20231213:11";"738" +"20231213:12";"791" +"20231213:13";"533" +"20231213:14";"893" +"20231213:15";"875" +"20231213:16";"489" +"20231213:17";"9" +"20231213:18";"225" +"20231213:19";"863" +"20231213:20";"956" +"20231213:21";"953" +"20231213:22";"675" +"20231213:23";"629" +"20231214:00";"55" +"20231214:01";"609" +"20231214:02";"516" +"20231214:03";"62" +"20231214:04";"562" +"20231214:05";"970" +"20231214:06";"976" +"20231214:07";"69" +"20231214:08";"147" +"20231214:09";"400" +"20231214:10";"984" +"20231214:11";"583" +"20231214:12";"441" +"20231214:13";"278" +"20231214:14";"804" +"20231214:15";"275" +"20231214:16";"982" +"20231214:17";"278" +"20231214:18";"416" +"20231214:19";"581" +"20231214:20";"673" +"20231214:21";"69" +"20231214:22";"304" +"20231214:23";"276" +"20231215:00";"885" +"20231215:01";"965" +"20231215:02";"751" +"20231215:03";"639" +"20231215:04";"702" +"20231215:05";"459" +"20231215:06";"243" +"20231215:07";"829" +"20231215:08";"431" +"20231215:09";"173" +"20231215:10";"557" +"20231215:11";"416" +"20231215:12";"267" +"20231215:13";"1" +"20231215:14";"860" +"20231215:15";"951" +"20231215:16";"16" +"20231215:17";"22" +"20231215:18";"56" +"20231215:19";"299" +"20231215:20";"602" +"20231215:21";"302" +"20231215:22";"454" +"20231215:23";"149" +"20231216:00";"171" +"20231216:01";"171" +"20231216:02";"781" +"20231216:03";"955" +"20231216:04";"314" +"20231216:05";"6" +"20231216:06";"446" +"20231216:07";"655" +"20231216:08";"957" +"20231216:09";"184" +"20231216:10";"755" +"20231216:11";"485" +"20231216:12";"775" +"20231216:13";"704" +"20231216:14";"237" +"20231216:15";"939" +"20231216:16";"170" +"20231216:17";"137" +"20231216:18";"120" +"20231216:19";"882" +"20231216:20";"858" +"20231216:21";"143" +"20231216:22";"107" +"20231216:23";"846" +"20231217:00";"414" +"20231217:01";"593" +"20231217:02";"924" +"20231217:03";"146" +"20231217:04";"237" +"20231217:05";"466" +"20231217:06";"824" +"20231217:07";"603" +"20231217:08";"877" +"20231217:09";"635" +"20231217:10";"15" +"20231217:11";"55" +"20231217:12";"663" +"20231217:13";"972" +"20231217:14";"575" +"20231217:15";"9" +"20231217:16";"169" +"20231217:17";"932" +"20231217:18";"11" +"20231217:19";"728" +"20231217:20";"747" +"20231217:21";"457" +"20231217:22";"332" +"20231217:23";"429" +"20231218:00";"157" +"20231218:01";"226" +"20231218:02";"157" +"20231218:03";"111" +"20231218:04";"323" +"20231218:05";"850" +"20231218:06";"198" +"20231218:07";"230" +"20231218:08";"452" +"20231218:09";"175" +"20231218:10";"320" +"20231218:11";"513" +"20231218:12";"995" +"20231218:13";"510" +"20231218:14";"72" +"20231218:15";"944" +"20231218:16";"921" +"20231218:17";"296" +"20231218:18";"580" +"20231218:19";"25" +"20231218:20";"368" +"20231218:21";"128" +"20231218:22";"82" +"20231218:23";"342" +"20231219:00";"215" +"20231219:01";"720" +"20231219:02";"509" +"20231219:03";"742" +"20231219:04";"12" +"20231219:05";"455" +"20231219:06";"340" +"20231219:07";"19" +"20231219:08";"32" +"20231219:09";"553" +"20231219:10";"111" +"20231219:11";"45" +"20231219:12";"150" +"20231219:13";"174" +"20231219:14";"770" +"20231219:15";"672" +"20231219:16";"309" +"20231219:17";"7" +"20231219:18";"589" +"20231219:19";"383" +"20231219:20";"405" +"20231219:21";"219" +"20231219:22";"321" +"20231219:23";"845" +"20231220:00";"669" +"20231220:01";"10" +"20231220:02";"491" +"20231220:03";"467" +"20231220:04";"140" +"20231220:05";"28" +"20231220:06";"663" +"20231220:07";"510" +"20231220:08";"191" +"20231220:09";"213" +"20231220:10";"445" +"20231220:11";"178" +"20231220:12";"257" +"20231220:13";"88" +"20231220:14";"867" +"20231220:15";"290" +"20231220:16";"352" +"20231220:17";"495" +"20231220:18";"444" +"20231220:19";"77" +"20231220:20";"941" +"20231220:21";"25" +"20231220:22";"467" +"20231220:23";"569" +"20231221:00";"97" +"20231221:01";"672" +"20231221:02";"684" +"20231221:03";"632" +"20231221:04";"432" +"20231221:05";"159" +"20231221:06";"626" +"20231221:07";"867" +"20231221:08";"404" +"20231221:09";"844" +"20231221:10";"670" +"20231221:11";"132" +"20231221:12";"420" +"20231221:13";"803" +"20231221:14";"950" +"20231221:15";"722" +"20231221:16";"26" +"20231221:17";"996" +"20231221:18";"181" +"20231221:19";"406" +"20231221:20";"639" +"20231221:21";"622" +"20231221:22";"845" +"20231221:23";"770" +"20231222:00";"868" +"20231222:01";"788" +"20231222:02";"883" +"20231222:03";"503" +"20231222:04";"197" +"20231222:05";"197" +"20231222:06";"395" +"20231222:07";"5" +"20231222:08";"968" +"20231222:09";"919" +"20231222:10";"66" +"20231222:11";"312" +"20231222:12";"311" +"20231222:13";"982" +"20231222:14";"705" +"20231222:15";"815" +"20231222:16";"960" +"20231222:17";"194" +"20231222:18";"625" +"20231222:19";"440" +"20231222:20";"706" +"20231222:21";"132" +"20231222:22";"164" +"20231222:23";"135" +"20231223:00";"306" +"20231223:01";"321" +"20231223:02";"189" +"20231223:03";"151" +"20231223:04";"539" +"20231223:05";"167" +"20231223:06";"675" +"20231223:07";"275" +"20231223:08";"771" +"20231223:09";"662" +"20231223:10";"316" +"20231223:11";"885" +"20231223:12";"584" +"20231223:13";"331" +"20231223:14";"695" +"20231223:15";"828" +"20231223:16";"815" +"20231223:17";"623" +"20231223:18";"895" +"20231223:19";"256" +"20231223:20";"342" +"20231223:21";"700" +"20231223:22";"790" +"20231223:23";"749" +"20231224:00";"737" +"20231224:01";"520" +"20231224:02";"55" +"20231224:03";"716" +"20231224:04";"253" +"20231224:05";"32" +"20231224:06";"841" +"20231224:07";"546" +"20231224:08";"28" +"20231224:09";"480" +"20231224:10";"931" +"20231224:11";"832" +"20231224:12";"855" +"20231224:13";"948" +"20231224:14";"48" +"20231224:15";"338" +"20231224:16";"832" +"20231224:17";"327" +"20231224:18";"299" +"20231224:19";"93" +"20231224:20";"568" +"20231224:21";"538" +"20231224:22";"86" +"20231224:23";"716" +"20231225:00";"943" +"20231225:01";"198" +"20231225:02";"362" +"20231225:03";"238" +"20231225:04";"527" +"20231225:05";"676" +"20231225:06";"477" +"20231225:07";"73" +"20231225:08";"993" +"20231225:09";"3" +"20231225:10";"646" +"20231225:11";"41" +"20231225:12";"666" +"20231225:13";"643" +"20231225:14";"929" +"20231225:15";"757" +"20231225:16";"7" +"20231225:17";"71" +"20231225:18";"66" +"20231225:19";"891" +"20231225:20";"203" +"20231225:21";"437" +"20231225:22";"284" +"20231225:23";"522" +"20231226:00";"12" +"20231226:01";"641" +"20231226:02";"451" +"20231226:03";"494" +"20231226:04";"871" +"20231226:05";"875" +"20231226:06";"791" +"20231226:07";"7" +"20231226:08";"387" +"20231226:09";"754" +"20231226:10";"685" +"20231226:11";"245" +"20231226:12";"633" +"20231226:13";"427" +"20231226:14";"263" +"20231226:15";"683" +"20231226:16";"893" +"20231226:17";"289" +"20231226:18";"959" +"20231226:19";"576" +"20231226:20";"812" +"20231226:21";"356" +"20231226:22";"967" +"20231226:23";"333" +"20231227:00";"977" +"20231227:01";"899" +"20231227:02";"134" +"20231227:03";"301" +"20231227:04";"962" +"20231227:05";"448" +"20231227:06";"591" +"20231227:07";"47" +"20231227:08";"104" +"20231227:09";"846" +"20231227:10";"389" +"20231227:11";"226" +"20231227:12";"300" +"20231227:13";"212" +"20231227:14";"776" +"20231227:15";"812" +"20231227:16";"193" +"20231227:17";"975" +"20231227:18";"176" +"20231227:19";"143" +"20231227:20";"935" +"20231227:21";"565" +"20231227:22";"573" +"20231227:23";"422" +"20231228:00";"46" +"20231228:01";"473" +"20231228:02";"970" +"20231228:03";"465" +"20231228:04";"201" +"20231228:05";"902" +"20231228:06";"873" +"20231228:07";"427" +"20231228:08";"347" +"20231228:09";"447" +"20231228:10";"39" +"20231228:11";"420" +"20231228:12";"629" +"20231228:13";"629" +"20231228:14";"626" +"20231228:15";"834" +"20231228:16";"282" +"20231228:17";"957" +"20231228:18";"254" +"20231228:19";"76" +"20231228:20";"665" +"20231228:21";"134" +"20231228:22";"854" +"20231228:23";"692" +"20231229:00";"523" +"20231229:01";"492" +"20231229:02";"852" +"20231229:03";"180" +"20231229:04";"263" +"20231229:05";"949" +"20231229:06";"493" +"20231229:07";"791" +"20231229:08";"417" +"20231229:09";"512" +"20231229:10";"789" +"20231229:11";"751" +"20231229:12";"543" +"20231229:13";"48" +"20231229:14";"700" +"20231229:15";"678" +"20231229:16";"961" +"20231229:17";"699" +"20231229:18";"706" +"20231229:19";"741" +"20231229:20";"766" +"20231229:21";"951" +"20231229:22";"339" +"20231229:23";"424" +"20231230:00";"730" +"20231230:01";"455" +"20231230:02";"244" +"20231230:03";"504" +"20231230:04";"948" +"20231230:05";"231" +"20231230:06";"313" +"20231230:07";"113" +"20231230:08";"1" +"20231230:09";"337" +"20231230:10";"544" +"20231230:11";"823" +"20231230:12";"210" +"20231230:13";"836" +"20231230:14";"389" +"20231230:15";"667" +"20231230:16";"818" +"20231230:17";"598" +"20231230:18";"815" +"20231230:19";"613" +"20231230:20";"947" +"20231230:21";"279" +"20231230:22";"500" +"20231230:23";"783" +"20231231:00";"447" +"20231231:01";"687" +"20231231:02";"740" +"20231231:03";"962" +"20231231:04";"950" +"20231231:05";"349" +"20231231:06";"871" +"20231231:07";"277" +"20231231:08";"953" +"20231231:09";"94" +"20231231:10";"911" +"20231231:11";"661" +"20231231:12";"451" +"20231231:13";"990" +"20231231:14";"524" +"20231231:15";"11" +"20231231:16";"579" +"20231231:17";"176" +"20231231:18";"296" +"20231231:19";"277" +"20231231:20";"88" +"20231231:21";"530" +"20231231:22";"819" +"20231231:23";"831" \ No newline at end of file diff --git a/pvtools/functions/SLP.js b/pvtoolsOld/functions/SLP.js similarity index 100% rename from pvtools/functions/SLP.js rename to pvtoolsOld/functions/SLP.js diff --git a/pvtoolsOld/functions/SLP.test.js b/pvtoolsOld/functions/SLP.test.js new file mode 100644 index 0000000..031ac21 --- /dev/null +++ b/pvtoolsOld/functions/SLP.test.js @@ -0,0 +1,47 @@ +const { SLPH0, PROFILEBASE, factorFunction } = require('./SLP') +const calcProfile = require('./calcProfile') + +describe('test SPL functions', () => { + const results = calcProfile({ + year: 2021, + consumptionYear: 5000, + profile: SLPH0, + profileBase: PROFILEBASE, + }) + test('results length are as long then the year', () => { + expect(Object.keys(results).length).toBe(365 * 24) + }) + test('results length are as long then the year in leap year', () => { + const results = calcProfile({ + year: 2016, + consumptionYear: 5000, + profile: SLPH0, + profileBase: PROFILEBASE, + }) + expect(Object.keys(results).length).toBe(366 * 24) + }) + test('one result should be ab object', () => { + expect(typeof results).toBe('object') + }) + test('one result should have the following key and value', () => { + const results = calcProfile({ + year: 1996, + consumptionYear: 5000, + profile: SLPH0, + profileBase: PROFILEBASE, + factorFunction, + }) + + expect(results['19960601:02'].P.toFixed(5)).toBe( + (45.840113499345804 * 5).toFixed(5), + ) + }) + test('full powerconsumption of is near the input consumption with max 1% defference', () => { + const power = Object.values(results).reduce( + (prev, curr) => prev + curr.P, + 0, + ) + + expect(power > 5000 * 1000 * 0.9 && power < 5000 * 1000 * 1.1).toBeTruthy() + }) +}) diff --git a/pvtools/functions/calcHeatpump.js b/pvtoolsOld/functions/calcHeatpump.js similarity index 100% rename from pvtools/functions/calcHeatpump.js rename to pvtoolsOld/functions/calcHeatpump.js diff --git a/pvtoolsOld/functions/calcHeatpump.test.js b/pvtoolsOld/functions/calcHeatpump.test.js new file mode 100644 index 0000000..fcd9325 --- /dev/null +++ b/pvtoolsOld/functions/calcHeatpump.test.js @@ -0,0 +1,119 @@ +const { calcHeatingTempMap, calcHeatEfficiencyMap } = require('./calcHeatpump') + +describe('calculate heating temperature', () => { + test('test failure input parameters', () => { + expect(() => calcHeatingTempMap({ tempMap: 1 })).toThrow( + 'maxHeatTemp not given', + ) + expect(() => calcHeatingTempMap({ maxHeatTemp: 15 })).toThrow( + 'tempMap is not given', + ) + expect(() => + calcHeatingTempMap({ maxHeatTemp: 15, tempMap: 'text' }), + ).toThrow('tempMap is not an array') + expect(() => calcHeatingTempMap({ maxHeatTemp: 15, tempMap: [] })).toThrow( + 'tempMap length must be greater then 0', + ) + expect(() => + calcHeatingTempMap({ maxHeatTemp: 15, tempMap: ['text'] }), + ).toThrow('tempMap elements must be also an array') + expect(() => + calcHeatingTempMap({ maxHeatTemp: 15, tempMap: [[1]] }), + ).toThrow('tempMap elements must be also an array with the length of 2') + }) + test('test temp calculations', () => { + const calc = calcHeatingTempMap({ + minHeatTemp: -25, + maxHeatTemp: 18, + tempMap: [ + [-20, 50], + [-10, 40], + [10, 30], + [15, 26], + ], + }) + expect(calc[2]).toBe(34) + }) +}) + +describe('calculate efficiency Map', () => { + test('test failure input parameters', () => { + expect(() => calcHeatEfficiencyMap({})).toThrow('maxHeatTemp not given') + expect(() => calcHeatEfficiencyMap({ maxHeatTemp: 3 })).toThrow( + 'minHeatTemp not given', + ) + expect(() => + calcHeatEfficiencyMap({ maxHeatTemp: 3, minHeatTemp: 4 }), + ).toThrow('maxTargetTemp not given') + expect(() => + calcHeatEfficiencyMap({ + maxHeatTemp: 3, + minHeatTemp: 4, + maxTargetTemp: 4, + }), + ).toThrow('minTargetTemp not given') + expect(() => + calcHeatEfficiencyMap({ + maxHeatTemp: 3, + minHeatTemp: 4, + maxTargetTemp: 4, + minTargetTemp: 4, + }), + ).toThrow('efficiencyMap is not given') + expect(() => + calcHeatEfficiencyMap({ + maxHeatTemp: 3, + minHeatTemp: 4, + maxTargetTemp: 4, + minTargetTemp: 4, + efficiencyMap: 33, + }), + ).toThrow('efficiencyMap is not an array') + expect(() => + calcHeatEfficiencyMap({ + minHeatTemp: -25, + maxHeatTemp: 18, + minTargetTemp: 30, + maxTargetTemp: 55, + efficiencyMap: [ + [-7, 35, 3.14], + [-7, 55, 2.13], + ], + }), + ).toThrow( + 'efficiencyMap need two efficiency values with same heat temprature', + ) + expect(() => + calcHeatEfficiencyMap({ + minHeatTemp: -25, + maxHeatTemp: 18, + minTargetTemp: 30, + maxTargetTemp: 55, + efficiencyMap: [ + [-7, 35, 3.14], + [2, 35, 4.61], + ], + }), + ).toThrow('efficiencyMap need two efficiency values with same temprature') + }) + test('test efficiency calculations', () => { + const calc = calcHeatEfficiencyMap({ + minHeatTemp: -10, + maxHeatTemp: 10, + minTargetTemp: 39, + maxTargetTemp: 40, + efficiencyMap: [ + [2, 35, 4.61], + [-7, 55, 2.13], + [-7, 35, 3.14], + ], + }) + // const calc = calcHeatEfficiencyMap({minHeatTemp: -10, maxHeatTemp: 10, minTargetTemp:39, maxTargetTemp:40, efficiencyMap:[[-7,35,3.14], [-7,55,2.13], [2,35,4.61]] } ) + + expect(calc['39']['-2']).toBe(3.6418333333333335) + }) +}) + +describe('calculate needed heat per day', () => { + test('', () => {}) +}) diff --git a/pvtoolsOld/functions/calcProfile.js b/pvtoolsOld/functions/calcProfile.js new file mode 100644 index 0000000..a7e8bfa --- /dev/null +++ b/pvtoolsOld/functions/calcProfile.js @@ -0,0 +1,77 @@ +/** + * Calculate an consumptionProfile per hour from a profile definition + * @param {[Objects]} profile Loadprofile Array [{till: "03/21",profileDays:{weekdays:{0:50,1:45, ... 23:55},sat:{0:44 ... 23:44},sun:{0:44 ... 23:44},}},{till:...}] + * @param {Int} year The year which should be calculated (leap year in mind) + * @param {Int} consumptionYear Consumption in this year in kWh + * @param {Int} profileBase Consumption on which the profile is calculated. Default: 1000kWh per year + * @param {Int} factorFunction Optional: used to calculate the power with a function. Is needed for calculaion "Standardlastprofil nach BDEW" + * @return {Object} {"20200101:00":{P:20}, "20200101:01":{P:30.5}, ...} + */ + +module.exports = ({ + year, + consumptionYear, + profile, + profileBase = 1000, + factorFunction, +}) => { + // IF profil is based on 1000kWh per year, it must be multiplied by difference of real consumption (e.g. 5000kWh = multiplier 5x) + const consumptionFactor = consumptionYear / profileBase + let currentDay = new Date(Date.UTC(year, 0, 1, 0, 0)) + const lastDay = new Date(Date.UTC(year + 1, 0, 1, 0, 0)) + + const days = {} + // Needed for factorFunction "Standardlastprofil BDEW" + let dayTimer = 1 + + while (currentDay <= lastDay) { + let currentProfile = profile.find( + (season) => new Date(season.till + '/' + year) >= currentDay, + ) // TODO/BUG: this finds the next season one day earlier (03/21 is falsy at currentDay 03/21) + + if (!currentProfile) { + //TODO/BUG: The date "till: 12/31" aren't find correctly. + currentProfile = profile.find((season) => season.last) + } + + for (let hour = 0; hour < 24; hour++) { + const timeString = `${year}${('00' + (currentDay.getMonth() + 1)).slice( + -2, + )}${('00' + currentDay.getDate()).slice(-2)}:${('00' + hour).slice(-2)}` + let consumption + switch ( + currentDay.getDay() // find the right day for profile | 0 = sun, 1 = mon, ..., 6 = sat + ) { + case 0: + consumption = + currentProfile.profileDays['sun'][hour] || + currentProfile.profileDays['default'][hour] + break + case 6: + consumption = + currentProfile.profileDays['sat'][hour] || + currentProfile.profileDays['default'][hour] + break + + default: + consumption = + currentProfile.profileDays['weekdays'][hour] || + currentProfile.profileDays['default'][hour] + break + } + + if (factorFunction) { + // if function set, use function for "Standardlastprofil BDEW" + + days[timeString] = { + P: factorFunction(dayTimer, consumption * consumptionFactor), + } + } else { + days[timeString] = { P: consumption * consumptionFactor } + } + } + currentDay.setDate(currentDay.getDate() + 1) // set one day after + dayTimer++ + } + return days +} diff --git a/pvtools/functions/convertConsumptionUploads.js b/pvtoolsOld/functions/convertConsumptionUploads.js similarity index 100% rename from pvtools/functions/convertConsumptionUploads.js rename to pvtoolsOld/functions/convertConsumptionUploads.js diff --git a/pvtoolsOld/functions/convertConsumptionUploads.test.js b/pvtoolsOld/functions/convertConsumptionUploads.test.js new file mode 100644 index 0000000..ab62e84 --- /dev/null +++ b/pvtoolsOld/functions/convertConsumptionUploads.test.js @@ -0,0 +1,22 @@ +const fs = require('fs') +const { + convertConsumptionCSV, + createTemplateCsv, +} = require('./convertConsumptionUploads') + +const csvData = fs.readFileSync(__dirname + '/ImportTest.csv', 'utf8') + +describe('read csv file', () => { + test('result has entries', () => { + const result = convertConsumptionCSV(csvData, 2023) + console.log(result) + expect(typeof result == 'object').toBe(true) + }) + test('createCsv', () => { + const csv = createTemplateCsv(2023) + // Linecount for 2023: 1 headline + 24h*356d data lines + expect(csv.split('\n').length).toBe(1 + 24 * 365) + // Filesize for 2023 template + expect(csv.length).toBe(140178) + }) +}) diff --git a/pvtoolsOld/functions/createRegression.js b/pvtoolsOld/functions/createRegression.js new file mode 100644 index 0000000..b577c95 --- /dev/null +++ b/pvtoolsOld/functions/createRegression.js @@ -0,0 +1,34 @@ +const { parse } = require('csv-parse/sync') +const fs = require('fs') + +const data = fs.readFileSync('./regressiondb.csv', { + encoding: 'utf8', + flag: 'r', +}) + +const csvData = parse(data, { delimiter: ';', columns: true }) + +const objfunc = (acc, curr) => { + const power = curr['P(1h)'] + const o = {} + for (const [key, value] of Object.entries(curr)) { + try { + const newkey = parseInt(key) + const newVal = parseFloat(value) + if (isNaN(newkey)) { + continue + } + o[newkey] = newVal + } catch (e) { + console.log(e) + } + } + acc[power] = o + return acc +} + +const obj = csvData.reduce(objfunc, {}) + +fs.writeFileSync('./regression.json', JSON.stringify(obj, null, 2)) + +// console.log(obj) diff --git a/pvtools/functions/energyFlow.js b/pvtoolsOld/functions/energyFlow.js similarity index 100% rename from pvtools/functions/energyFlow.js rename to pvtoolsOld/functions/energyFlow.js diff --git a/pvtoolsOld/functions/energyFlow.test.js b/pvtoolsOld/functions/energyFlow.test.js new file mode 100644 index 0000000..785207a --- /dev/null +++ b/pvtoolsOld/functions/energyFlow.test.js @@ -0,0 +1,528 @@ +const { + energyFlow, + calculateConsumption, + normalizeHourlyRadiation, + mergePowerGeneration, +} = require('./energyFlow') + +const seriescalc = require('./seriescalc.json') +const seriescalc2 = require('./seriescalc2.json') + +const normalizedHR = normalizeHourlyRadiation(seriescalc.outputs.hourly) +const normalizedHR2 = normalizeHourlyRadiation(seriescalc2.outputs.hourly) + +const regressionDb = require('./regression.json') + +describe('testNormalize function', () => { + test('check P and temperature values', () => { + expect(Object.keys(normalizedHR).length).toBe(8784) + expect(normalizedHR['20200505:15']).toEqual({ + P: 3443.82, + temperature: 22.81, + }) + }) +}) + +describe('PV > Consumption', () => { + test('pv generation is more than consumption, battery is loading', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 4000, + batterySoc: 5000, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 1000 * 0.99 + 5000, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 4000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 0, + batteryLoad: 1000 * 0.99, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is more than consumption, max battery power load is lower than generation and split in feed in and load', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 0, + batterySoc: 5000, + batterySocMax: 8000, + batterySocMin: 100, + batteryEfficiency: 0.99, + maxPowerLoadBattery: 2000, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 2000 + 5000, + selfUsedEnergy: 0, + selfUsedEnergyPv: 0, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 3000 * 0.99, + batteryLoad: 2000, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is more than consumption, max battery power load is lower than generation, only load in battery', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 2000, + batterySoc: 5000, + batterySocMax: 8000, + batterySocMin: 100, + batteryEfficiency: 0.99, + maxPowerLoadBattery: 2000, + }) + expect(data).toEqual({ + newBatterySoc: 2000 + 5000, + selfUsedEnergy: 2000, + selfUsedEnergyPv: 2000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 1000 * 0.99, + batteryLoad: 2000, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is more than inverter max power generation', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 4000, + batterySoc: 5000, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + maxPowerGenerationInverter: 4500, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 500 * 0.99 + 5000, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 4000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 0, + batteryLoad: 500 * 0.99, + gridUsedEnergy: 0, + missedInverterPower: 500, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is more than consumption, battery load efficiency diff than unload', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 4000, + batterySoc: 5000, + batterySocMax: 10000, + batterySocMin: 100, + batteryLoadEfficiency: 0.95, + batteryEfficiency: 0.99, // unload as default + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 1000 * 0.95 + 5000, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 4000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 0, + batteryLoad: 1000 * 0.95, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is more than consumption, battery is full, power is feed in', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 4000, + batterySoc: 5000, + batterySocMax: 5000, + batterySocMin: 100, + batteryEfficiency: 0.99, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 5000, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 4000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 1000, + batteryLoad: 0, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + test('pv generation is more than consumption, battery is full, power is feed in, max feedin power less then generation', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 2000, + batterySoc: 5000, + batterySocMax: 5000, + batterySocMin: 100, + batteryEfficiency: 0.99, + maxPowerFeedIn: 2000, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 5000, + selfUsedEnergy: 2000, + selfUsedEnergyPv: 2000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 2000, + batteryLoad: 0, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 1000, + dayTime: '', + }) + }) + + test('pv generation is more than consumption, battery will be fullfilled, diff power is feed in', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 4000, + batterySoc: 5000, + batterySocMax: 5500, + batterySocMin: 100, + batteryEfficiency: 0.99, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 5500, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 4000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 500 * 0.99, + batteryLoad: 500, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) +}) + +describe('PV < Consumption', () => { + test('pv generation is less than consumption, battery is discharging', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 6000, + batterySoc: 5000, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 5000 - 1000 / 0.99, + selfUsedEnergy: 6000, + selfUsedEnergyPv: 5000, + selfUsedEnergyBattery: 1000, + feedInEnergyGrid: 0, + batteryLoad: -1000 / 0.99, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is less than consumption, battery is discharging, Batterypower is lower then consumption', () => { + const data = energyFlow({ + energyGeneration: 3000, + energyConsumption: 6000, + batterySoc: 5000, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + maxPowerGenerationBattery: 1000, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 5000 - 1000 / 0.99, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 3000, + selfUsedEnergyBattery: 1000, + feedInEnergyGrid: 0, + batteryLoad: -1000 / 0.99, + gridUsedEnergy: 2000, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is less than consumption, battery is discharging, Batterypower is lower then consumption, battery will be empty', () => { + const data = energyFlow({ + energyGeneration: 3000, + energyConsumption: 6000, + batterySoc: 3000, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + maxPowerGenerationBattery: 1000, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 3000 - 1000 / 0.99, + selfUsedEnergy: 4000, + selfUsedEnergyPv: 3000, + selfUsedEnergyBattery: 1000, + feedInEnergyGrid: 0, + batteryLoad: -1000 / 0.99, + gridUsedEnergy: 2000, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is less than consumption, battery unload efficiency is differnt then load', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 6000, + batterySoc: 5000, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + batteryUnloadEfficiency: 0.8, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 5000 - 1000 / 0.8, + selfUsedEnergy: 6000, + selfUsedEnergyPv: 5000, + selfUsedEnergyBattery: 1000, + feedInEnergyGrid: 0, + batteryLoad: -1000 / 0.8, + gridUsedEnergy: 0, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is less than consumption, battery is empty, cunsumpion from grid', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 6000, + batterySoc: 100, + batterySocMax: 10000, + batterySocMin: 100, + batteryEfficiency: 0.99, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 100, + selfUsedEnergy: 5000, + selfUsedEnergyPv: 5000, + selfUsedEnergyBattery: 0, + feedInEnergyGrid: 0, + batteryLoad: 0, + gridUsedEnergy: 1000, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) + + test('pv generation is less than consumption, battery is nearly empty, diff cunsumpion from grid', () => { + const data = energyFlow({ + energyGeneration: 5000, + energyConsumption: 6000, + batterySoc: 1000, + batterySocMax: 10000, + batterySocMin: 500, + batteryEfficiency: 0.99, + regressionDb, + }) + expect(data).toEqual({ + newBatterySoc: 500, + selfUsedEnergy: 5500, + selfUsedEnergyPv: 5000, + selfUsedEnergyBattery: 500, + feedInEnergyGrid: 0, + batteryLoad: -500, + gridUsedEnergy: 500 / 0.99, + missedInverterPower: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + dayTime: '', + }) + }) +}) + +describe('norm hourly radiation', () => { + test('result is an object', () => { + expect(typeof normalizedHR).toBe('object') + }) + test('all results is are object', () => { + ;[normalizedHR, normalizedHR2].forEach((e) => { + expect(typeof e).toBe('object') + }) + }) + test('results should be the right length in leap year 2020', () => { + expect(Object.keys(normalizedHR).length).toBe(366 * 24) + }) + test('results conatain the right power generation', () => { + // { + // "time": "20200308:1310", + // "P": 1365630.0, + // "G(i)": 549.35, + // "H_sun": 36.12, + // "T2m": 12.84, + // "WS10m": 0.69, + // "Int": 0.0 + // }, + expect(normalizedHR['20200308:13'].P).toBe(3065.16) + }) +}) + +describe('merge powergeneration arrays', () => { + const result = mergePowerGeneration([normalizedHR, normalizedHR2]) + const oneResult = mergePowerGeneration([normalizedHR]) + + // normalizedHR.map(obj => console.log(obj['20200515:14'])) + + test('merge only one power generation object', () => { + expect(typeof oneResult).toBe('object') + }) + test('merge only one power generation object, find one key', () => { + expect(oneResult['20200308:13']).toEqual({ P: 3065.16, temperature: 12.84 }) + expect(result['20200308:13']).toEqual({ P: 5861.82, temperature: 12.84 }) + }) + test('result is an object', () => { + expect(typeof result).toBe('object') + }) + test('check object key length', () => { + expect(Object.keys(result).length).toBe(8784) + }) + test('an key exist', () => { + expect(typeof result['20200515:14']).toBe('object') + }) + test('the summarized value af key is correct', () => { + expect(result['20200515:14'].P).toBe(7332.96) + }) +}) + +// describe.skip('integration tests energyFlow', () => { +// const consumption = calculateConsumption(loadProfile, 2020, 4500) +// const mergedPowerGeneration = mergePowerGeneration(normalizedHR) +// const dayTimeOrder = generateDayTimeOrder(2020) + +// test('test one energy flow result', () => { + +// const dayTime = '20200518:18' +// // console.log(consumption[dayTime]) +// const result = energyFlow({ +// energyGeneration: mergedPowerGeneration[dayTime].P, //473.34000000000003 +// energyConsumption: consumption[dayTime].P, //3093.3675000000003 +// batterySoc:5000, +// batterySocMax: 10000, +// batterySocMin: 100, +// batteryEfficiency: .99, +// }) +// expect(consumption[dayTime].P).toBe(3093.3675000000003) +// expect(mergedPowerGeneration[dayTime].P).toBe(473.34000000000003) +// expect(result).toEqual({ +// "batteryLoad": -4900, +// "gridUsedEnergy": 1515.9696969696975, +// "feedInEnergyGrid": 0, +// "missedBatteryPower": 0, +// "missedFeedInPowerGrid": 0, +// "missedInverterPower": 0, +// "newBatterySoc": 100, +// "selfUsedEnergy": 5373.34, +// "selfUsedEnergyBattery": 4900, +// "selfUsedEnergyPv": 473.34000000000003, +// }) + +// }) + +// test('test a year in energy flow', () => { + +// let yearSum = { +// "batteryLoad": 0, +// "gridUsedEnergy": 0, +// "feedInEnergyGrid": 0, +// "missedBatteryPower": 0, +// "missedFeedInPowerGrid": 0, +// "missedInverterPower": 0, +// "newBatterySoc": 0, +// "selfUsedEnergy": 0, +// "selfUsedEnergyBattery": 0, +// "selfUsedEnergyPv": 0, +// } + +// dayTimeOrder.forEach(key => { + +// const result = energyFlow({ +// energyGeneration: mergedPowerGeneration[key].P, +// energyConsumption: consumption[key].P, +// batterySoc: yearSum.newBatterySoc, +// batterySocMax: 20000, +// batterySocMin: 100, +// batteryEfficiency: .99, +// }) + +// yearSum.batteryLoad = yearSum.batteryLoad + result.batteryLoad +// yearSum.gridUsedEnergy = yearSum.consumptionGrid + result.consumptionGrid +// yearSum.feedInEnergyGrid = yearSum.feedInPowerGrid + result.feedInPowerGrid +// yearSum.missedBatteryPower = yearSum.missedBatteryPower + result.missedBatteryPower +// yearSum.missedFeedInPowerGrid = yearSum.missedFeedInPowerGrid + result.missedFeedInPowerGrid +// yearSum.missedInverterPower = yearSum.missedInverterPower + result.missedInverterPower +// yearSum.selfUsedEnergy = yearSum.selfUsagePower + result.selfUsagePower +// yearSum.selfUsedEnergyBattery = yearSum.selfUsedEnergyBattery + result.selfUsagePowerBattery +// yearSum.selfUsedEnergyPv = yearSum.selfUsedEnergyPV + result.selfUsagePowerPv +// yearSum.newBatterySoc = result.newBatterySoc + +// }) +// // expect(mergedPowerGeneration[dayTime].P).toBe(207450) +// // expect(consumption[dayTime].P).toBe(6874.150000000001) +// expect(yearSum).toEqual({ +// "batteryLoad": 100, +// "gridUsedEnergy": 7017443.115791865, +// "feedInEnergyGrid": 3488849.343801145, +// "missedBatteryPower": 0, +// "missedFeedInPowerGrid": 0, +// "missedInverterPower": 0, +// "newBatterySoc": 100, +// "selfUsedEnergy": 12522855.128756072, +// "selfUsedEnergyBattery": 5269271.398256048, +// "selfUsedEnergyPv": 7253583.730499969 +// }) + +// }) + +// }) diff --git a/pvtoolsOld/functions/integration.test.js b/pvtoolsOld/functions/integration.test.js new file mode 100644 index 0000000..cfcb64d --- /dev/null +++ b/pvtoolsOld/functions/integration.test.js @@ -0,0 +1,150 @@ +const axios = require('axios') +const { + energyFlow, + normalizeHourlyRadiation, + mergePowerGeneration, + generateDayTimeValues, + calculateConsumption, +} = require('./energyFlow') +const { SLPH0, PROFILEBASE, factorFunction } = require('./SLP') + +const string1url = + 'https://re.jrc.ec.europa.eu/api/v5_2/seriescalc?lat=45&lon=8&outputformat=json&startyear=2020&endyear=2020&pvcalculation=1&peakpower=10&loss=12&angle=25&aspect=0' +const string2url = + 'https://re.jrc.ec.europa.eu/api/v5_2/seriescalc?lat=45&lon=8&outputformat=json&startyear=2020&endyear=2020&pvcalculation=1&peakpower=5&loss=12&angle=35&aspect=-90' + +describe.skip('intertation', () => { + let results1, + results2, + consumption, + normResult1, + normResult2, + mergedPower, + powerGenAndConsumption + + beforeAll(async () => { + jest.setTimeout(10000) + results1 = await axios.get(string1url).then((res) => res.data) + results2 = await axios.get(string2url).then((res) => res.data) + normResult1 = normalizeHourlyRadiation(results1.outputs.hourly) + normResult2 = normalizeHourlyRadiation(results2.outputs.hourly) + mergedPower = mergePowerGeneration([normResult1, normResult2]) + + consumption = calculateConsumption({ + year: 2020, + consumptionYear: 6000, + profile: SLPH0, + profileBase: PROFILEBASE, + factorFunction, + }) + powerGenAndConsumption = generateDayTimeValues({ + consumption, + powerGeneration: mergedPower, + year: 2020, + }) + }) + + test('get data from PVGis seariescalc', async () => { + expect(results1.outputs.hourly.length).toBe(8784) //leap year + expect(results2.outputs.hourly.length).toBe(8784) //leap year + }) + + test('normalize hour radiation data', () => { + expect(Object.keys(normResult1).length).toBe(8784) + expect(Object.keys(normResult2).length).toBe(8784) + }) + test('normalize hour radiation values', () => { + expect(normResult1['20200405:14'].P).toBe(6324.3) + expect(normResult2['20200405:14'].P).toBe(558.6) + }) + test('consumption calculation length of hours in year', () => { + expect(Object.keys(consumption).length).toBe(8784) + }) + test('consumption calculation value of one hour in year', () => { + expect(consumption['20200405:14'].P).toBe(885.0214310934527) + }) + test('merged power generation data', () => { + expect(Object.keys(mergedPower).length).toBe(8784) + }) + test.skip('merged power generation value check', () => { + expect(mergedPower['20200405:14'].P).toBe(6324.3 + 558.6) + }) + test.skip('merged power generation per year value check', () => { + const powGenYear = + Object.values(mergedPower).reduce((prev, curr) => prev + curr.P, 0) / 1000 + + expect(powGenYear).toBe(19321.388949999968) // 19T kWh with 15kWp (italy, near Turin) + }) + + test('day/time values are also in merged power generation, check length', () => { + expect(powerGenAndConsumption.length).toBe(8784) + }) + test('day/time values are also in merged power generation', () => { + expect( + powerGenAndConsumption.find((v) => v.dayTime == '20200405:14'), + ).toEqual({ + dayTime: '20200405:14', + P: 6324.3 + 558.6, + consumption: 885.0214310934527, + temperature: 17.76, + }) + }) + test('energyFlow with real data on one day', () => { + const genConsumption = powerGenAndConsumption.find( + (v) => v.dayTime == '20200405:14', + ) + + const energyFlowData = energyFlow({ + powerGeneration: genConsumption.P, + powerConsumption: genConsumption.consumption, + batterySoc: 5000, + batterySocMax: 15000, + batterySocMin: 100, + }) + + expect(energyFlowData).toMatchObject({ + batteryLoad: 6324.3 + 558.6 - 885.0214310934527, + consumptionGrid: 0, + feedInPowerGrid: 0, + missedBatteryPower: 0, + missedFeedInPowerGrid: 0, + missedInverterPower: 0, + newBatterySoc: 5000 + 6324.3 + 558.6 - 885.0214310934527 + 0.000000000002, // rounding difference + selfUsagePower: 885.0214310934527, + selfUsagePowerBattery: 0, + selfUsagePowerPv: 885.0214310934527, + }) + }) + test('energyFlow calc year consumption and geeneration', () => { + let newSoc = 5000 + const energyFlowData = powerGenAndConsumption.map((genConsumption) => { + const hourFlow = energyFlow({ + powerGeneration: genConsumption.P, + powerConsumption: genConsumption.consumption, + batterySoc: newSoc, + batterySocMax: 5000, + batterySocMin: 100, + }) + newSoc = hourFlow.newBatterySoc + return hourFlow + }) + + const generationYear = + energyFlowData.reduce( + (prev, curr) => curr.selfUsagePower + curr.feedInPowerGrid + prev, + 0, + ) / 1000 + const consumptionYear = + energyFlowData.reduce( + (prev, curr) => curr.selfUsagePower + curr.consumptionGrid + prev, + 0, + ) / 1000 + + expect( + generationYear > 19000 * 0.9 && generationYear < 19000 * 1.1, + ).toEqual(true) + expect( + consumptionYear > 6000 * 0.9 && consumptionYear < 6000 * 1.1, + ).toEqual(true) + }) +}) diff --git a/pvtools/functions/regression.json b/pvtoolsOld/functions/regression.json similarity index 100% rename from pvtools/functions/regression.json rename to pvtoolsOld/functions/regression.json diff --git a/pvtoolsOld/functions/regressiondb.csv b/pvtoolsOld/functions/regressiondb.csv new file mode 100644 index 0000000..a2f3ac9 --- /dev/null +++ b/pvtoolsOld/functions/regressiondb.csv @@ -0,0 +1,71 @@ +P(1h);0; 50; 100; 150; 200; 250; 300; 350; 400; 450; 500; 550; 600; 650; 700; 750; 800; 850; 900; 950; 1000; 1050; 1100; 1150; 1200; 1250; 1300; 1350; 1400; 1450; 1500; 1550; 1600; 1650; 1700; 1750; 1800; 1850; 1900; 1950; 2000; 2050; 2100; 2150; 2200; 2250; 2300; 2350; 2400; 2450; 2500; 2550; 2600; 2650; 2700; 2750; 2800; 2850; 2900; 2950; 3000; 3050; 3100; 3150; 3200; 3250; 3300; 3350; 3400; 3450; 3500; 3550; 3600; 3650; 3700; 3750; 3800; 3850; 3900; 3950; 4000; 4050; 4100; 4150; 4200; 4250; 4300; 4350; 4400; 4450; 4500; 4550; 4600; 4650; 4700; 4750; 4800; 4850; 4900; 4950; +0;0.9791518061271147;0.017110196616369457;0.003175582990397805;0.00032693187014174667;8.459076360310928e-05;5.7155921353452216e-05;4.11522633744856e-05;2.2862368541380887e-06;0.0;2.2862368541380887e-06;2.2862368541380887e-06;0.0;4.11522633744856e-05;0.0;0.0;0.0;0.0;0.0;0.0;0.0;2.2862368541380887e-06;2.2862368541380887e-06;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0; +50;0.17963941877984627;0.604543974565234;0.16417857325263668;0.04490043795806839;0.005204742204857121;0.0004784979187415409;0.00019535738910595265;4.75625015960571e-05;4.740289588600322e-05;3.208074772083046e-05;3.255956485099211e-05;6.511912970198422e-05;0.00014779488750989555;7.198217523430118e-05;2.1387165147220308e-05;1.8514262366250415e-05;2.3462039377920785e-05;2.2823616537705253e-05;3.303838198115376e-05;4.229551316427897e-05;3.766694757271636e-05;5.666002706912842e-05;3.974182180341684e-05;1.436451390484946e-05;1.3726091064633929e-05;1.2608851094256749e-05;1.0693582573610154e-05;7.022651242370847e-06;7.661074082586379e-06;4.788171301616487e-06;2.713297070916009e-06;1.053397686355627e-05;1.2449245384202865e-05;3.0325084910237747e-06;4.788171301616487e-07;1.276845680431063e-06;1.436451390484946e-06;0.0;4.788171301616487e-07;3.9901427513470725e-06;5.426594141832018e-06;1.5960571005388289e-06;3.1921142010776575e-07;4.788171301616487e-07;3.1921142010776575e-07;1.5960571005388288e-07;1.5960571005388288e-07;0.0;0.0;1.5960571005388288e-07;9.576342603232974e-07;7.980285502694144e-07;6.384228402155315e-07;0.0;0.0;0.0;1.5960571005388288e-07;0.0;0.0;0.0;0.0;0.0;0.0;1.5960571005388288e-07;0.0;0.0;0.0;0.0;1.5960571005388288e-07;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;1.5960571005388288e-07;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0; +100;0.022894413519883656;0.28661562024639353;0.4514217984721595;0.18220970613309262;0.04698987011684469;0.005894054126339368;0.0011520443642077463;0.00045592832188288783;0.0002316207813048493;9.831085034184177e-05;8.002774852481487e-05;0.0001357128529161025;0.0001869055380037778;0.00014720508834394799;7.104290991759022e-05;4.617789144643365e-05;9.0997609615031e-05;7.532637948615081e-05;7.856510037945272e-05;9.893769954699698e-05;0.00015504070340838807;0.00012014609765474818;8.128144693512529e-05;6.122227237015863e-05;3.98049245273557e-05;5.234190863045986e-05;4.304364542065761e-05;4.356601975828695e-05;4.429734383096802e-05;4.262574595055413e-05;4.8789763134580346e-05;2.737241529177741e-05;2.005917456496665e-05;1.5253330658776724e-05;8.671414004647043e-06;8.149039667017702e-06;8.566939137121174e-06;6.2684920515520786e-06;8.25351453454357e-06;2.998428697992411e-05;4.8267388796951005e-05;5.0252411279942495e-05;1.3268308175785234e-05;1.0656436487638533e-05;9.089313474750513e-06;8.880363739698778e-06;4.074519833508851e-06;1.6715978804138876e-06;1.3581732778362838e-06;9.402738077328118e-07;2.1939722180432274e-06;2.2984470855690955e-06;2.6118716881466995e-06;5.223743376293399e-07;6.268492051552078e-07;0.0;1.0447486752586797e-07;0.0;0.0;0.0;3.134246025776039e-07;8.357989402069438e-07;8.357989402069438e-07;3.134246025776039e-07;0.0;1.0447486752586797e-07;0.0;0.0;1.0447486752586797e-07;2.0894973505173595e-07;3.134246025776039e-07;1.0447486752586797e-07;1.0447486752586797e-07;2.0894973505173595e-07;0.0;1.0447486752586797e-07;0.0;0.0;3.134246025776039e-07;1.0447486752586797e-07;0.0;0.0;0.0;0.0;1.0447486752586797e-07;1.0447486752586797e-07;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0; +150;0.005133588598733913;0.08967295487049766;0.28919470400002933;0.34603410088815983;0.19404858978325934;0.05513981168591885;0.011038188162934478;0.00263284457824478;0.000931731613221789;0.0004131070641919082;0.00034395033426431803;0.0006025496528006235;0.00040882932832009847;0.00023323845586771937;0.00019616474497870197;0.00013352646971291708;0.00025238641643677233;0.0003226635057593602;0.00020685908465822622;0.00023303475415953795;0.0002679695971126505;0.0002339514118463543;0.00017375755707874638;0.00014177638889426435;0.0001367856970438197;0.00012079511295157868;0.00012293398088748353;0.00013566533764882192;0.0001566466135915076;0.00017620197757692337;0.00016418357679421993;0.0001496189046592488;7.5471482881214e-05;5.9786451351245095e-05;5.907349537261015e-05;3.524039551538467e-05;2.3527547294953352e-05;1.9860916547687894e-05;3.646260576447316e-05;5.245318985671418e-05;0.00010185085409070714;0.00012466544540702554;6.386048551487338e-05;5.072172533717216e-05;3.269412416311699e-05;3.615705320220104e-05;2.3833099857225472e-05;9.166576868163643e-06;4.074034163628286e-06;3.361078184993336e-06;4.685139288172529e-06;3.0555256227212145e-06;6.620305515895965e-06;2.546271352267679e-06;2.13886793590485e-06;9.166576868163643e-07;6.111051245442429e-07;4.074034163628286e-07;4.074034163628286e-07;8.148068327256572e-07;8.148068327256572e-07;1.0185085409070714e-06;1.4259119572699001e-06;1.4259119572699001e-06;1.1203593949977785e-06;1.0185085409070715e-07;2.037017081814143e-07;4.074034163628286e-07;5.092542704535357e-07;1.0185085409070714e-06;1.5277628113606072e-06;6.111051245442429e-07;3.0555256227212147e-07;3.0555256227212147e-07;0.0;1.0185085409070715e-07;1.0185085409070715e-07;1.0185085409070715e-07;0.0;3.0555256227212147e-07;4.074034163628286e-07;1.0185085409070715e-07;0.0;0.0;0.0;2.037017081814143e-07;3.0555256227212147e-07;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0; +200;0.003970292186534745;0.03588453220919387;0.11955340916397898;0.23541989530049756;0.35705750610668996;0.1577320991263587;0.05423727357476507;0.01689606508665473;0.004024440817758877;0.0016735311337708091;0.0015185046438959523;0.001547140939254868;0.0009196155759579036;0.00042694113080565094;0.0003268442620283505;0.00026918117637380674;0.0004167882624511263;0.0005529408303848796;0.0005662176582331041;0.0005254760198361015;0.0005288603092876097;0.00048590586624923626;0.0003761767890330278;0.00036303012616370744;0.0002875344383992936;0.00024353867552968686;0.0002788133848127147;0.0002747782704666857;0.0003217678278510881;0.0002743877755299732;0.00025147873924284074;0.00023052217763927066;0.00019759043797651772;0.00012144392531758302;0.00010217950843976707;0.00010972907721620845;9.775389915702557e-05;8.421674135099273e-05;0.00010946874725840013;0.00019030119915788466;0.000239633726162562;0.000293522027428885;0.00021021644093022142;0.00015216286033896523;0.00015749962447403587;0.00017025579240664374;9.723323924140892e-05;4.972302194138983e-05;3.3712729536177926e-05;2.017557173014509e-05;1.314666286932035e-05;1.7051612236445206e-05;1.80929320676785e-05;1.2886332911512026e-05;4.0351143460290175e-06;3.7747843882206944e-06;3.3842894515082087e-06;4.295444303837342e-06;2.6032995780832376e-06;2.3429696202749136e-06;5.0764341772623126e-06;2.212804641370752e-06;3.904949367124856e-06;9.11154852329133e-07;3.644619409316532e-06;4.16527932493318e-06;2.3429696202749136e-06;3.644619409316532e-06;1.5619797468499423e-06;1.041319831233295e-06;1.5619797468499423e-06;1.822309704658266e-06;1.5619797468499423e-06;2.3429696202749136e-06;2.3429696202749136e-06;6.508248945208094e-07;7.809898734249712e-07;0.0;9.11154852329133e-07;3.904949367124856e-07;1.4318147679457806e-06;1.4318147679457806e-06;7.809898734249712e-07;5.206599156166475e-07;1.3016497890416188e-07;2.6032995780832376e-07;0.0;0.0;0.0;0.0;0.0;3.904949367124856e-07;1.3016497890416188e-07;1.3016497890416188e-07;0.0;0.0;0.0;0.0;0.0;0.0; +250;0.003461640153143939;0.0359771582559506;0.06841119279331496;0.11318801156577352;0.23385463369561843;0.28278259789554105;0.14184369269216618;0.06688972714296602;0.015414507650140056;0.0054370050179197976;0.010251686361664712;0.0021202663552852817;0.002438861450652104;0.0010278596638473604;0.0007214965124845807;0.0005286081647285308;0.0006321092293781186;0.000815400205684843;0.0008601879391150283;0.0008620697766541117;0.0008731726181347038;0.0009817546441398168;0.0008846518271231126;0.0007506649943403736;0.0006486693997220526;0.0005323718398066976;0.0004292471426649266;0.0004488182530713941;0.0003624419100274654;0.0003917985756371667;0.00035943096996493193;0.00036300646128919047;0.0003255578942614305;0.0002474616363894689;0.00020907215059216722;0.00021377674443987576;0.00022864326099863473;0.00018630191636925792;0.0002239386671509262;0.0003342143469412142;0.00043526902278999353;0.0005786650432681496;0.000502262439181363;0.00039951410954740864;0.00035585547864067346;0.0003400480433123728;0.00025592990531534424;0.00015901527205254844;9.051638562991218e-05;5.664330992641074e-05;3.3120340687868075e-05;2.3334785484634327e-05;2.0135661668192523e-05;2.7474828070617835e-05;2.0323845422100865e-05;1.9382926652559158e-05;1.4301965297033942e-05;4.704593847708534e-06;1.0726473972775457e-05;1.260831151185887e-05;9.409187695417068e-06;4.892777601616875e-06;6.96279889460863e-06;1.7501089113475744e-05;5.269145109433557e-06;7.527350156333653e-06;4.328226339891851e-06;4.892777601616875e-06;6.7746151407002885e-06;5.4573288633418985e-06;7.150982648516971e-06;1.1291025234500481e-05;5.6455126172502405e-06;2.8227563086251203e-06;3.5754913242584854e-06;9.409187695417067e-07;9.409187695417067e-07;5.64551261725024e-07;2.0700212929917547e-06;2.4463888008084375e-06;3.951858832075168e-06;2.0700212929917547e-06;2.4463888008084375e-06;9.409187695417067e-07;1.129102523450048e-06;5.64551261725024e-07;1.129102523450048e-06;1.8818375390834134e-07;3.763675078166827e-07;1.8818375390834134e-07;3.763675078166827e-07;1.6936537851750721e-06;5.64551261725024e-07;3.763675078166827e-07;0.0;0.0;0.0;0.0;0.0;0.0; +300;0.0029561814551107663;0.025650754224711702;0.04809743900549214;0.07318044977193754;0.12226833778281704;0.21625290420494134;0.2620371815438982;0.13303533465429965;0.05349141546523254;0.01759453245678229;0.009485644831383777;0.004650312493278899;0.003078333155942225;0.002412427157052896;0.0011338324916906513;0.0009234447992879356;0.0007839216376158856;0.0007921937618256909;0.0009466067470753905;0.0010469751874876952;0.0012151750464204037;0.001252951080311848;0.0012179324211570054;0.0011771232750552993;0.0009954122799132419;0.0007533147780396059;0.0006780384477303772;0.0006904466340450853;0.0006278542275242249;0.0005440300355315309;0.000559747071530161;0.0005801516445810141;0.0004894340157468156;0.00041608784775320833;0.0003496351166011055;0.00030358695849985577;0.0003350210304971161;0.0002313437404008892;0.00031902825702482575;0.0005076326890083874;0.0006259240652086036;0.0008150799721394857;0.001006166041385989;0.0008023960483511175;0.0007326344675150925;0.0006700420609942322;0.0005713280454238885;0.0003868596755452295;0.00029283319702710887;0.00015606741009166066;0.00010257434020158615;8.796025409759673e-05;6.810715599406393e-05;5.8732081889617875e-05;4.329078336464792e-05;3.612160904948329e-05;4.715110799589041e-05;2.922817220797885e-05;3.943045873340543e-05;2.8952434734318673e-05;1.902588568255227e-05;1.9301623156212447e-05;2.0680310524513338e-05;5.239011999543379e-05;2.7298009892357606e-05;3.419144673386205e-05;1.654424841961067e-05;1.544129852496996e-05;2.040457305085316e-05;1.8474410735231914e-05;9.099336630785869e-06;7.169174315164623e-06;5.5147494732035565e-06;7.169174315164623e-06;5.5147494732035565e-06;6.34196189418409e-06;3.5845871575823117e-06;5.2390119995433786e-06;3.0331122102619562e-06;3.86032463124249e-06;3.3088496839221337e-06;9.926549051766401e-06;6.6176993678442675e-06;2.4816372629416003e-06;1.1029498946407114e-06;0.0;3.86032463124249e-06;1.930162315621245e-06;8.272124209805334e-07;1.1029498946407114e-06;2.7573747366017785e-07;1.6544248419610669e-06;1.1029498946407114e-06;1.1029498946407114e-06;5.514749473203557e-07;0.0;5.514749473203557e-07;2.7573747366017785e-07;0.0;0.0; +350;0.0031041642212938894;0.024023213883688128;0.041094577718597085;0.06312467648920797;0.08366195936415818;0.11695379351881606;0.19304776510566896;0.2265504946227455;0.11720471281862807;0.05166012749933133;0.02011356792235356;0.008792951168872153;0.006940689527775265;0.004674718918430061;0.0023471730207874327;0.0019954241863883978;0.001468955471445422;0.0011018128149720315;0.0013789016123104394;0.001411613484218446;0.0019484730290616119;0.0013819803767253108;0.0013550411880951876;0.0011418367523653569;0.0012057211139739343;0.0009963651337626927;0.0009825106938957722;0.0008766781671345747;0.000778927396962414;0.0007054218965573641;0.0007108097342833887;0.00075583666385088;0.0007319762396356282;0.0006838705456532657;0.000609595354144498;0.0005564866679879698;0.0005307020160134234;0.00040755143941857534;0.0004641237355418337;0.0007796970880661318;0.0010209952490816622;0.0011868636819328483;0.001257675263474886;0.001315017250701862;0.0012195755538408548;0.0012041817317664989;0.0010714100163751782;0.0008285724731522121;0.0006376890794301976;0.0004310270180819683;0.00026900704074937125;0.00014547161860266428;9.467200575728945e-05;0.00010621737231305646;9.159324134241825e-05;6.234497940114184e-05;4.233301070447903e-05;5.464806836396383e-05;4.2717856256337926e-05;4.849053953422143e-05;4.810569398236253e-05;4.156331960076122e-05;3.001795304499422e-05;3.425125411544212e-05;6.657828047158975e-05;2.1551350904098412e-05;2.7708879733840815e-05;3.771486408217222e-05;2.5784651974546314e-05;4.849053953422143e-05;3.001795304499422e-05;2.6554343078264115e-05;1.577866762621491e-05;9.621138796472506e-06;1.731804983365051e-05;1.1545366555767007e-05;1.731804983365051e-05;1.4624130970638209e-05;7.696911037178005e-06;1.693320428179161e-05;1.1545366555767007e-05;1.0775675452049206e-05;1.1930212107625906e-05;1.3084748763202608e-05;5.772683277883504e-06;3.0787644148712017e-06;3.848455518589002e-07;0.0;3.848455518589002e-07;3.848455518589002e-07;3.848455518589002e-07;3.848455518589002e-07;7.696911037178004e-07;1.5393822074356009e-06;7.696911037178004e-07;1.1545366555767007e-06;1.1545366555767007e-06;1.9242277592945012e-06;0.0;0.0; +400;0.002315235580146313;0.019580489164943787;0.038379216869102;0.05317061660634739;0.06735217343971595;0.07967218234598387;0.11202439765698159;0.17872929034088642;0.19999842366939224;0.11059880366358937;0.04765986332228424;0.017316484329549648;0.010110683038830441;0.00812647688631356;0.004474808512776406;0.003010298857505132;0.0022344486364986546;0.0016915997834515827;0.0018310065215752863;0.0019024340022393746;0.0023866630608104012;0.002055633633180971;0.0016605657746113236;0.0015452965989189327;0.0015063809370398776;0.0015068735403548025;0.0013822449016788413;0.0012073707248805561;0.0012122967580298035;0.0010147628287449798;0.0009359462983570202;0.0009014640663122878;0.0008625484044332328;0.0008177215027750808;0.0007546682784647131;0.0006044242674126651;0.0007127969966961096;0.0006187097635454828;0.0006842260044304742;0.0008994936530525888;0.0011970260552671363;0.0014517019690832307;0.0017669680906350692;0.0017768201569335642;0.0015718971779248691;0.0017694311072096929;0.001544803995604008;0.001347762669634109;0.0009251090254286757;0.0007078709635468621;0.00047240657901283283;0.00028620252597127825;0.00019753392928482374;0.00013251029171475708;9.65502497252505e-05;8.226475359243282e-05;5.5664174586496465e-05;8.127954696258333e-05;9.014640663122878e-05;7.88165303879596e-05;6.157541436559344e-05;7.487570386856161e-05;5.664938121634596e-05;3.3497025414882826e-05;4.6797314917851005e-05;3.9900868508904546e-05;3.8915661879055046e-05;5.664938121634596e-05;4.7782521547700505e-05;5.1723348067098485e-05;6.206801768051819e-05;5.024553812232424e-05;3.84230585641303e-05;3.398962872980757e-05;2.167454585668889e-05;2.8078388950710606e-05;1.724111602236616e-05;1.6748512707441413e-05;2.0196735911914646e-05;1.921152928206515e-05;2.8570992265635353e-05;9.85206629849495e-06;1.6748512707441413e-05;1.527070276266717e-05;4.926033149247475e-06;2.955619889548485e-06;6.403843094021717e-06;1.4778099447742425e-06;2.4630165746237374e-06;5.418636464172222e-06;1.97041325969899e-06;4.926033149247475e-07;9.85206629849495e-07;9.85206629849495e-07;4.926033149247475e-07;1.4778099447742425e-06;0.0;1.4778099447742425e-06;0.0;0.0; +450;0.003100132470973272;0.02009008026182498;0.03664614665315982;0.04866516013402945;0.05788077612405517;0.0647636561988623;0.07584571027818904;0.11145827164341932;0.15615803007870335;0.17335120392737474;0.10239788046442765;0.04408010597677862;0.019388763344502454;0.012469726486402244;0.006938362035377542;0.004839398425933141;0.0031992519286215227;0.002241720564170498;0.0022454609210628847;0.0019075820151172758;0.0027161224966882258;0.002042858256058599;0.002112054858567755;0.0020372477207200187;0.001717447206420946;0.0016738097093430997;0.0017810332735915218;0.0016869009584664536;0.0017704355957297593;0.0013365541962128886;0.0012274604535182732;0.0009968051118210862;0.0009201277955271566;0.0009419465440660797;0.0008135276240941324;0.0008085404815709498;0.0008746201200031169;0.0009076599392192005;0.0009163874386347697;0.0014032572274604535;0.0020372477207200187;0.002102703966336788;0.0021731473544767395;0.0022791241330943663;0.0022273825294163484;0.002161926283799579;0.001786643808930102;0.0019443621912257462;0.0014026338346450557;0.0010404426088989325;0.0008565417283565807;0.0005928465674433102;0.0003285280137146419;0.000287384087898387;0.0002181874853892309;0.00011906802774098028;0.00012966570560274293;0.00014462713317229018;0.00015335463258785942;9.97428504636484e-05;9.600249357126159e-05;7.35603522169407e-05;0.00012031481337177588;9.226213667887478e-05;9.350892230967038e-05;0.00011034052832541105;7.044338813995169e-05;4.426088989324398e-05;5.672874620120003e-05;6.109249590898464e-05;8.914517260188576e-05;6.857320969375828e-05;7.854749474012312e-05;7.35603522169407e-05;2.992285513909452e-05;4.613106833943739e-05;2.8052676692901114e-05;3.179303358528793e-05;2.7429283877503313e-05;4.0520533000857167e-05;2.929946232369672e-05;2.181874853892309e-05;3.5533390477674744e-05;2.929946232369672e-05;1.9325177277331878e-05;1.3714641938751656e-05;9.974285046364841e-06;1.745499883113847e-05;1.1221070677160445e-05;4.363749707784618e-06;4.987142523182421e-06;5.610535338580223e-06;5.610535338580223e-06;4.987142523182421e-06;6.857320969375828e-06;3.1169640769890127e-06;0.0;4.987142523182421e-06;1.8701784461934075e-06;0.0; +500;0.003829660257063637;0.019512432916317678;0.037974571351334585;0.04887414635875755;0.049284810023738725;0.054980183262353516;0.0590210841816197;0.06987708156991697;0.09591507829937972;0.13732489552450466;0.175622975302569;0.09087484655507842;0.04276146202173563;0.019024215861367037;0.009578212963086063;0.006565448413700803;0.003937496399306894;0.003581489409161345;0.003013503153099255;0.0024226201819033226;0.0029566306671216466;0.0029736185525435295;0.0030253208125231735;0.002562216283848362;0.002193653030564899;0.002053318324905865;0.001982412368362353;0.001852418114699248;0.0015754417219511546;0.0015451589696773632;0.0015303868953974648;0.0014365842237201107;0.0010702367815786326;0.001013364295601024;0.0009409811316295223;0.0010960879115684545;0.0011669938681119665;0.0011034739487084037;0.0010104098807450443;0.001573964514523165;0.0023022277765221513;0.00275277604205905;0.002724709100927243;0.0032904795458473485;0.003064466809364904;0.002949244629981697;0.0024159727484773684;0.002349498414217826;0.0016175421336488648;0.001250456087793392;0.001230513787515529;0.0007681478625547121;0.0005140681849404612;0.0002961800893119611;0.0002577726961842255;0.00024669364047430177;0.00015658398736692207;0.00014181191308702376;0.0002385689996203577;0.0002297057550524187;0.00016544723193486106;0.0002252741327684492;0.00015879979850890683;0.00014993655394096784;0.00014255051680101867;0.00012999425366310512;0.00012703983880712547;0.0001004501051033085;8.715523825140003e-05;0.00013221006480508985;0.00018834394706870343;0.00011448357566921189;9.010965310737969e-05;6.64743342595424e-05;4.5793430267684756e-05;2.437392256183221e-05;2.2896715133842378e-05;4.5054826553689844e-05;8.272361596743053e-05;4.5793430267684756e-05;5.539527854961866e-05;9.010965310737969e-05;6.573573054554747e-05;2.6589733703816956e-05;3.471437455776103e-05;3.175995970178137e-05;8.863244567938985e-06;2.2158111419847463e-05;2.2158111419847463e-05;1.624928170788814e-05;8.12464085394407e-06;1.0340451995928816e-05;1.1817659423918646e-05;4.431622283969492e-06;1.4772074279898308e-06;1.4772074279898308e-06;1.4772074279898308e-06;3.6930185699745774e-06;2.215811141984746e-06;0.0; +550;0.0031735885811686685;0.018088112068409858;0.03955123935572123;0.050854407035787697;0.05339327790072263;0.056350220942640854;0.05421241289416955;0.05884880648002922;0.06706164192252326;0.0834300181194451;0.12089447750825402;0.1399995702898395;0.08244526566830673;0.040056148794304906;0.018422927901796903;0.00894244748583747;0.00640447185040357;0.004775154158520078;0.00437588180105852;0.003270273367280436;0.002872791468820947;0.003323091907841494;0.004041961197172507;0.0033991864154294593;0.00257468004497633;0.0021566078679930386;0.002027694819844015;0.0019140006732125848;0.0018755058046680847;0.0016830314619455844;0.0014816048242127353;0.00159977511834934;0.001507566479742747;0.0011646935808463858;0.0011718554168546648;0.0011700649578525952;0.0014878714307199794;0.001273016350471607;0.0015603850203038051;0.0017045169699704216;0.0035137757915619247;0.0038306870349282744;0.004355291522534717;0.004919286108186695;0.0043749865715574845;0.004177140851828775;0.0035567468076115995;0.0029363527633944238;0.0026337651920446325;0.002007999770821248;0.0014780239062085955;0.0010877038437573856;0.000851363255484176;0.0006409843227409779;0.0004780525535526287;0.00038047253793982623;0.0003706250134284425;0.00026319747330425626;0.00024081673577838414;0.0002551404077949423;0.0001772554412049073;0.00023544535877217484;0.00016561745769145378;0.0001450271791676514;0.0001772554412049073;0.00017188406419869798;0.0002255978342607911;0.00022380737525872133;0.0001333891956541979;0.00010921799912625601;0.00010653231062315135;8.50468025983141e-05;0.00010295139261901182;7.96754255921048e-05;9.668478611176761e-05;9.668478611176761e-05;3.401872103932564e-05;3.9390098045534955e-05;4.2971016049674494e-05;9.220863860659319e-05;6.177083557140708e-05;7.609450758796525e-05;8.325634359624433e-05;4.655193405381403e-05;3.759963904346518e-05;4.655193405381403e-05;4.565670455277915e-05;3.401872103932564e-05;3.04378030351861e-05;1.9695049022767478e-05;1.2533213014488395e-05;1.4323672016558164e-05;1.4323672016558164e-05;1.7904590020697705e-06;5.371377006209312e-06;8.952295010348852e-06;1.700936051966282e-05;2.685688503104656e-06;8.057065509313968e-06;0.0; +600;0.0018763208108496276;0.016784300047190136;0.038776954800057446;0.04968197952358481;0.05582080059090256;0.05930261187139662;0.05191735571103223;0.05333511151234124;0.05345206097786167;0.05695849319846529;0.07185723958226471;0.10699850222614334;0.12700609368267712;0.0736904737479226;0.03759412380229385;0.016708385481852314;0.010297708200824802;0.007866390365005436;0.005665893842713227;0.0037864954143499046;0.0036777529288660005;0.003271507417058208;0.0030827468762182238;0.002859106670223025;0.00278421797738977;0.0025790434764767435;0.0019532612486920127;0.0020137877264613554;0.002074314204230698;0.0017378280227333346;0.001654732349863559;0.001671146309936601;0.001594205872094216;0.0018065614805391986;0.0016885861425142083;0.0012772112681835902;0.0013110650608342395;0.001252590328074027;0.0015377828843431338;0.0018917088984181046;0.0033217751697818994;0.0045794948603787525;0.004915981041876115;0.006240382445269702;0.0055807464248343215;0.006331685098175999;0.00495086070703133;0.004397915427070724;0.0031976445967295186;0.0021574098771004737;0.0017911733929707216;0.001415704056299883;0.0010812696198116499;0.0008535259237981903;0.0005970577976569072;0.0005365313198875644;0.0005344795748784341;0.0003939350417530109;0.00037239171915714314;0.0003087876238741049;0.00039803853177127147;0.0002728820862143253;0.000255442253636718;0.00023492480354541536;0.0002544163811321529;0.00034366728902931944;0.0003641847391206221;0.00033238269147910297;0.0002359506760499805;0.00032417571144258194;0.00026775272369149964;0.00023389893104085025;0.0002041486284084614;0.00015182913067563963;0.0001261823180615113;9.745788793368761e-05;5.950060526477769e-05;7.488869283325468e-05;9.232852541086194e-05;8.20698003652106e-05;7.283694782412442e-05;8.309567286977574e-05;0.0001354151706025975;0.00010874248548390406;6.257822277847309e-05;8.514741787890601e-05;8.822503539260141e-05;5.539711524651716e-05;5.950060526477769e-05;2.8724430127823714e-05;2.8724430127823714e-05;1.3336342559346724e-05;2.5646812614128315e-05;2.6672685118693448e-05;2.2569195100432917e-05;1.6413960073042124e-05;1.2310470054781591e-05;1.0258725045651326e-05;3.077617513695398e-06;0.0; +650;0.0024443541992999556;0.02104774612751639;0.03920635841503742;0.05770532381891667;0.06019093294141156;0.06421070952021814;0.056475411421167646;0.049289319487149735;0.046312518935365136;0.0442794247516647;0.048911579096646104;0.06141311004106154;0.09466715656887961;0.09214544938858915;0.05912604023644228;0.030598260847144062;0.01723682259738418;0.010975098786202807;0.00712936641462487;0.0054649881069791725;0.004839718177305925;0.004273752199725397;0.003874095131274455;0.0036446146210026235;0.0038109235301322093;0.00337645762023554;0.0033906390000837993;0.0023450845403621408;0.0022612854776224273;0.002016334371152495;0.002395363978005969;0.002159437385984929;0.0020150451548026534;0.002025358885601387;0.0017198146106888927;0.0017159469616393674;0.002026648101951229;0.0017739616973822462;0.0018139274042273403;0.0019815255297067676;0.0032642957977993075;0.005185228159063513;0.00680448389446475;0.007296964540104298;0.007522577401326604;0.008414715115417094;0.007183513501318224;0.0058865618533774245;0.004824247581107824;0.003549212611114334;0.00285303578219979;0.001801035240728923;0.001293083998891274;0.001153848633108365;0.0008354121946974532;0.0007425886175088472;0.0005801473574287869;0.0006355836604719821;0.0005002159437385985;0.0005724120593297364;0.0005376032178840092;0.00035840214525600613;0.00027460308251629246;0.0004112600155995178;0.000272024649816609;0.00036742665970489836;0.0005118188908871742;0.00046411788594302955;0.0005956179536268879;0.00035324527985663913;0.0002681570007670837;0.0002385050247207235;0.00015212752928132634;0.0001856471543772118;0.0001031373079873399;9.54020098882894e-05;0.00012763241863433312;9.024514448892241e-05;0.00013665693308322535;0.00012505398593464962;0.00010958338973654864;0.00015470596198100984;0.00012247555323496612;0.00012247555323496612;0.00011216182243623214;9.54020098882894e-05;7.735298099050492e-05;8.379906273971367e-05;6.832846654161268e-05;1.675981254794273e-05;3.351962509588546e-05;2.3205894297151475e-05;1.675981254794273e-05;3.609805779556896e-05;2.062746159746798e-05;6.446081749208743e-06;1.2892163498417487e-05;1.4181379848259236e-05;1.5470596198100986e-05;0.0; +700;0.0024787657090019647;0.018386912366963534;0.04146114413702404;0.051298111014966306;0.06296252331164348;0.06460566226934358;0.06290473230267495;0.052958431083440845;0.0469341088782609;0.040967577682049484;0.041401791208894194;0.04639837060593092;0.057263080292016405;0.07360544047682269;0.06838394472055705;0.05107788041322133;0.02805831581380674;0.014597696481620898;0.010066568994655113;0.007595612881459707;0.006406992399701361;0.005132466364070861;0.0035518041728232314;0.0034440317506927113;0.0038844929541826632;0.003667386190760311;0.0038095208344396925;0.002809892571200085;0.0024022316700976825;0.002071104807899562;0.0021117147060936716;0.0023866124784845634;0.0028723693376525605;0.0024818895473245886;0.0021273338977067903;0.002297583086289786;0.002327259550354712;0.002502194496421643;0.0020570475354477554;0.0026521387359075845;0.004092228202637144;0.0051746381814262825;0.007770547827526638;0.00894667295599449;0.008763928414120999;0.008703013566829836;0.00881390982728298;0.008001711863400799;0.005697881100465764;0.004860692430002593;0.003736110633858034;0.0028317594394584515;0.002250725511450429;0.0017618448139598087;0.0012573449248560692;0.0012042396733714649;0.0008699889728507211;0.0009683898800133701;0.0007387877633005226;0.0006685014010414877;0.0005373001914912892;0.0003982893861345312;0.0003358126196820557;0.00033737453884336764;0.00045764231426438293;0.0003498698921338627;0.00042952776936076896;0.00046857574839356613;0.0004607661525870067;0.0005888435238145815;0.0005857196854919576;0.0004232800927155214;0.0004045370627797788;0.00023741171251940685;0.00019055413768005023;0.00014213464367938172;0.00012807737122757474;9.84009071626489e-05;0.000207735248454481;0.00022335444006759986;0.0001561919161311887;0.0001968018143252978;0.00022179252090628797;0.00011714393709839153;0.00011089626045314399;0.00011089626045314399;8.902939219477757e-05;8.746747303346568e-05;7.497211974297058e-05;7.18482814203468e-05;5.466717064591605e-05;2.4990706580990196e-05;2.9676464064925856e-05;2.3428787419678306e-05;1.2495353290495098e-05;1.8743029935742646e-05;6.09148472911636e-05;1.093343412918321e-05;6.247676645247549e-06;0.0; +750;0.0019698487129658493;0.018638947291623832;0.03777864737055043;0.05533981548420473;0.05977529133200241;0.061221173552293846;0.05822328931572629;0.0540249248870819;0.04220583260928681;0.036238252206960135;0.035536866680373806;0.03240633269882539;0.0367854324050062;0.043260398081884685;0.06327392835587274;0.09022172404873552;0.0486973795042879;0.024944784543651715;0.012867025263143931;0.008731669463365456;0.0077334801323844455;0.005475118224085214;0.005103698938138792;0.004394022802491162;0.004914673051541058;0.004100535241720998;0.003425679664130846;0.0026762086049889567;0.0028403626644027775;0.0022832337354831435;0.0022931824663567084;0.002485524596578963;0.002261678151923753;0.002278259370046361;0.0024440715512724425;0.002747507842916172;0.002989593627506251;0.002278259370046361;0.0026529948996173057;0.0030227560637514674;0.004642741074330285;0.005679067206993294;0.008443156268032074;0.009726542550721947;0.010209055998089843;0.010660065131024786;0.010741313099825565;0.008756541290549369;0.006536316183932136;0.00560942609087834;0.004216603768579255;0.0032648418483415464;0.0020411479508930645;0.0013977966877358678;0.0013115743534983053;0.0014591471947895181;0.0012767537954408283;0.0009683431383603165;0.0007892659826361484;0.0010064799400423153;0.0009700012601725773;0.0005521545634828518;0.0007295735973947591;0.0005621032943564166;0.0004344279148123338;0.00046593222924528927;0.00048251344736789745;0.00044437664568589864;0.0005654195379809383;0.0005703939034177207;0.0005455220762338084;0.0004510091329349419;0.000315043144329555;0.00023213705371651422;0.00026695761177399134;0.0001558634503525167;0.00020063273928355873;0.00026695761177399134;0.00014259847585443018;0.00016415405941382077;0.00015088908491573425;0.000207265226532602;0.0002487182718391224;0.00021223959196938443;0.0001757609120996465;0.00019897461747129792;0.00017244466847512487;0.0001956583738467763;0.00014259847585443018;8.124796880077999e-05;0.00012104289229503956;5.8034263429128555e-05;2.155558355939061e-05;2.9846192620694685e-05;4.642741074330285e-05;3.482055805747714e-05;3.482055805747714e-05;5.471801980460692e-05;1.658121812260816e-05;0.0; +800;0.002079307542232447;0.01979619810332931;0.037806944292040415;0.05488404791706576;0.06052496005981264;0.06416653802733602;0.057041468980562754;0.050147020806094345;0.03937107456307574;0.03481259264356614;0.03129004480368398;0.027241160618138333;0.02817852287331289;0.02962734270819578;0.03927250273862286;0.05957085919293854;0.07718173854660494;0.05339617132155059;0.022708716539050253;0.010100822237803597;0.008406502764660699;0.0071380879669840185;0.005598135690625819;0.004502686547177777;0.004182793079142016;0.00402470619086853;0.004102819712133075;0.002380602552824269;0.002685617254904878;0.00296831380805276;0.0027172346325595757;0.0026763180261829083;0.002040250781600174;0.002001194020967901;0.0031914952973800354;0.0035485856803036757;0.0031264006963262468;0.0031487188452589744;0.0030334084091065486;0.00316545745695852;0.003861039765361861;0.006356952754338555;0.00937920208897874;0.010629018429211481;0.010677374418565724;0.010688533493032087;0.011705869115215584;0.01080198408344012;0.007878306573252815;0.006440645812836284;0.005395412504486878;0.0037978050100524663;0.0031412794622813984;0.002639121111295029;0.0017575542284522922;0.00185984574439396;0.001486016749770774;0.0011493846700354673;0.0013651267763851666;0.0008201919732777364;0.0008573888881656155;0.0006156089413944007;0.0005319158828966725;0.0005988703296948551;0.0005021583509863691;0.0005784120265065215;0.0008778471913539491;0.0011066082179144062;0.0009671197870848592;0.0007811352126454632;0.0007346390690356142;0.0006695444679818256;0.0005895711009728853;0.00042776452121061077;0.00021202241486091144;0.00026595794144833627;0.0004110259095110652;0.00026595794144833627;0.0002362004095380329;0.00018226488295060807;0.00023806025528242688;0.0002678177871927302;0.0003291926967577309;0.00026223824995954837;0.00015064750529591075;0.0001766853457174262;0.00019342395741697184;0.0001432081223183349;0.0002231814893272752;0.00014506796806272888;0.00017296565422863827;0.00014134827657394096;0.00011717028189681948;0.00011903012764121344;8.36930584977282e-05;6.509460105378859e-05;3.905676063227316e-05;3.71969148878792e-05;1.487876595515168e-05;0.0; +850;0.0011490504216977125;0.015214489412050239;0.035863266792063586;0.048205130149869546;0.05532696741702567;0.06228573812268673;0.06034221224440264;0.05690454159334992;0.04347240762089679;0.03667859959953886;0.02935956556034221;0.02450928341726837;0.0211815878890844;0.019975653783144226;0.025597657909107455;0.03645485710818518;0.059828362963412415;0.07332306898853225;0.05015434439657788;0.019685546993507677;0.011058188216734422;0.007800649232449487;0.006882925793337783;0.005982267459498817;0.004973530125599175;0.004816151932528366;0.004869243371154663;0.003361825738729446;0.0030053546508100235;0.0022298404223044716;0.0020971118257387296;0.0029067562647897578;0.0021577877555973546;0.0020402281414962685;0.002521843334749105;0.004254899581336084;0.005187792002912445;0.004907165827316304;0.0037656998968509194;0.0043004065287300525;0.003697439475759966;0.005383092652144894;0.00803576846065166;0.010787042655178691;0.011217462532613312;0.011283826830896184;0.011335022146714398;0.010764289181481706;0.008646320004854074;0.007368333232206784;0.0066307414598628725;0.004848386020265761;0.003376994721194102;0.0025370123172137613;0.002464959650506644;0.0019890328256780537;0.0020819428432740732;0.00145432619379892;0.0017065105272738306;0.0015055215096171348;0.001679964807960682;0.0015529245798191857;0.0011433620532734663;0.000784994842545962;0.0010409714216370366;0.0007527607548085674;0.0007944754565863722;0.0006882925793337783;0.001004945088283478;0.0008589436320611614;0.0007394878951519932;0.0006257205266670711;0.0007679297372732237;0.0004645500879800983;0.0004247315090103756;0.00027304168436381287;0.0001953006492324495;0.00028252229840422305;0.00026545719313148474;0.00037922456161640675;0.0004778229476366725;0.00027304168436381287;0.0002901067896365512;0.0002351192282021722;0.0002578727018991566;0.00030906801771737153;0.0001953006492324495;0.00022184636854559797;0.0002901067896365512;0.00014979370183848068;0.0001232479825253322;9.480614040410169e-05;0.00014410533341423457;7.205266670711728e-05;0.00014410533341423457;0.0001175596141010861;6.067592985862509e-05;2.464959650506644e-05;5.309143862629695e-05;0.0; +900;0.0019496114474609394;0.015265868558748596;0.03254755316914591;0.05475120766329708;0.057435918508981;0.06241952716215106;0.057600288560757565;0.05289747874603914;0.0466536996959154;0.03782565816508232;0.032255339743765356;0.027689504972194065;0.027191828982092797;0.02309855810937914;0.022062113616232455;0.02546137760366728;0.033634221844779884;0.0499936078313198;0.05148663580162361;0.031228026920161814;0.014861792181464537;0.009601950524614416;0.007362408569158699;0.006163876941621236;0.004867179866494991;0.004271338428804938;0.003136728488069474;0.003396981070049037;0.0030568263795669763;0.002374234081217069;0.0027874421280442703;0.002935831758120337;0.0021322448383237907;0.002406194924618068;0.002239541955455716;0.002737217945556986;0.004106968377028372;0.003974559168652805;0.004257640924490225;0.0039060716470792354;0.005358007104438904;0.005937868120428458;0.007615812398980906;0.011309572729182076;0.014062771096439563;0.014930279703038106;0.012823146955957957;0.012361997644029258;0.010775370060908236;0.009579121350756559;0.008065547123980677;0.006188989032864879;0.004969911148855345;0.004054461277155303;0.0032211964313435424;0.0022852003031714288;0.0023331415682729274;0.002066040234136007;0.0025089262069784217;0.002116264416623291;0.002214429864212074;0.0014519354573596691;0.001856011834643728;0.0009222986238573999;0.000933713210786328;0.0012784337360399601;0.0005364855856596261;0.0007328164808371914;0.000947410715101042;0.0016596809394661626;0.00124190705786739;0.0010181811540603968;0.0008834890282990439;0.0008538111022838306;0.0008309819284259741;0.000454300559771343;0.00037668136865463115;0.0003492863600252034;0.0005342026682738405;0.0004017934598982732;0.00037668136865463115;0.0002785159210658485;0.0002739500862942772;0.00035156927741098907;0.00034015469048206086;0.00024198924289327818;0.0002739500862942772;0.0003150425992384188;0.00028308175583741975;0.00025112091243642077;0.00019176506040599403;0.00018263339086285147;0.00011414586928928216;8.903377804564008e-05;7.533627373092623e-05;9.131669543142573e-05;7.305335634514058e-05;5.250709987306979e-05;7.761919111671187e-05;0.0; +950;0.0013782771535580524;0.013774599931903303;0.0307170582226762;0.050470548178413344;0.057874021109976165;0.06086210418794689;0.05734831460674157;0.05305005107252298;0.046847803881511746;0.04137282941777324;0.03670139598229486;0.03256928838951311;0.028742254000680968;0.024670071501532175;0.02202247191011236;0.024457609805924412;0.024155260469867212;0.027960503915560094;0.03371876064010895;0.02796595165134491;0.022006128702757918;0.014365679264555668;0.009985699693564862;0.007678583588695948;0.007733060946544093;0.005848144364998298;0.005355124276472591;0.003758937691521961;0.0037671092951991826;0.003323118828736806;0.002511406196799455;0.0030888661899897856;0.002696629213483146;0.0024950629894450117;0.002397003745318352;0.003317671092951992;0.0035410282601293836;0.003331290432414028;0.003919645897173987;0.0038869594824651006;0.004916581545795029;0.006586312563840653;0.01023357167177392;0.013480422199523324;0.01555873340143003;0.013608443990466462;0.012567926455566905;0.013548518896833504;0.011712631937351038;0.010391556009533537;0.009056860742254001;0.00841130405175349;0.006624446714334355;0.005109976166155941;0.004341845420497106;0.0032032686414708886;0.0035137895812053115;0.0036309159005788218;0.0017923050732039495;0.0020265577119509704;0.0024133469526727955;0.0017078651685393258;0.0015662240381341505;0.0012311882873680628;0.0010187265917602996;0.0009370105549880831;0.0014463738508682328;0.0012992849846782432;0.0016315968675519237;0.0018903643173306096;0.0017187606401089547;0.0012584269662921348;0.0008198842356145727;0.0006510044262853251;0.0006373850868232891;0.0006237657473612529;0.0006591760299625468;0.0005529451821586653;0.0004957439564181137;0.00033775961865849507;0.00036227442969016;0.0005039155600953354;0.0005202587674497786;0.0003758937691521961;0.00021790943139257747;0.000473953013278856;0.0003922369765066394;0.0004194756554307116;0.00033775961865849507;0.00035137895812053117;0.0004330949948927477;0.00015253660197480422;0.0001361933946203609;0.0001470888661899898;9.805924412665985e-05;4.630575417092271e-05;2.99625468164794e-05;4.9029622063329925e-05;7.35444330949949e-05;0.0; +1000;0.0015740792793626963;0.015251373185757889;0.030797059514085696;0.04230172718825129;0.05406433222332085;0.0511278145761064;0.05349885416287752;0.0547951547458821;0.04973561420507343;0.04271839523278847;0.035390328671721795;0.03182880895770158;0.028760015740792795;0.027404191151425766;0.023505368734684968;0.021342663170182442;0.02542336449525296;0.028644274617310242;0.02480828309617426;0.0201158072612674;0.02272163598424598;0.01612769883498292;0.012324776206270524;0.009269210546331171;0.00962966147374826;0.00946101012238797;0.006316158452904937;0.0045734278221819516;0.0040145635402233475;0.0036276574988673904;0.003465619925991819;0.0030059623213039726;0.0030357243244852;0.0035714403817472943;0.0030125760997886898;0.003396175251902288;0.004242738897946091;0.0036871815052298453;0.004249352676430809;0.005148826550352349;0.005631632379736706;0.008429260678772086;0.01019844642343394;0.012708375358384122;0.0136607594601834;0.015353886752271007;0.012595941124143929;0.010912734499783399;0.010410087334944891;0.010800300265543206;0.00984460927450157;0.008839314944824553;0.007923306624691219;0.006289703338966068;0.005039699205354515;0.004537052040516007;0.004305569793550904;0.004616417382332614;0.0034027890303870052;0.004060859989616368;0.0036342712773521075;0.0025529184951008435;0.001937837096022143;0.0015211690514849586;0.0009589978802839956;0.0014914070483037312;0.0012466972443691943;0.0011607181240678706;0.0010350563328582435;0.001365745257094104;0.0013988141495176903;0.0014252692634565591;0.0012466972443691943;0.0009986805511922989;0.0008796325384673892;0.0007804258611966309;0.0006216951775634179;0.0004761920508996392;0.0005092609433232253;0.0005654780604433216;0.0004993402755961494;0.00044973693696077037;0.0006415365130175695;0.0004794989401419978;0.0004960333863537909;0.00043320249074897736;0.00038690604135595687;0.0005059540540808667;0.0005257953895350183;0.0005390229465044527;0.00016203757287557168;0.00020833402226859215;0.00014219623742142004;0.00013558245893670283;0.00013227556969434422;0.0003472233704476536;0.000234789136207461;0.00013888934817906143;0.00020502713302623354;0.0; +1050;0.0011717081615143005;0.010004875817833398;0.029995728934766094;0.03858321584754187;0.05490775633005885;0.05830570999845032;0.060668024840213025;0.05560322181947379;0.047465519652569635;0.03978138193528391;0.03882511688733837;0.033083746895918295;0.031450914877291916;0.0247343813191922;0.01934830347997324;0.019563746593541997;0.018573464211875074;0.02214528425262028;0.020228974452982374;0.016241387000086933;0.01726568671547524;0.017004887156944638;0.010303472413832204;0.008889863212521403;0.00967226188811321;0.008092345721942314;0.006803466744276583;0.006863942004225709;0.00419547115897056;0.004301302863881529;0.0041009785653000515;0.00442981279127342;0.0032467655185186585;0.0038666369329971918;0.003080458553658564;0.003054000627430822;0.0037041096718839176;0.003715448783124379;0.003080458553658564;0.004603679163627155;0.005529706581598134;0.007170098007718155;0.010212759523908516;0.013572916154831784;0.013656069637261832;0.016608018263528503;0.015723567586772548;0.013659849341008652;0.015474107139482407;0.013092893778985603;0.01212906932354642;0.010469779378692298;0.009196019216013849;0.0074649148999701405;0.0068526028929852476;0.005034565390764672;0.0038893151554781134;0.003976248341654981;0.003983807749148621;0.00443737219876706;0.0032732234447464007;0.0027932010689002197;0.0014551859425258249;0.0019087503921442637;0.0015647973511836142;0.0010847749753374332;0.001492982979994028;0.0019616662445997484;0.0015685770549304346;0.0016630696486009426;0.0019541068371061077;0.001957886540852928;0.001319116607640293;0.0012964383851593712;0.0006387699332126347;0.0007408219343767835;0.0006841263781744787;0.0006198714144785331;0.000548057043288947;0.0006614481556935567;0.0008731115655154949;0.0010129606041478468;0.0006501090444530958;0.0004989208945802828;0.0005178194133143844;0.0005027005983271032;0.0003552921522011105;0.0002948168922519853;0.00033639363346700887;0.0005140397095675641;0.0003590718559479308;0.00033639363346700887;0.00017764607610055525;0.0002192228173155788;0.00015118814987281296;0.0003250545222265479;0.00022300252106239912;0.0002305619285560398;0.00014362874237917232;0.0; +1100;0.0008112202900510194;0.012200116911159449;0.026265245175426388;0.038628401458605896;0.047420597837541205;0.05283668624464654;0.06062678697116589;0.06085742803402353;0.051564183828880235;0.041940884309647555;0.03484668334175041;0.030015150731887718;0.028285342760455398;0.02728324710803943;0.01966811546368795;0.019998170777777335;0.01538932609067375;0.021095704111375773;0.020133374159452506;0.014613894931066159;0.014761028022889137;0.013675424399438509;0.012796602418549904;0.010056745654603079;0.010418613529086622;0.008824008939329471;0.008004835509179912;0.007980976088884293;0.006330699518437367;0.0031494434790216045;0.003956687199023355;0.003101724638430368;0.0026682785030599705;0.0022308557976403035;0.002238808937738843;0.002700091063454128;0.0033283891312387414;0.0033005531408938533;0.002918802416163962;0.0033283891312387414;0.004970712561587129;0.007133966668389847;0.011969475848301806;0.013890159182099073;0.01472126232239644;0.015707451694615328;0.01620452295077404;0.01656639082525758;0.015361490100328862;0.012963618360619232;0.011066794447117584;0.01071287971273258;0.009921542272927908;0.007965069808687214;0.006199472706811467;0.006179589856565118;0.005579127779125393;0.004847438890059768;0.005543338648681966;0.0041594922715361094;0.00561889347961809;0.003515287923554417;0.0038294369574467238;0.0025092157010891823;0.0029943572471000865;0.0018133159424669845;0.00174173768158013;0.0011889944447316411;0.0016025577298556903;0.0021036055560636727;0.0017695736719250178;0.002127464976359291;0.0017616205318264785;0.0015946045897571508;0.0009384705316276498;0.0006322746378338828;0.0008470094204944467;0.0004692352658138249;0.0005805792271933766;0.0008271265702480982;0.00042946956532112794;0.0006680637682773101;0.0006282980677846131;0.0006998763286714677;0.0005805792271933766;0.0007396420291641648;0.0007277123190163556;0.001018001932613044;0.0008788219808886043;0.00047718840591236435;0.0005209306764543311;0.0004374227054196673;0.00022666449280837306;0.0004334461353703976;0.0002505239131039913;0.0002902896135966883;0.00032607874404011564;0.0001431565217737093;0.0001431565217737093;0.0; +1150;0.0008830459485421126;0.009347364430909192;0.024561599993107933;0.0384103449909757;0.043135717700979105;0.0462457624563323;0.053271362173757594;0.0556060495108787;0.04817984846070015;0.03850511089764851;0.032190255480269304;0.029196514337650924;0.026827366670830622;0.02256720841176648;0.021279253589258716;0.021059568987426287;0.017200012061115395;0.016407424478033693;0.018634423284844777;0.011255605188002636;0.011100533704356217;0.01088946418494859;0.01034240645097372;0.04804631468311573;0.010234717920663706;0.010450094981283733;0.010385481863097725;0.006612075761034844;0.004966595017897834;0.004255850717851743;0.0044496900724097675;0.005479192422173499;0.0043463090833121545;0.0038466343026736906;0.005414579303987491;0.004062011363293718;0.0034848008408320448;0.0033598821456724288;0.0038509418438860913;0.00564287898824472;0.006357930829503211;0.007813879759294597;0.013219843980857286;0.01596374773315644;0.014542259133064256;0.017217242225964997;0.0180399825975335;0.012720169200218822;0.013986586316664584;0.013176768568733281;0.013465373829964117;0.012517714763235998;0.009816886423060852;0.008205866009623046;0.007068675129549302;0.005677339317943925;0.006151168851307985;0.004841676322738218;0.004871829111225022;0.0048287536991010165;0.00462199172090579;0.003454648052345241;0.002851592282609164;0.0020331594522530593;0.0018996256746686424;0.001787629603146228;0.001473179094640988;0.0014516413885789852;0.0020546971583150623;0.0019340860043678468;0.002097772570439068;0.002071927323164664;0.0011070380915869412;0.001214726621896955;0.0012793397400829632;0.001348260399481372;0.0008916610309669138;0.0005987482285236764;0.000564287898824472;0.000611670852160878;0.0005815180636740742;0.0003015278848680385;0.0003359882145672429;0.0003962937915408506;0.0005556728163996709;0.000611670852160878;0.000611670852160878;0.0007538197121700962;0.0006159783933732786;0.0006676688879220852;0.0007193593824708918;0.0004738295333640605;0.0004006013327532511;0.0002067619781952264;0.00014214886000921815;0.0002455298491068313;0.0002842977200184363;0.00017660918970842254;0.0001033809890976132;0.0; +1200;0.00048316229723540576;0.013593972550341988;0.032356775092983577;0.04326819030554983;0.04877926025839117;0.04939831195172403;0.05397325495367178;0.04925235667443417;0.04191936222576765;0.03572381235184281;0.03421393017298217;0.03154143871639883;0.029447735428378738;0.024324201901444957;0.019004383691259293;0.017182459195434117;0.015068624145029217;0.015576951145245632;0.013780191352401468;0.0112737869354928;0.009965222380480244;0.010176605885520733;0.009225380112838528;0.008631493122486676;0.01099194226210548;0.010705064648121957;0.007307829745685512;0.005692255814304624;0.0037797383877478095;0.004303164209752832;0.005737552279670443;0.004524613595985726;0.004006220714576906;0.004967512368451515;0.004363559496907258;0.0037495407441705967;0.005022874715009739;0.0033469054964744252;0.0036992113382085753;0.004303164209752832;0.006567987478043796;0.010790624638257395;0.014962932392508971;0.016055080501884835;0.023921566653748786;0.02144032693982113;0.018938955463508666;0.016689231017006305;0.01627149694752153;0.014691153600314056;0.013865751342536904;0.011303984579070014;0.010136342360751116;0.007413521498205756;0.0079872767261728;0.007071281537664011;0.005953968725307135;0.005148698229914792;0.0048668535565274725;0.005667091111323613;0.006155286349155221;0.004232703041406002;0.0031506208132225416;0.0025969973476403056;0.002144032693982113;0.0026120961694289123;0.0017715950898631544;0.0013991574857441958;0.00126830103024294;0.00253660206048588;0.002843611436854211;0.002138999753385911;0.0016961009809201221;0.0011072469311644714;0.0011525433965302908;0.0011424775153378865;0.00091599518850879;0.0007046116834683;0.0008052704953923429;0.0010619504657986521;0.0010820822281834607;0.0009612916538746093;0.0013890916045517915;0.0009210281291049922;0.001303531614416355;0.0011726751589150994;0.0012179716242809186;0.0008958634261239815;0.0006291175745252679;0.0008656657825467687;0.0005586564061784379;0.0005133599408126186;0.0003774705447151607;0.0005032940596202143;0.00032210819815693713;0.0004529646536581929;0.0004730964160430014;0.00020635056444428786;0.00031204231696453286;0.0; +1250;0.0011940659872779697;0.012254308542249025;0.023584178900798978;0.03773688728457289;0.044262980652829444;0.04084586093808465;0.04465366583760703;0.04683269869918341;0.043811766777452514;0.031199788699843727;0.029521493187771003;0.028178856778112826;0.02410692668324786;0.0216912816675104;0.02229656857350384;0.017822948077388684;0.015440318711069047;0.01489556049567495;0.013305306715383092;0.01327779367420157;0.01247991547993749;0.010531992164285872;0.009255387053463342;0.01044945304074131;0.023864811920850482;0.04141813219466027;0.02185635991459952;0.00940395747584355;0.0052439856491977195;0.0036317214359606453;0.003521669271234565;0.004721237866748839;0.005177954350362071;0.004633196134967975;0.003961877930138886;0.0036097110030154293;0.003395109281799573;0.0035932031783065172;0.00393986749719367;0.004721237866748839;0.005981335152862457;0.007329474170756939;0.013932604054321748;0.01944071489886206;0.016915017718398522;0.01827416195276561;0.01595206127704532;0.015858516937028153;0.013706997116633285;0.011825105099817313;0.012391873748156626;0.012298329408139458;0.010493473906631743;0.007665133273171483;0.009062795765192701;0.009497501815860718;0.006691171615345674;0.005618163009266392;0.005431074329232056;0.005656681266920521;0.005018378711509256;0.004115950960755398;0.005920806462263113;0.002817335416987652;0.0021845354698126914;0.0030594501793850285;0.0022395615521757315;0.002096493738031827;0.0016727929038364185;0.0022670745933572514;0.0015957563885281624;0.0023991371910285476;0.0017553320273809786;0.0018048555015077147;0.0009189355754627694;0.0012600972861136178;0.0008033808025003852;0.0008033808025003852;0.0007813703695551691;0.0009904694825347215;0.0009464486166442894;0.001254594677877314;0.0007648625448462571;0.0010179825237162416;0.0010620033896066735;0.0009299407919353774;0.0008088834107366892;0.0008584068848634253;0.0009629564413532014;0.0006162921224660489;0.0009574538331168974;0.0008584068848634253;0.0009464486166442894;0.0008253912354456012;0.0005942816895208329;0.00038518257654128056;0.00038518257654128056;0.0005997842977571369;0.00037417736006867253;0.0; +1300;0.00023141303369630896;0.00922438064872787;0.014077626216525462;0.028618078500443542;0.03892881477957909;0.04664901070928095;0.04733039353072008;0.04253500122134657;0.03872311430518237;0.0355926102104573;0.034917655528843065;0.02645822351927799;0.023385572682977;0.02028720928737642;0.020351490685625393;0.01785094429374028;0.013781931784580178;0.015247547664656802;0.012399881722227222;0.011847061697286039;0.007874471285499403;0.008877261098183408;0.009063677153105434;0.007000244269313346;0.020904310710566577;0.04504197575305658;0.039346643868197424;0.027236028438090587;0.00981576951261844;0.005052517902369412;0.003181929213324248;0.002989085018577324;0.003644755280716866;0.004197575305658049;0.0033104920098221977;0.006646696578943985;0.004737539050949436;0.0034840517850944293;0.00505894604219431;0.0066081277399946;0.006942391010889269;0.009070105292930331;0.009577928339097232;0.009442937402774385;0.012599154056799044;0.015009706491135595;0.017349549387398275;0.015504673257652701;0.01395549155985241;0.0152539758044817;0.013351246416312048;0.013068408264016559;0.01105640049882365;0.010297879999485749;0.009410796703649898;0.010664283969504905;0.0059717418973297505;0.00505894604219431;0.004782536029723719;0.004666829512875564;0.00599745445662934;0.0038375994754637904;0.0038954527338878673;0.003413342247020557;0.003207641772623838;0.002963372459277734;0.0022434207988892172;0.0022112800997647303;0.002757671984881015;0.0022369926590643198;0.0031883573531491455;0.003001941298227119;0.001883444968694959;0.0016456037951737526;0.0016327475155239577;0.0009642209737346207;0.000887083295835851;0.000449969787742823;0.000790661198462389;0.0007585204993379016;0.0012149184269056221;0.0011827777277811347;0.0010413586516333903;0.0010220742321586979;0.0007456642196881066;0.0011442088888317498;0.0011570651684815448;0.0008356581772366713;0.0010863556304076727;0.0009063677153105435;0.0010542149312831853;0.0007263798002134143;0.0010285023719835953;0.0007713767789876966;0.0007199516603885168;0.0004885386266922078;0.0003792602496689508;0.0004692542072175154;0.0005142511859917977;0.0; +1350;0.002026928142836236;0.00917605736865213;0.020664422654763648;0.031794233865066586;0.043531391775208546;0.045558319918044786;0.04901946436411532;0.04662666471535197;0.03712132299136543;0.032525976876920826;0.028055027074491437;0.024469486316405678;0.024469486316405678;0.02052539148251134;0.01873262110346846;0.017525245133908973;0.013273818235035855;0.012666471535196839;0.013917752085467585;0.011385921264451924;0.009066295916873994;0.009988292111810333;0.009337040831260062;0.007902824528025758;0.010581003951412263;0.02004975852480609;0.025252451339089713;0.016661788379920973;0.01137128640421484;0.008085760280989316;0.006271037611590809;0.007207668666764233;0.004346553490414166;0.0036074930484413874;0.003358700424410947;0.0026489097029123373;0.0034245572954778284;0.00398799941460559;0.0037684765110493194;0.004836821308356505;0.006322259622420606;0.00905166105663691;0.01211766427630616;0.01291526415922728;0.01686667642324016;0.018183813844577783;0.022786477389140934;0.020225376847651105;0.020005853944094834;0.015337333528464803;0.015966632518659447;0.014649495097321821;0.01152495243670423;0.008861407873554808;0.009534611444460706;0.008510171227864774;0.008239426313478706;0.008232108883360165;0.007639397043758232;0.007836967656958876;0.004514854383140641;0.005619786331040539;0.003278208693106981;0.004441680081955218;0.003519683887018879;0.0031684472413288454;0.0031099078003805065;0.003278208693106981;0.003285526123225523;0.0020561978633104054;0.0037538416508122348;0.002685496853505049;0.0020561978633104054;0.0016464217766720328;0.0013171374213376262;0.0008561393238694571;0.0009366310551734231;0.0006292989901946437;0.0006146641299575589;0.0007610127323284063;0.0005927118396019318;0.0013244548514561687;0.0011854236792038636;0.0013683594321674227;0.0015659300453680668;0.0015732474754866091;0.0016025171959607786;0.0011707888189667788;0.0012659154105078296;0.0013098199912190839;0.0012659154105078296;0.0010463925069515586;0.0006732035709058979;0.0007683301624469486;0.00055612468900922;0.0004902678179423386;0.0004097760866383726;0.00039514122640128786;0.00027806234450461;0.0; +1400;0.0004696073423519913;0.008469409612944685;0.01856184811086029;0.03578902272240439;0.04164675641384765;0.038104104532946666;0.03905979666825949;0.038293595214948344;0.037832226597900774;0.03316086935029412;0.031669660070193936;0.028135246914597373;0.023851109756298505;0.01928685593764933;0.018347641252945343;0.02287070144507242;0.022516436256982318;0.018899635848341544;0.01804280841668177;0.012465191385588822;0.009820560562869713;0.009013165483036465;0.008090428248941324;0.007736163060851225;0.008724810097381732;0.007258316993194813;0.012333371780718087;0.011130517886272636;0.009252088516864671;0.013008947255680602;0.008172815501985533;0.005643526833528316;0.005165680765871905;0.006731038573711876;0.007250078267890392;0.007406614048674389;0.0066156964194499825;0.004531298917431495;0.005289261645438218;0.005552900855179687;0.005791823889007893;0.008098666974245744;0.010290167905221704;0.013536225675163539;0.019410436817215642;0.02188205440854191;0.021363014714363394;0.02169256372654023;0.017968659888941984;0.018009853515464087;0.01436833693091005;0.012423997759066717;0.013083095783420389;0.010636194368007381;0.010183064476264233;0.008807197350425943;0.008494125788857948;0.007480762576414177;0.0059071660432697855;0.005503468503353161;0.004350046960734235;0.004061691575079504;0.003633277859249617;0.0035920842327275123;0.0037403812882070885;0.003328445022986044;0.0029329862083738406;0.003962826871426453;0.004045214124470662;0.0038310072665557185;0.003641516584554038;0.003979304322035295;0.0023645141623687984;0.0024304239648041655;0.0018372357428858607;0.0015983127090576546;0.0014335382029692365;0.0016147901596664964;0.0012440475209675558;0.0010875117401835587;0.0012275700703587142;0.001400583301751553;0.0011039891907924006;0.0011698989932277678;0.0010216019377481916;0.0010627955642702961;0.0012852411474896604;0.001664222511493022;0.0010216019377481916;0.0011698989932277678;0.0014500156535780784;0.00173837103923281;0.0016889386874062845;0.001071034289574717;0.0004613686170475704;0.0004613686170475704;0.0004778460676564122;0.0003707426386989405;0.0003130715615679942;0.0; +1450;8.106683960925784e-05;0.004083742045316363;0.014531230999959467;0.03451420696364152;0.02877872806128653;0.035821409752340806;0.03835474849013011;0.03917555024117385;0.03604434356126626;0.03586194317214544;0.023742450650561388;0.022860848769810708;0.022739248510396822;0.02471525272587248;0.02178671314498804;0.019982975963682054;0.018473106075959627;0.012889627497871996;0.010771756313080135;0.013690162539013416;0.005137610960236716;0.006586680718252199;0.004215475659681407;0.0053909448340156456;0.005451744963722589;0.009120019456041507;0.00965708726845284;0.007184548660370475;0.008968019131774148;0.093064731871428;0.00559361193303879;0.004833610311701998;0.0035061408131004013;0.0033642738437842;0.004478942888411495;0.007083215110858903;0.0049754772810182;0.007346682339588991;0.008603218353532487;0.007468282599002878;0.008005350411414211;0.010619755988812776;0.013416561955332171;0.011207490575979896;0.01368002918406226;0.016253901341656194;0.020134976287949413;0.020834177779579265;0.019516841635928824;0.019587775120586924;0.015676300109440232;0.015595233269830975;0.010295488630375745;0.00793441692675611;0.010376555469985003;0.009829354302622512;0.011146690446272952;0.009444286814478538;0.008968019131774148;0.007964816991609582;0.005836812451866564;0.003800008106683961;0.004073608690365206;0.003303473714077257;0.003222406874467999;0.0035669409428073446;0.0030805399051517975;0.0030805399051517975;0.0028576060962263385;0.0032122735195168417;0.0030602731952494833;0.0016821369218921;0.0011146690446272951;0.0012160025941388675;0.0010336022050180373;0.0009018685906529934;0.0007904016861902638;0.0008613351708483645;0.0010842689797738235;0.0012768027238458108;0.0010538689149203518;0.0016010700822828422;0.0014389364030643265;0.001185602529285396;0.0012464026589923392;0.0013882696283085403;0.001945604150622188;0.0010842689797738235;0.0011248023995784524;0.001195735884236553;0.0012768027238458108;0.000972802075311094;0.000577601232215962;0.0006282680069717482;0.00043573426289976084;0.0010336022050180373;0.000618134652020591;0.00032426735843703135;0.0003952008430951319;0.0; +1500;0.00019341259457307015;0.003959269583025201;0.01467660276466238;0.030832243017236475;0.03195858695033847;0.034859775868934524;0.04033221457420786;0.03988850332783435;0.040047784288070994;0.04146993571875533;0.035314864326753515;0.03217475396780249;0.028545423516696058;0.031537630126855905;0.02350531884635076;0.018795153307924226;0.01571192900620058;0.019079583594061096;0.016610728710393083;0.012423914898458387;0.00794129358894135;0.00639399283235679;0.006826326867284829;0.0049490869787815;0.00477842880709938;0.006632914272711759;0.003617953239660959;0.00516525399624552;0.005597588031173559;0.004812560441435804;0.0053814210137095395;0.002753285169804881;0.003504181125206212;0.004880823710108653;0.004084418908925422;0.0041185505432618464;0.005301780533591217;0.0044029808293987146;0.0030832243017236477;0.005506570339609762;0.005859263894419478;0.008077820126287046;0.014107742192388646;0.014449058535752887;0.016258035155583366;0.023766994709596676;0.02085442857955515;0.017634677740485806;0.024404118550543263;0.022333466067466865;0.020569998293418282;0.016906536207975425;0.014733488821889755;0.01409636498094317;0.013720917003242506;0.011434097502702087;0.010774219238864555;0.009590989248535183;0.008874224927470278;0.006314352352238466;0.006610159849820809;0.005438307070936913;0.003617953239660959;0.004323340349280391;0.003652084873997383;0.00456226178963536;0.0034928039137607373;0.0030832243017236477;0.003344900164969566;0.0028556800728141533;0.004061664486034473;0.0037317253541157063;0.003629330451106434;0.0021275385403037713;0.002070652483076398;0.0020478980601854485;0.0012401160475567438;0.0010922122987655726;0.001194607201774845;0.001160475567438421;0.0012514932590022186;0.0014107742192388645;0.0016610728710393084;0.002434723249331589;0.001945503157176176;0.0029694521872689005;0.002878434495705103;0.001626941236702884;0.0012059844132203197;0.0022754422890949428;0.00219580180897662;0.0015814323909209853;0.002070652483076398;0.0012628704704476933;0.000477842880709938;0.001035326241538199;0.0008874224927470277;0.0006029922066101599;0.000477842880709938;0.0; +1550;0.00034469881940654354;0.0035906127021514953;0.01964783270617298;0.029500473960876683;0.03869244247838451;0.040631373337546316;0.03656679975871083;0.03933875276477178;0.03694022347973458;0.03090799414012007;0.029198862493895958;0.022735759630023267;0.023755493637434292;0.022807571884066298;0.017450377732456265;0.019058972223020137;0.01640191882342803;0.014448625513457616;0.01661735558555712;0.018096688018843534;0.016272656766150577;0.010872375262114728;0.010211702524918853;0.0065780024703415395;0.004911958176543245;0.004710883865222761;0.0036337000545773133;0.004165110734495735;0.005429006405653061;0.00593169218395427;0.007928072846350501;0.006750351880044811;0.006678539626001781;0.006793439232470629;0.005357194151610031;0.005429006405653061;0.0068652514865136585;0.004481084652285066;0.004308735242581794;0.007281762559963232;0.009838278803895097;0.01258150690833884;0.011274523884755694;0.01347197885847241;0.015927957946744033;0.015310372561973975;0.014549162669117858;0.01775198919943699;0.020351592795794675;0.016315744118576395;0.021471863958865942;0.01961910780455577;0.01114526182747824;0.014606612472352282;0.010570763795134002;0.011245798983138483;0.01047022663947376;0.011691034958205268;0.008761094993249648;0.008258409214948439;0.00975210409904346;0.006893976388130871;0.0064774653146812975;0.00710941315025996;0.008129147157670985;0.004897595725734639;0.004897595725734639;0.004222560537730158;0.004021486226409674;0.003762962111854767;0.003877861718323615;0.0018383937035015656;0.0012926205727745383;0.002154367621290897;0.0016804067446068998;0.0025277913423146525;0.001508057334903628;0.0016947691954155057;0.0013787952776261742;0.0020825553672478674;0.0016947691954155057;0.0025708786947404704;0.002872490161721196;0.0032171889811277395;0.002140005170482291;0.001551144687329446;0.0021256427196736853;0.0029012150633384083;0.0014506075316692041;0.0018240312526929595;0.0014506075316692041;0.0020681929164392612;0.0025421537931232586;0.0013213454743917503;0.000789934794473329;0.0011059087122626606;0.000775572343664723;0.0002728865653635136;0.0005888604831528452;0.0; +1600;0.0;0.007296030182816878;0.014508835686742308;0.029087025272560824;0.030113462978888672;0.03523178073071268;0.039989458207340414;0.0355091963270175;0.03435792160235249;0.028324132382722557;0.028268649263461593;0.020847782062307543;0.01692235137459428;0.01785169362221544;0.015909784448081672;0.015146891558243404;0.019391350181707217;0.021680028851222017;0.015909784448081672;0.01417593697117652;0.009029877659722029;0.01133242710905207;0.011304685549421588;0.00869697894415624;0.008280855549699003;0.01041695564124615;0.006685715870946265;0.007198934724110189;0.005770244403140345;0.004840902155519184;0.004480261880322912;0.006893777568174882;0.006560878852609094;0.006588620412239576;0.008419563347851416;0.007670541237828391;0.007046356146142536;0.007601187338752185;0.0051876716509002135;0.010014703026604156;0.009016006879906788;0.011138236191638694;0.011360168668682554;0.012774988209837157;0.013981746053763143;0.019058451466141428;0.018364912475379365;0.018101367658889783;0.022831303575887037;0.01946070408078342;0.016825255915887592;0.014564318806003274;0.013981746053763143;0.013773684356534524;0.012053707659444614;0.012899825228174329;0.013413044081338253;0.012053707659444614;0.009806641329375537;0.013080145365772464;0.010430826421061391;0.007767636696535079;0.006921519127805365;0.006006047659999445;0.003939301467528505;0.004133492384941881;0.004965739173856354;0.0036341443115931976;0.003980913806974228;0.002205453990623353;0.004050267706050434;0.003578661192332233;0.003190279357505479;0.003218020917135961;0.0019280383943185285;0.0022886786695148;0.0017061059172746693;0.0034815657336255443;0.0028851222015701724;0.0028157683024939663;0.002649318944711072;0.002191583210808112;0.0023164202291452826;0.0014564318806003273;0.0019835215135794934;0.0019280383943185285;0.0022470663300690765;0.0025244819263739006;0.0018170721557965988;0.0016783643576441867;0.0020667461924709406;0.0017893305961661165;0.0021638416511776293;0.001692235137459428;0.0017893305961661165;0.001428690320969845;0.0008322467889144727;0.0006657974311315782;0.0005687019724248898;0.0; +1650;0.00043377047758129584;0.009311606252078483;0.01311432743887451;0.01606396668642732;0.025925015543442113;0.02977111377799627;0.04119373635430373;0.03410881855380923;0.03776694958141149;0.029380720348173104;0.027501048278654155;0.02355373693266436;0.01816052399473692;0.01544222900189413;0.0160784257023467;0.02047396654183716;0.0255635401454577;0.024218851664955684;0.024088720521681293;0.01444455690345715;0.01078642587585489;0.013736065123407701;0.010988852098726161;0.006463180115961308;0.006347507988606295;0.006882491577623227;0.006477639131880684;0.008935671838174694;0.006087245702057518;0.006969245673139486;0.004944983444426772;0.0034701638206503667;0.004265409696216076;0.00241465565853588;0.0034123277569728604;0.006159540781654401;0.005942655542863753;0.003759344139037897;0.00516186868321742;0.006101704717976894;0.006376426020445049;0.011914229117566259;0.014227671664666503;0.01610734373418545;0.020719769812466565;0.022324720579517357;0.018912392822544498;0.019765474761787714;0.01824727809025318;0.0163242289729761;0.017177310912219315;0.015500065065571637;0.011552753719581844;0.01315770448663264;0.01552898309741039;0.014646983126328422;0.013013114327438874;0.011625048799178727;0.011943147149405012;0.010598458668902994;0.008415147265077139;0.008342852185480256;0.006361967004525672;0.006361967004525672;0.008082589898931479;0.005798065383669987;0.005624557192637469;0.004279868712135452;0.003267737597779095;0.003759344139037897;0.0030074753112303175;0.003426786772892237;0.002877344167955929;0.002718294992842787;0.0032821966136984716;0.002718294992842787;0.002226688451583985;0.0024869507381327627;0.0011856393053888753;0.0014314425760182763;0.0025303277858908925;0.0017929179740026895;0.002385737626697127;0.001923049117277078;0.0024869507381327627;0.002559245817729645;0.0023423605789389974;0.002805049088359046;0.00208209829239022;0.002761672040600917;0.0034701638206503667;0.003238819565940342;0.0022556064834227383;0.0012434753690663814;0.001344688480502017;0.0011133442257919926;0.0006506557163719437;0.0008386229233238386;0.0009542950506788508;0.0; +1700;0.0004575326511937443;0.009337825472090508;0.01601364279178105;0.03223525497046835;0.02610015805673405;0.03618667332168705;0.033795025372265204;0.03067548456867149;0.030654687629980866;0.025164295815655935;0.02333416521088096;0.02478995091922469;0.0239580733715997;0.023146992762665335;0.016242409117377923;0.014474669328674819;0.014245903003077947;0.014578654022127943;0.01593045503701855;0.019153980534065387;0.013102071375093586;0.010377672406621746;0.004304966308959321;0.004450544879793694;0.003514682638715581;0.006280675484568671;0.003015556110140587;0.002641211213709342;0.004887280592296814;0.004700108144081191;0.004304966308959321;0.0036394642708593296;0.004804092837534315;0.008651526495299891;0.006301472423259296;0.005116046917893686;0.01079361118043424;0.007091756093503036;0.007757258131603028;0.005469594875634307;0.00794443057981865;0.012083021379252974;0.014287496880459197;0.019944264204309125;0.015639297895349805;0.016263206056068548;0.019320356043590385;0.024374012145412197;0.0260585641793528;0.02312619582397471;0.019445137675734133;0.020692953997171616;0.018030945844771648;0.02013143665252475;0.01360119790366858;0.01351801014890608;0.014516263206056068;0.015992845853090427;0.009067465269112387;0.009400216288162382;0.0057815489559936775;0.007362116296481158;0.005032859163131187;0.0039306214125280755;0.0030779469262124616;0.004741702021462441;0.004055403044671824;0.0039306214125280755;0.005157640795274935;0.005739955078612428;0.0040346061059812;0.0035562765160968303;0.003681058148240579;0.0031611346809749604;0.0022876632559687216;0.002620414275018717;0.0016429581565593544;0.001206222444056235;0.001767739788703103;0.002620414275018717;0.0017053489726312288;0.001684552033940604;0.0018301306047749772;0.0030571499875218368;0.0014973795857249812;0.0030571499875218368;0.0036186673321687048;0.003348307129190583;0.0029115714166874636;0.002079693869062474;0.0023500540720405956;0.002246069378587472;0.0017885367273937276;0.0021628816238249728;0.0017885367273937276;0.0012478163214374844;0.001123034689293736;0.0009982530571499876;0.0009982530571499876;0.0; +1750;0.0018270885740765258;0.004104329405534225;0.020601085661326624;0.02642658546273004;0.035879782867734675;0.0378657487091222;0.03646233284787501;0.04239375082748577;0.019886137958427114;0.023434396928372833;0.02714153316562955;0.017132265325036408;0.012789620018535681;0.012339467761154509;0.018032569839798757;0.01670859261220707;0.02155434926519264;0.017582417582417582;0.012683701840328347;0.0064080497815437575;0.0076525883754799415;0.007970342910101947;0.009188401959486297;0.008605851979345954;0.007970342910101947;0.006911161128028598;0.0024890771878723684;0.0026744339997352047;0.004819277108433735;0.004739838474778234;0.004660399841122733;0.004607440752019065;0.00585197934595525;0.010035747385144976;0.0064080497815437575;0.0051635111876075735;0.0061167747914735865;0.0061697338805772545;0.005613663444988746;0.0061697338805772545;0.008261617900172116;0.015517013107374553;0.01787369257248775;0.020971799285052297;0.021316033364226137;0.023990467363961338;0.0234873560174765;0.02012445385939362;0.01734410168145108;0.016152522176618563;0.021104197007811465;0.016073083542963062;0.016046603998411228;0.014960942671786045;0.015940685820203894;0.018323844829868926;0.013769363166953529;0.012842579107639349;0.012312988216602674;0.007970342910101947;0.005295908910366741;0.004978154375744737;0.005137031643055739;0.005375347544022243;0.007334833840857937;0.004739838474778234;0.004845756652985569;0.006090295246921753;0.0034952998808420494;0.00307162716801271;0.004024890771878724;0.005348867999470409;0.004130808950086058;0.002806831722494373;0.002992188534357209;0.0021183635641466966;0.0024361180987687013;0.0011915795048325168;0.0029127499007017077;0.002091884019594863;0.003813054415464054;0.0021183635641466966;0.002833311267046207;0.0031245862571163776;0.0035747385144975505;0.0023037203760095325;0.0029392294452535417;0.0048722361975374025;0.0035217794253938834;0.004369124851052562;0.002753872633390706;0.0024096385542168677;0.002833311267046207;0.0014034158612471865;0.001376936316695353;0.0018270885740765258;0.0015093340394545214;0.0012180590493843506;0.0013239772275916854;0.0; +1800;0.00012017786323759164;0.0037735849056603774;0.012113928614349238;0.026415094339622643;0.027424588390818412;0.03090974642470857;0.029563754356447543;0.02660737892080279;0.023651003485158036;0.023194327604855184;0.026415094339622643;0.01853142651123663;0.019276529263309698;0.01610383367383728;0.02023795216921043;0.020718663622160797;0.01968513399831751;0.015310659776469174;0.014878019468813845;0.013580098545847855;0.0074510275207306815;0.008700877298401634;0.008941233024876817;0.006970316067780315;0.0049032568200937385;0.005912750871289509;0.0029804110082922728;0.006153106597764692;0.005263790409806513;0.0023795216921043143;0.0022353082562192044;0.0036293714697752675;0.0020189881023915395;0.0041581540680206705;0.008244201418098786;0.010431438529022953;0.011008292272563393;0.018459319793294075;0.014974161759403918;0.014469414733806033;0.01908424468212955;0.011416897007571205;0.011152505708448503;0.015767335656772023;0.023338541040740294;0.023843288066338182;0.019997596442735247;0.024780675399591397;0.01781035933181108;0.020910948203340943;0.02095901934863598;0.01624804710972239;0.01711332772503305;0.009974762648720105;0.009566157913712294;0.015310659776469174;0.010816007691383247;0.010503545246965508;0.01047950967431799;0.009277731041942074;0.007595240956615791;0.007691383247205865;0.012474462204062012;0.01091214998197332;0.00790770340103353;0.006657853623362577;0.004086047350078116;0.0031246244441773827;0.004999399110683812;0.004374474221848335;0.002812161999759644;0.007354885230140608;0.002043023675039058;0.002283379401514241;0.0024516284100468693;0.0028602331450546807;0.0020189881023915395;0.0023795216921043143;0.0031005888715298644;0.0036534070424227858;0.0028361975724071624;0.0016344189400312463;0.0025477707006369425;0.0022593438288667227;0.0022353082562192044;0.0024756639826943876;0.003533229179185194;0.0031005888715298644;0.0032448023074149743;0.0033169090253575293;0.002211272683571686;0.001538276649441173;0.0010816007691383247;0.0014180987862035812;0.001177743059728398;0.0021151303929816128;0.0018507390938589112;0.002283379401514241;0.002211272683571686;0.0; +1850;0.00012994438380373202;0.0009355995633868704;0.014709704246582463;0.02159675658818026;0.024663444045948335;0.022272467383959667;0.026326732158636103;0.02988720827485836;0.024637455169187587;0.019517646447320548;0.022714278288892355;0.021492801081137273;0.01832215811632621;0.016191070221945006;0.023078122563542802;0.018166224855761734;0.018867924528301886;0.023493944591714746;0.028041998024845367;0.01891990228182338;0.012734549612765737;0.01003170642964811;0.007302874369769738;0.010083684183169603;0.005353708612713759;0.005977441654971672;0.004652008940173606;0.006393263683143614;0.00621134154581839;0.004833931077498831;0.0033265762253755393;0.002650865429596133;0.004859919954259577;0.004314153542283902;0.0035864649929830033;0.006913041218358542;0.00953791777119393;0.006185352669057643;0.01213680544726857;0.017854358334632777;0.006601174697229586;0.013124382764176932;0.019985446229013982;0.013202349394459172;0.01522948178179739;0.01632101460574874;0.018660013514215916;0.024507510785383855;0.01790633608815427;0.0155153594261656;0.018062269348718747;0.017828369457872032;0.012656582982483497;0.012266749831072302;0.018893913405062635;0.018010291595197257;0.014605748739539477;0.01720463641561412;0.01710068090857113;0.014033993450803056;0.010005717552887363;0.014839648630386195;0.00953791777119393;0.0047559644472165916;0.006315297052861375;0.004807942200738084;0.005639586257081969;0.003976298144394199;0.0016372992359270232;0.0015333437288840377;0.0021050990176204585;0.0021050990176204585;0.0016632881126877697;0.002287021154945683;0.002209054524663444;0.003196631841571807;0.0033525651021362856;0.002780809813399865;0.003378553978897032;0.0024429544155101617;0.003924320390872707;0.0016632881126877697;0.0028327875669213578;0.0020791101408597122;0.0031446540880503146;0.004080253651437185;0.003222620718332554;0.004210198035240917;0.0032486095950933;0.002209054524663444;0.0026248765528353864;0.0030666874577680754;0.002157076771141951;0.0027028431831176256;0.002468943292270908;0.0017672436197307552;0.0018971880035344873;0.0013774104683195593;0.0021310878943812048;0.0; +1900;0.0;0.004396652187731751;0.005720945015361797;0.011494861743828796;0.021029770102765123;0.022248119504184764;0.027836635236783557;0.03429918423561818;0.03882826570611293;0.030326305752728044;0.02200974679521136;0.022301091217289966;0.021638944803474943;0.015785570505350142;0.0145407352473779;0.01507045237842992;0.01218349401419642;0.016368259349507364;0.012157008157643819;0.00813115796164848;0.00903167708443691;0.00757495497404386;0.004608539040152558;0.008369530670621888;0.004476109757389554;0.004317194618073949;0.003257760355969912;0.006780379277465833;0.006224176289861214;0.005959317724335205;0.0028869583642334995;0.0013242928276300456;0.002966415933891302;0.0018804958152346648;0.002171840237313275;0.002092382667655472;0.009667337641699332;0.014567221103930501;0.019308189426846065;0.013428329272168662;0.021029770102765123;0.022539463926263374;0.015547197796376734;0.011945121305223011;0.018804958152346646;0.02063248225447611;0.019308189426846065;0.02063248225447611;0.028578239220256384;0.02158597309036974;0.016712575484691176;0.02087085496344952;0.016474202775717768;0.012130522301091217;0.016897976480559383;0.014328848394957093;0.012951583854221845;0.013322385845958259;0.014593706960483102;0.013560758554931666;0.015388282657061129;0.015467740226718932;0.011521347600381397;0.012289437440406822;0.006489034855387223;0.00609174700709821;0.0039199067697849345;0.0018540099586820639;0.0029399300773387013;0.0028604725076808984;0.0022512978069710774;0.0019864392414450684;0.0028075007945756966;0.003522618921495921;0.002092382667655472;0.0022512978069710774;0.0012713211145248438;0.0011388918317618393;0.0014037503972878483;0.0021453543807606738;0.002410212946286683;0.002383727089734082;0.002410212946286683;0.0036815340608115266;0.004396652187731751;0.005058798601546774;0.003655048204258926;0.003575590634601123;0.004131793622205742;0.004158279478758343;0.0023307553766288803;0.0042907087615213476;0.002436698802839284;0.0027810149380230955;0.00495285517533637;0.0022248119504184767;0.0027280432249178936;0.0016156372497086555;0.0013772645407352474;0.0; +1950;0.0011241481065130331;0.0036183517178388254;0.011663036605072718;0.015035480924611818;0.021112906625447903;0.030387128504180426;0.03671046160331624;0.030949202557436942;0.022201925103632402;0.02434483243167287;0.015913721632825124;0.0290522026276962;0.023536850980116632;0.014578795756340898;0.014719314269655026;0.01889974004075037;0.015140869809597415;0.008395981170519215;0.011487388463430058;0.0112063514368018;0.013349258764842269;0.0067448886390781984;0.007096184922363522;0.0016862221597695496;0.005901777559193424;0.004250685027752406;0.007306962692334715;0.00737722194899178;0.004707370196023326;0.003829129487810019;0.008958055223775732;0.008079814515562425;0.009906555188646105;0.004601981311037729;0.005269444249279842;0.007939296002248296;0.009028314480432797;0.009941684816974636;0.013630295791470527;0.00923909225040399;0.0112063514368018;0.00846624042717628;0.01570294386285393;0.018688962270779177;0.019602332607321013;0.018688962270779177;0.020691351085505516;0.025293332396543244;0.01384107356144172;0.021393943652076162;0.02044544368720579;0.01984824000562074;0.01844305487247945;0.015140869809597415;0.01370055504812759;0.009730907047003443;0.01384107356144172;0.01106583292348767;0.013911332818098785;0.018548443757465047;0.010187592215274363;0.009098573737089862;0.004953277594323052;0.007096184922363522;0.004250685027752406;0.00600716644417902;0.004637110939366262;0.006780018267406731;0.004531722054380665;0.0062179442141502145;0.004742499824351858;0.00368861097449589;0.004496592426052133;0.007587999718962973;0.004847888709337455;0.003583222089510293;0.004391203541066535;0.004320944284409471;0.002950888779596712;0.00245907398299726;0.003091407292910841;0.0034075739478676317;0.0028103702662825828;0.00245907398299726;0.001861870301412211;0.003548092461181761;0.004566851682709197;0.004777629452680391;0.0042858146560809385;0.002634722124639921;0.0015105740181268882;0.0020726480713834047;0.002213166584697534;0.0018267406730836787;0.00323192580622497;0.0023888147263401954;0.0034427035761961638;0.003829129487810019;0.0020375184430548726;0.0; +2000;0.0;0.0015452888501466043;0.010420794040732229;0.004952848878675014;0.014937792218083841;0.012718915920437435;0.01790950154528885;0.02829067279499168;0.02488311276646327;0.028686900705285682;0.031143513749108488;0.026943497899992074;0.015967984784848243;0.01814723829146525;0.01711704572470085;0.02107932482764086;0.011688723353673033;0.013788731278231239;0.018503843410729852;0.015215151755289643;0.011252872652349631;0.00705285680323322;0.005467945162057215;0.0063000237736746175;0.009469847056026626;0.004754734923528014;0.008122672161027022;0.014066090815437039;0.013154766621760837;0.009905697757350028;0.004200015849116411;0.004358507013234012;0.004081147476028211;0.0032886916554402093;0.0038434107298518107;0.004675489341469213;0.004596243759410413;0.002377367461764007;0.0045566209683810125;0.02163404390205246;0.011094381488232032;0.016403835486171647;0.009390601473967827;0.011490609398526032;0.02191140343925826;0.02210951739440526;0.026151042079404073;0.03173785561454949;0.026507647198668674;0.017037800142642046;0.015611379665583644;0.016522703859259847;0.010024566130438228;0.01101513590617323;0.008637768444409223;0.019296299231317853;0.019098185276170854;0.013590617323084237;0.011450986607496633;0.009549092638085427;0.012520801965290434;0.011886837308820033;0.01065853078690863;0.011807591726761234;0.006696251683968619;0.01022268008558523;0.006815120057056819;0.0044773753863222125;0.0037245423567636104;0.005071717251763214;0.0045566209683810125;0.005150962833822014;0.0031302004913226085;0.006260400982645217;0.0026547269989698075;0.0028924637451462083;0.004120770267057611;0.004952848878675014;0.004992471669704414;0.005943418654410016;0.004318884222204612;0.005388699579998415;0.004081147476028211;0.0033283144464696093;0.006022664236468817;0.004833980505586814;0.0033283144464696093;0.0038434107298518107;0.004160393058087012;0.0031302004913226085;0.0029320865361756082;0.004200015849116411;0.0032886916554402093;0.0026547269989698075;0.0016245344322054045;0.0009509469847056027;0.0009113241936762026;0.0013471748949996038;0.001386797686029004;0.0; +2050;0.0;0.0017032799056644974;0.006682098091453029;0.008996811809407345;0.017382189806524874;0.023671223304363016;0.026247980084727257;0.0328864043324453;0.03380355505088003;0.023103463335808185;0.03175088439533563;0.028999432240031445;0.018954448180984407;0.01650871293182513;0.010044984059047036;0.009782940996637114;0.010307027121456959;0.010787439402541817;0.010307027121456959;0.007555574966152771;0.010132331746517011;0.008123334934707604;0.005852295060488274;0.00952089793422719;0.00742455343494781;0.006026990435428222;0.0057649473730183;0.003799624404943879;0.0036249290300039306;0.0017032799056644974;0.0019653229680744204;0.0024457352491592784;0.009477224090492203;0.0034939074987989692;0.00681311962265799;0.0065074027165130804;0.002664104467834214;0.0013538891557846005;0.005983316591693235;0.008691094903262437;0.005197187404463467;0.02480674324147268;0.019653229680744202;0.019784251211949162;0.025199807835087566;0.01698912521290999;0.025243481678822552;0.028693715333886535;0.029610866052321265;0.019958946586889112;0.019871598899419137;0.012971131589291173;0.014325020745075774;0.014499716120015722;0.01484910686989562;0.025636546272437437;0.020526706555443943;0.012971131589291173;0.012053980870856445;0.013102153120496136;0.021749574180023584;0.00969559330916714;0.011005808621216754;0.00834170415338254;0.008691094903262437;0.007555574966152771;0.006638424247718042;0.005415556623138402;0.004760448967113595;0.0034939074987989692;0.0025767567803642397;0.006725771935188016;0.005197187404463467;0.00288247368650915;0.0027514521553041885;0.0028387998427741624;0.002227366030484343;0.0006987814997597939;0.0003057169061449098;0.0008298030309647552;0.0024020614054242914;0.002664104467834214;0.00227103987421933;0.003319212123859021;0.003712276717473905;0.003799624404943879;0.004978818185788532;0.0055465781543433635;0.00545923046687339;0.00288247368650915;0.0031881905926540595;0.002489409092894266;0.004280036686028737;0.004192688998558763;0.003100842905184085;0.004454732060968686;0.002926147530244137;0.004149015154823776;0.003013495217714111;0.0; +2100;3.812137846904544e-05;0.0014486123818237267;0.008157974992375725;0.01528667276608722;0.02081427264409881;0.025236352546508082;0.02474077462641049;0.026456236657517535;0.030725831046050624;0.022758462946020127;0.03026837450442208;0.017764562366575174;0.0200518450747179;0.014181152790484904;0.014104910033546813;0.009759072888075633;0.007891125343092406;0.00953034461726136;0.007586154315340043;0.005375114364135407;0.0031259530344617263;0.0036596523330283625;0.004231473010064044;0.00301158889905459;0.0027828606282403173;0.002439768222018908;0.0027828606282403173;0.0018298261665141812;0.002439768222018908;0.002096675815797499;0.0035834095760902715;0.003812137846904544;0.003735895089966453;0.0036977737114974076;0.0028972247636474533;0.0011817627325404086;0.002439768222018908;0.004422079902409271;0.004155230253125953;0.005680085391887771;0.013609332113449222;0.029963403476669717;0.05710582494663007;0.02832418420250076;0.027828606282403173;0.03541476059774321;0.03804513571210735;0.026036901494358035;0.026799329063738945;0.02333028362305581;0.017002134797194268;0.01730710582494663;0.01765019823116804;0.017268984446477585;0.014104910033546813;0.011398292162244587;0.014714852089051541;0.013952424519670631;0.00560384263494968;0.008081732235437634;0.00602317779810918;0.00602317779810918;0.0070524550167734065;0.006594998475144861;0.009568465995730406;0.006480634339737725;0.0057182067703568165;0.005870692284232998;0.006251906068923453;0.0031640744129307714;0.003812137846904544;0.003621530954559317;0.00217291857273559;0.004269594388533089;0.004040866117718817;0.004612686794754499;0.0025541323574260447;0.0022872827081427266;0.0036596523330283625;0.001639219274168954;0.0028972247636474533;0.004460201280878317;0.0028972247636474533;0.0033928026837450444;0.005108264714852089;0.0033928026837450444;0.003278438548337908;0.003964623360780726;0.005870692284232998;0.004803293687099725;0.003812137846904544;0.006137541933516316;0.006556877096675816;0.008882281183287587;0.010064043915827997;0.004993900579444953;0.002439768222018908;0.0008767917047880451;0.0010292772186642268;0.0; +2150;4.7323837016705316e-05;0.0016090104585679806;0.008565614500023662;0.011736311580142917;0.01940277317684918;0.022810089442051963;0.02749514930670579;0.024419099900619943;0.03345795277081066;0.0204912214282334;0.019355449339832475;0.017651791207231083;0.012872083668543845;0.01372391273484454;0.0177937627182812;0.014481094127111826;0.010742511002792107;0.011736311580142917;0.005726184279021343;0.005489565093937817;0.010269272632625052;0.00676730869338886;0.007145899389522503;0.006341394160238512;0.0027921063839856136;0.003643935450286309;0.0064833656712886285;0.008849557522123894;0.0056315366049879325;0.007950404618806493;0.004164497657470068;0.004401116842553595;0.0033599924281860773;0.0018456296436515072;0.00454308835360371;0.007997728455823198;0.007145899389522503;0.011499692395059392;0.006956604041455681;0.012446169135393498;0.017131229000047325;0.01717855283706403;0.021958260375751267;0.019166153991765654;0.039468080071932234;0.01888221096966542;0.022384174908901613;0.019024182480715537;0.02451374757465335;0.026737967914438502;0.020017983058066346;0.013250674364677488;0.0106951871657754;0.010789834839808811;0.010411244143675169;0.012114902276276561;0.015616866215512754;0.014812360986228764;0.016610666792863566;0.008660262174057073;0.010837158676825517;0.011168425535942455;0.007997728455823198;0.012162226113293265;0.009370119729307652;0.008328995314940135;0.007240547063555913;0.005158298234820879;0.007240547063555913;0.00454308835360371;0.004022526146419952;0.005300269745870995;0.002508163361885382;0.0026974587099522027;0.002413515687851971;0.0027447825469689084;0.0027921063839856136;0.0035019639392361935;0.006388717997255217;0.007098575552505797;0.005110974397804174;0.004306469168520183;0.0038332307983531305;0.005300269745870995;0.008376319151956841;0.008754909848090483;0.00596280346410487;0.00676730869338886;0.0038805546353698358;0.0053475935828877;0.003170697080119256;0.004827031375703942;0.006388717997255217;0.004637736027637121;0.0038332307983531305;0.0023661918508352657;0.0017036581326013913;0.0011830959254176328;0.0014670389475178647;0.0; +2200;3.490157755130532e-05;0.0022337009632835405;0.014588859416445624;0.01298338684908558;0.009667736981711573;0.015077481502163897;0.023244450649169343;0.01947508027362837;0.01930057238587184;0.008620689655172414;0.01095909535110987;0.00977244171436549;0.007817953371492391;0.009632835404160269;0.013297501047047326;0.009423425938852436;0.00649169342454279;0.007468937595979338;0.0035948624877844477;0.004641909814323607;0.007748150216389781;0.006666201312299316;0.004432500349015775;0.007329331285774117;0.004641909814323607;0.005095630322490576;0.0017450788775652658;0.002861929359207036;0.001954488342873098;0.0018846851877704872;0.003141141979617479;0.0026176183163478988;0.002268602540834846;0.0018497836102191819;0.00164037414491135;0.0015705709898087394;0.003455256177579227;0.0027921262041044254;0.00492112243473405;0.004153287728605333;0.0018846851877704872;0.008097165991902834;0.013995532598073433;0.022162501745078878;0.31219461119642605;0.019509981851179675;0.011831634789892503;0.01608962725115175;0.023035041183861512;0.018079017171576155;0.018462934524640515;0.011587323747033366;0.015426497277676952;0.013332402624598632;0.012913583693982968;0.009702638559262879;0.013751221555214296;0.013018288426636883;0.009004607008236772;0.00813206756945414;0.008271673879659361;0.006247382381683652;0.004537205081669692;0.006003071338824515;0.005339941365349714;0.004118386151054028;0.004223090883707943;0.0035948624877844477;0.0038042719530922797;0.005758760295965378;0.006352087114337568;0.007015217087812369;0.0035948624877844477;0.002059193075527014;0.0036646656428870584;0.002268602540834846;0.0014658662571548234;0.0024780120061426774;0.002059193075527014;0.0025129135836939828;0.0019195867653217925;0.0017101773000139607;0.0018497836102191819;0.002373307273488762;0.004467401926567081;0.004292894038810554;0.002861929359207036;0.005339941365349714;0.0035599609102331424;0.0026874214714505094;0.004572106659220997;0.0032807482898227;0.0037693703755409744;0.0023384056959374565;0.0017799804551165712;0.003176043557168784;0.003629764065335753;0.0032807482898227;0.004432500349015775;0.0; +2250;0.0;0.001202573507305634;0.014671396789128736;0.014671396789128736;0.011725091696229931;0.017497444531296976;0.016174613673260778;0.02645661716072395;0.016475257050087188;0.024231856172208525;0.024592628224400215;0.014911911490589862;0.012025735073056341;0.015753712945703807;0.013949852684745355;0.012807407852805004;0.012145992423786904;0.007215441043833804;0.005832481510432325;0.00565209548433648;0.005171066081414226;0.006974926342372677;0.00883891527869641;0.004269135950935001;0.0027659190668029585;0.004750165353857255;0.0037881065480127474;0.0015032168841320427;0.0031266911189946484;0.004449521977030846;0.002585533040707113;0.0031266911189946484;0.0033672058204557752;0.0019842462870542964;0.0021045036377848594;0.0067344116409115504;0.00703505501773796;0.004509650652396128;0.0037881065480127474;0.00529132343214479;0.0055919668089711985;0.004509650652396128;0.035055017737959236;0.02224760988515423;0.0367987493235524;0.07654380374000361;0.04184955805423606;0.026637003186819795;0.020564006974926344;0.01623474234862606;0.018820275389333174;0.0183993746617762;0.01166496302086465;0.009921231435271481;0.011845349046960496;0.013709337983284229;0.020323492273465214;0.023690698093920992;0.01695628645300944;0.014611268113763454;0.011424448319403523;0.006012867536528171;0.007636341771390776;0.006193253562624015;0.005952738861162888;0.007455955745294931;0.0039083638987433104;0.0021646323131501413;0.003968492574108593;0.0073958270699296495;0.005471709458240635;0.004750165353857255;0.00282604774216824;0.0019842462870542964;0.0023450183392459863;0.003848235223378029;0.002585533040707113;0.0021045036377848594;0.001202573507305634;0.004329264626300283;0.0029463050928988034;0.004810294029222536;0.005351452107510072;0.005892610185797607;0.0045697793277614095;0.0022848896638807048;0.0033672058204557752;0.00703505501773796;0.009680716733810353;0.006072996211893452;0.007335698394564368;0.0055919668089711985;0.005411580782875353;0.0046900366784919725;0.006674282965546269;0.011965606397691059;0.005411580782875353;0.004329264626300283;0.002886176417533522;0.0; +2300;0.0;0.007234311305046794;0.010047654590342769;0.007578802319572831;0.012516506861112706;0.009530918068553712;0.016191077682723775;0.021645518746052708;0.016765229373600504;0.014124131595567548;0.019808233335247172;0.012860997875638745;0.007521387150485158;0.011827524832060631;0.009817993913992077;0.007865878165011195;0.007578802319572831;0.007463971981397486;0.00912901188494;0.012516506861112706;0.014181546764655223;0.01142561864844692;0.009645748406729058;0.008095538841361887;0.00930125739220302;0.010219900097605787;0.00832519951771258;0.00465062869610151;0.007234311305046794;0.0025836826089452834;0.002928173623471321;0.0012057185508411322;0.001837285410805535;0.0008612275363150944;0.001435379227191824;0.003617155652523397;0.002985588792558994;0.001492794396279497;0.0038468163288740884;0.0068898202905207555;0.007463971981397486;0.012631337199288053;0.02497559855313774;0.015904001837285412;0.023540219325945914;0.035138083481655855;0.04449675604294655;0.04449675604294655;0.024114371016822643;0.015329850146408681;0.019865648504334844;0.023023482804156857;0.021243612562438997;0.016592983866337487;0.026698053625767926;0.027099959809381638;0.0155020956536717;0.01297582821381409;0.02939656657288856;0.0155020956536717;0.010334730435781134;0.008956766377676983;0.0057989320778549696;0.010219900097605787;0.009932824252167422;0.008440029855887926;0.004822874203364529;0.011195957972096228;0.007980708503186542;0.005052534879715221;0.002985588792558994;0.001492794396279497;0.002755928116208302;0.003617155652523397;0.0021243612562438998;0.0022391915944192458;0.004306137681575472;0.0032726646379973587;0.001779870241717862;0.001607624734454843;0.0009760578744904404;0.0013205488890164782;0.002870758454383648;0.0035023253143480508;0.006315668599644026;0.0042487225124877995;0.006258253430556353;0.00987540908307975;0.010794051788482518;0.010564391112131826;0.012631337199288053;0.010506975943044151;0.005109950048802893;0.002755928116208302;0.0044783831888384916;0.0032726646379973587;0.0010908882126657864;0.0022391915944192458;0.001492794396279497;0.0; +2350;0.0;0.0015064562410329987;0.008895265423242468;0.010401721664275465;0.02496413199426112;0.015208034433285509;0.0296987087517934;0.025538020086083215;0.01685796269727403;0.013988522238163558;0.018938307030129126;0.017862266857962696;0.021305595408895265;0.026829268292682926;0.018579626972740317;0.013414634146341463;0.009110473457675754;0.006312769010043041;0.006743185078909613;0.004734576757532282;0.008034433285509325;0.003658536585365854;0.0077474892395982785;0.006743185078909613;0.004088952654232425;0.006527977044476327;0.007532281205164993;0.004878048780487805;0.004878048780487805;0.004088952654232425;0.001362984218077475;0.001291248206599713;0.0022955523672883787;0.002367288378766141;0.001362984218077475;0.0032281205164992827;0.007317073170731708;0.007101865136298422;0.00860832137733142;0.007819225251076041;0.007245337159253945;0.023242467718794835;0.01592539454806313;0.02187948350071736;0.01671449067431851;0.020014347202295554;0.020875179340028693;0.02109038737446198;0.01800573888091822;0.020875179340028693;0.021664275466284074;0.019583931133428982;0.012338593974175036;0.010043041606886656;0.01291248206599713;0.020516499282639884;0.021233859397417502;0.018292682926829267;0.017360114777618365;0.015853658536585366;0.013558106169296986;0.014921090387374462;0.010688665710186514;0.007245337159253945;0.006886657101865136;0.0058823529411764705;0.005380200860832138;0.007604017216642754;0.004806312769010043;0.006886657101865136;0.0037302725968436155;0.0020803443328550933;0.0027977044476327115;0.00351506456241033;0.0024390243902439024;0.0020803443328550933;0.004232424677187948;0.005595408895265423;0.0030129124820659973;0.008321377331420373;0.006743185078909613;0.005523672883787661;0.006169296987087518;0.00853658536585366;0.008464849354375897;0.00817790530846485;0.005164992826398852;0.008751793400286943;0.008751793400286943;0.015781922525107604;0.01054519368723099;0.004519368723098996;0.003945480631276901;0.0054519368723099;0.005738880918220947;0.006743185078909613;0.0031563845050215206;0.0032281205164992827;0.0054519368723099;0.0; +2400;0.0;6.906554320049727e-05;0.0006906554320049727;0.0017266385800124317;0.010152634850473099;0.008080668554458182;0.0037986048760273497;0.007459078665653705;0.011948338973686029;0.013744043096898957;0.006561226604047241;0.005041784653636301;0.004143932592029836;0.0018647696664134262;0.003384211616824366;0.00683748877684923;0.008495061813661164;0.0034532771600248634;0.0024863595552179017;0.0019338352096139235;0.0020029007528144208;0.0002071966296014918;0.00034532771600248634;0.00027626217280198907;0.0006215898888044754;0.0004143932592029836;0.0002071966296014918;0.0004834588024034809;0.0006906554320049727;0.0009669176048069618;0.00034532771600248634;0.0008287865184059672;0.0005525243456039781;0.00034532771600248634;0.0002071966296014918;0.00013813108640099454;0.00013813108640099454;0.00034532771600248634;0.00013813108640099454;0.0005525243456039781;0.0020029007528144208;0.0051799157400372955;0.016644795911319843;0.010014503764072105;0.01650666482491885;0.015816009392913874;0.014849091788106913;0.007735340838455694;0.6037709786587472;0.006768423233648732;0.0075972097520546995;0.008495061813661164;0.008909455072864149;0.008495061813661164;0.005387112369638787;0.00835693072726017;0.008218799640859175;0.004627391394433317;0.00455832585123282;0.012224601146488018;0.00987637267767111;0.006423095517646246;0.004351129221631328;0.014849091788106913;0.006906554320049727;0.0017266385800124317;0.002624490641618896;0.0008978520616064645;0.0011050486912079563;0.003107949444022377;0.005248981283237792;0.007044685406450721;0.0037295393328268525;0.0018647696664134262;0.002071966296014918;0.0029698183576213825;0.001795704123212929;0.0012431797776089508;0.0006906554320049727;0.0008287865184059672;0.0017266385800124317;0.0015885074936114372;0.0014503764072104426;0.0019338352096139235;0.0016575730368119344;0.004212998135230334;0.00227916292561641;0.002348228468816907;0.006354029974445749;0.001312245320809448;0.0005525243456039781;0.0014503764072104426;0.001035983148007459;0.0012431797776089508;0.0004834588024034809;0.0008978520616064645;0.00075972097520547;0.00075972097520547;0.00075972097520547;0.0; +2450;0.0008629782337712149;0.017930769968357466;0.011602262920701888;0.007383258222264839;0.010931057627768722;0.01630069997123406;0.01141048997986384;0.017163678205005275;0.02224566113721354;0.039601112283056863;0.02598523348355547;0.01831431585003356;0.010355738805254578;0.010259852334835555;0.009684533512321411;0.01236935468405408;0.00987630645315946;0.011506376450282865;0.008246236456036053;0.005753188225141433;0.006999712340588743;0.008342122926455078;0.004986096461789241;0.006999712340588743;0.010068079393997507;0.009588647041902388;0.006999712340588743;0.0018218429379614537;0.0014382970562853582;0.0005753188225141433;0.0003835458816760955;0.0005753188225141433;9.588647041902388e-05;0.0004794323520951194;0.007191485281426791;0.0011506376450282866;0.0004794323520951194;0.018218429379614536;0.0009588647041902388;0.005657301754722409;0.007958577044778982;0.010259852334835555;0.021095023492185252;0.02157445584428037;0.02675232524690766;0.02665643877648864;0.022629207018889635;0.02099913702176623;0.04132706875059929;0.01754722408668137;0.01332821938824432;0.014382970562853582;0.015821267619138938;0.012848787036149199;0.013903538210758463;0.01735545114584332;0.01802665643877649;0.018122542909195512;0.010835171157349699;0.01112283056860677;0.010068079393997507;0.01265701409531115;0.012465241154473105;0.006712052929331671;0.009492760571483363;0.007191485281426791;0.012081695272797009;0.0036436858759229074;0.0018218429379614537;0.0026848211717326684;0.0043148911688560745;0.0027807076421516924;0.0018218429379614537;0.0028765941125707163;0.0032601399942468116;0.003931345287179979;0.0017259564675424297;0.0019177294083804776;0.004027231757599003;0.0035477994055038834;0.007191485281426791;0.010739284686930674;0.0076709176335219105;0.008725668808131172;0.006520279988493623;0.005657301754722409;0.005369642343465337;0.006616166458912647;0.013424105858663342;0.01265701409531115;0.009972192923578482;0.008725668808131172;0.004986096461789241;0.006328507047655575;0.009013328219388245;0.007479144692683863;0.006328507047655575;0.013040559976987246;0.007191485281426791;0.0; +2500;0.0;0.005211726384364821;0.005211726384364821;0.016395222584147665;0.018349619978284472;0.025407166123778503;0.021498371335504887;0.023344191096634093;0.02214983713355049;0.012920738327904451;0.014223669923995657;0.00988056460369164;0.011292073832790446;0.016069489685124866;0.019326818675352877;0.008686210640608035;0.01476655808903366;0.014549402823018458;0.007274701411509229;0.005971769815418024;0.00510314875135722;0.005863192182410423;0.002062975027144408;0.005863192182410423;0.00249728555917481;0.001737242128121607;0.008143322475570033;0.010097719869706841;0.008143322475570033;0.013572204125950055;0.008794788273615635;0.005537459283387622;0.00738327904451683;0.005863192182410423;0.0029315960912052116;0.00249728555917481;0.002062975027144408;0.00249728555917481;0.0016286644951140066;0.0033659066232356134;0.0016286644951140066;0.004777415852334419;0.006406080347448426;0.00738327904451683;0.016938110749185668;0.02290988056460369;0.016286644951140065;0.011834961997828448;0.010966340933767645;0.01965255157437568;0.012920738327904451;0.012812160694896851;0.019218241042345277;0.03496199782844734;0.013137893593919652;0.03279044516829533;0.026058631921824105;0.021281216069489683;0.026492942453854505;0.029424538545059716;0.01509229098805646;0.010966340933767645;0.008469055374592834;0.01530944625407166;0.02258414766558089;0.01476655808903366;0.011074918566775244;0.00998914223669924;0.009771986970684038;0.008903365906623236;0.006406080347448426;0.00760043431053203;0.005537459283387622;0.0068403908794788275;0.006406080347448426;0.0071661237785016286;0.005537459283387622;0.004125950054288816;0.003800217155266015;0.00499457111834962;0.0035830618892508143;0.00510314875135722;0.003800217155266015;0.004451682953311618;0.007274701411509229;0.004125950054288816;0.004668838219326819;0.00760043431053203;0.0040173724212812165;0.006948968512486428;0.006188925081433224;0.004343105320304018;0.005211726384364821;0.005646036916395223;0.0035830618892508143;0.004234527687296417;0.0016286644951140066;0.001954397394136808;0.004234527687296417;0.0; +2550;0.0;0.005146736749890495;0.010402978537012702;0.009088918090232151;0.01741130091984231;0.019163381515549714;0.009526938239159002;0.007993867717915024;0.018396846254927726;0.023981603153745073;0.019491896627244855;0.01029347349978099;0.007117827420061323;0.013688129653964083;0.00492772667542707;0.0042706964520367935;0.00788436268068331;0.003942181340341655;0.003504161191414805;0.015111695137976347;0.0086508979413053;0.011279018834866403;0.011060008760402978;0.007336837494524748;0.0056942619360490585;0.003832676303109943;0.004380201489268506;0.0015330705212439773;0.0017520805957074025;0.0018615856329391152;0.0045992115637319315;0.0022996057818659658;0.0022996057818659658;0.0022996057818659658;0.002956636005256242;0.0004380201489268506;0.0020805957074025404;0.006570302233902759;0.003942181340341655;0.002190100744634253;0.0037231712658782304;0.010512483574244415;0.010074463425317565;0.016097240473061762;0.01806833114323259;0.04938677179150241;0.04719667104686816;0.028252299605781867;0.01445466491458607;0.012702584318878668;0.013469119579500657;0.012593079281646956;0.012593079281646956;0.010950503723171266;0.020367936925098553;0.04424003504161191;0.021572492334647395;0.022777047744196234;0.02551467367498905;0.03777923784494087;0.01445466491458607;0.01741130091984231;0.011717038983793254;0.01073149364870784;0.011279018834866403;0.007336837494524748;0.008869908015768726;0.0020805957074025404;0.002518615856329391;0.004161191414805081;0.003175646079719667;0.0028471309680245293;0.005146736749890495;0.006679807271134472;0.0064607971966710465;0.0030661410424879547;0.0036136662286465177;0.003942181340341655;0.005037231712658782;0.0045992115637319315;0.004051686377573368;0.00788436268068331;0.011169513797634692;0.007227332457293035;0.007993867717915024;0.011279018834866403;0.0075558475689881735;0.008322382829610162;0.0027376259307928166;0.0037231712658782304;0.009745948313622427;0.006241787122207621;0.009417433201927288;0.010621988611476127;0.006789312308366185;0.002628120893561104;0.006679807271134472;0.007117827420061323;0.002956636005256242;0.0; +2600;0.0;0.0;0.0034883720930232558;0.017906976744186048;0.013255813953488372;0.01953488372093023;0.020348837209302327;0.014069767441860465;0.012093023255813953;0.010697674418604652;0.014767441860465117;0.012558139534883722;0.011279069767441861;0.023488372093023256;0.01697674418604651;0.022093023255813953;0.01383720930232558;0.009534883720930233;0.005232558139534884;0.006627906976744186;0.006744186046511628;0.007674418604651163;0.0060465116279069765;0.0034883720930232558;0.0060465116279069765;0.004651162790697674;0.005348837209302326;0.003953488372093023;0.0030232558139534882;0.0015116279069767441;0.0022093023255813954;0.0022093023255813954;0.0012790697674418604;0.003372093023255814;0.0022093023255813954;0.004534883720930232;0.0031395348837209304;0.0069767441860465115;0.0036046511627906975;0.0074418604651162795;0.0037209302325581397;0.0074418604651162795;0.008837209302325582;0.01058139534883721;0.010465116279069767;0.017325581395348837;0.022790697674418603;0.022209302325581395;0.012906976744186047;0.006162790697674419;0.012325581395348837;0.017790697674418605;0.016511627906976745;0.016627906976744187;0.010930232558139534;0.018837209302325582;0.028488372093023257;0.027906976744186046;0.03337209302325581;0.022209302325581395;0.016162790697674418;0.011511627906976744;0.014883720930232559;0.01383720930232558;0.025813953488372093;0.019302325581395347;0.037674418604651164;0.019069767441860466;0.01058139534883721;0.008372093023255815;0.009302325581395349;0.003372093023255814;0.0029069767441860465;0.0037209302325581397;0.01383720930232558;0.007790697674418604;0.007093023255813954;0.006279069767441861;0.0030232558139534882;0.0031395348837209304;0.0012790697674418604;0.0034883720930232558;0.0032558139534883722;0.004186046511627907;0.003953488372093023;0.010930232558139534;0.007093023255813954;0.0074418604651162795;0.005348837209302326;0.005348837209302326;0.008023255813953488;0.010813953488372092;0.008023255813953488;0.0027906976744186047;0.002325581395348837;0.0030232558139534882;0.004651162790697674;0.0030232558139534882;0.006627906976744186;0.0; +2650;0.0;0.00012616704516780217;0.0006308352258390108;0.0012616704516780217;0.008453192026242746;0.029270754478930103;0.020817562452687358;0.011985869290941207;0.020186727226848347;0.01703255109765329;0.017537219278324502;0.016023214736310874;0.015013878374968459;0.014635377239465052;0.01450921019429725;0.009967196568256372;0.010598031794095382;0.011355034065102196;0.006056018168054504;0.009714862477920767;0.0074438556649003285;0.004415846580873076;0.0027756749936916477;0.005929851122886702;0.010724198839263184;0.0023971738581882412;0.0012616704516780217;0.0025233409033560434;0.0027756749936916477;0.0026495079485238456;0.0040373454453696694;0.003785011355034065;0.0031541761291950542;0.003658844309866263;0.001514004542013626;0.003785011355034065;0.00870552611657835;0.004668180671208681;0.005677517032551098;0.0017663386323492304;0.0063083522583901085;0.008453192026242746;0.02435023971738582;0.013247539742619227;0.019555892001009337;0.036336109008327025;0.03078475902094373;0.026368912440070655;0.042644461266717136;0.02447640676255362;0.019051223820338126;0.017663386323492306;0.018925056775170326;0.0116073681554378;0.015897047691143074;0.015897047691143074;0.012616704516780217;0.00820085793590714;0.00757002271006813;0.010219530658591975;0.012364370426444614;0.013247539742619227;0.006560686348725713;0.004163512490537472;0.008831693161746153;0.013373706787787031;0.00870552611657835;0.018798889730002523;0.0035326772646984608;0.0032803431743628564;0.003658844309866263;0.0063083522583901085;0.004415846580873076;0.0035326772646984608;0.0035326772646984608;0.004289679535705274;0.005299015897047691;0.003028009084027252;0.005046681806712087;0.0070653545293969215;0.013499873832954833;0.007317688619732526;0.008074690890739339;0.012364370426444614;0.010345697703759779;0.007191521574564724;0.005172848851879889;0.008327024981074944;0.009462528387585163;0.012995205652283624;0.00820085793590714;0.011859702245773405;0.01791572041382791;0.01097653292959879;0.005677517032551098;0.005677517032551098;0.0040373454453696694;0.004920514761544285;0.007948523845571537;0.0; +2700;0.0;0.0;0.0053912081835775505;0.007050041470832181;0.009814763616256566;0.01285595797622339;0.030135471385125796;0.020597179983411668;0.022670721592479955;0.013685374619850706;0.015897152336190212;0.010505944152612662;0.009676527508985348;0.015620680121647775;0.017141277301631185;0.014100082941664363;0.013547138512579486;0.011611833010782417;0.008570638650815593;0.0049764998617638926;0.0017970693945258502;0.0026264860381531654;0.0024882499308819463;0.0031794304672380425;0.006358860934476085;0.008847110865358032;0.005667680398119989;0.004700027647221454;0.002350013823610727;0.0006911805363560963;0.0013823610727121925;0.001105888858169754;0.003455902681780481;0.002211777716339508;0.0019353055017970694;0.002211777716339508;0.001105888858169754;0.0008294166436273154;0.000552944429084877;0.0;0.0019353055017970694;0.007464749792645839;0.011888305225324854;0.01631186065800387;0.017141277301631185;0.028476638097871165;0.026264860381531654;0.02750898534697263;0.023500138236107273;0.014238319048935582;0.013547138512579486;0.013823610727121923;0.015205971799834116;0.029997235277854577;0.02571191595244678;0.03497373513961847;0.01824716615980094;0.013823610727121923;0.0062206248272048655;0.013270666298037047;0.023361902128836053;0.019353055017970695;0.004423555432679016;0.01257948576168095;0.005667680398119989;0.008017694221730716;0.017832457837987283;0.01465302737074924;0.011750069118053636;0.015482444014376555;0.013961846834393143;0.00732651368537462;0.004008847110865358;0.004285319325407796;0.005667680398119989;0.011473596903511197;0.008155930329001936;0.004147083218136578;0.0049764998617638926;0.004561791539950235;0.0033176665745092617;0.004008847110865358;0.005114735969035112;0.005805916505391208;0.004561791539950235;0.008708874758086812;0.007879458114459496;0.01285595797622339;0.015067735692562898;0.011750069118053636;0.007188277578103401;0.013685374619850706;0.01299419408349461;0.004838263754492674;0.0024882499308819463;0.004700027647221454;0.0035941387890517005;0.006497097041747305;0.006358860934476085;0.0; +2750;0.0;0.0;0.015143603133159269;0.0024369016536118365;0.0012184508268059183;0.004525674499564839;0.005918189730200174;0.006614447345517842;0.009225413402959095;0.006092254134029591;0.014447345517841602;0.02402088772845953;0.013402959094865101;0.005395996518711923;0.005744125326370757;0.004873803307223673;0.010269799825935596;0.006962576153176675;0.007832898172323759;0.0026109660574412533;0.0017406440382941688;0.004525674499564839;0.005918189730200174;0.007832898172323759;0.005918189730200174;0.004525674499564839;0.00278503046127067;0.008181026979982594;0.006614447345517842;0.01009573542210618;0.012010443864229765;0.010966057441253264;0.016536118363794605;0.01845082680591819;0.025239338555265448;0.010617928633594429;0.004177545691906005;0.0020887728459530026;0.0036553524804177544;0.004003481288076588;0.00835509138381201;0.0022628372497824193;0.00504786771105309;0.006962576153176675;0.0020887728459530026;0.019669277632724108;0.029939077458659705;0.011836379460400347;0.017754569190600523;0.006440382941688425;0.006092254134029591;0.019495213228894692;0.005221932114882507;0.006614447345517842;0.005918189730200174;0.003307223672758921;0.00278503046127067;0.04473455178416014;0.053611836379460404;0.04804177545691906;0.014447345517841602;0.02628372497824195;0.019147084421235857;0.012706701479547432;0.014969538729329853;0.016884247171453436;0.02228024369016536;0.024891209747606613;0.014099216710182768;0.009225413402959095;0.006266318537859008;0.008006962576153177;0.01723237597911227;0.007832898172323759;0.004525674499564839;0.006092254134029591;0.022976501305483028;0.0034812880765883376;0.008529155787641428;0.014795474325500435;0.007658833768494343;0.006092254134029591;0.0026109660574412533;0.0036553524804177544;0.008703220191470844;0.005918189730200174;0.004873803307223673;0.003307223672758921;0.0008703220191470844;0.005395996518711923;0.003133159268929504;0.00278503046127067;0.00278503046127067;0.007136640557006092;0.004699738903394256;0.012010443864229765;0.014969538729329853;0.007310704960835509;0.0026109660574412533;0.0; +2800;0.0;0.0;0.0;0.00033898305084745765;0.002033898305084746;0.01152542372881356;0.011864406779661017;0.006101694915254237;0.013898305084745762;0.006779661016949152;0.029491525423728814;0.018983050847457626;0.013220338983050847;0.007796610169491526;0.013898305084745762;0.015932203389830507;0.009491525423728813;0.003728813559322034;0.004067796610169492;0.002033898305084746;0.0013559322033898306;0.001694915254237288;0.0013559322033898306;0.0013559322033898306;0.001694915254237288;0.0030508474576271187;0.0023728813559322033;0.002033898305084746;0.00033898305084745765;0.0;0.00033898305084745765;0.0;0.0;0.00033898305084745765;0.00033898305084745765;0.0006779661016949153;0.001694915254237288;0.017966101694915255;0.08915254237288135;0.023728813559322035;0.013898305084745762;0.014915254237288136;0.0;0.002711864406779661;0.002711864406779661;0.0023728813559322033;0.010169491525423728;0.009491525423728813;0.02406779661016949;0.02406779661016949;0.012542372881355932;0.04067796610169491;0.030847457627118643;0.01830508474576271;0.013898305084745762;0.056610169491525426;0.018983050847457626;0.08237288135593221;0.004406779661016949;0.013220338983050847;0.009152542372881356;0.015254237288135594;0.005423728813559322;0.005084745762711864;0.004406779661016949;0.003389830508474576;0.004406779661016949;0.006440677966101695;0.006440677966101695;0.0013559322033898306;0.0006779661016949153;0.0006779661016949153;0.02169491525423729;0.0023728813559322033;0.010847457627118645;0.007796610169491526;0.001016949152542373;0.004406779661016949;0.007457627118644068;0.01694915254237288;0.006440677966101695;0.00576271186440678;0.002711864406779661;0.0;0.022033898305084745;0.008813559322033898;0.0047457627118644066;0.00711864406779661;0.01152542372881356;0.031186440677966103;0.013898305084745762;0.00847457627118644;0.003389830508474576;0.005423728813559322;0.008135593220338983;0.004067796610169492;0.00033898305084745765;0.002033898305084746;0.001694915254237288;0.0; +2850;0.00021561017680034498;0.0;0.007761966364812419;0.00043122035360068997;0.016170763260025874;0.007330746011211729;0.020914187149633463;0.03169469598965071;0.01078050884001725;0.005390254420008625;0.011427339370418284;0.007977576541612763;0.009918068132815868;0.013799051315222079;0.02414833980163864;0.00517464424320828;0.009055627425614488;0.008624407072013798;0.009271237602414833;0.008840017248814143;0.004096593359206554;0.002802932298404485;0.01207416990081932;0.01034928848641656;0.004096593359206554;0.00258732212160414;0.004959034066407934;0.0034497628288055198;0.0008624407072013799;0.00258732212160414;0.000646830530401035;0.0008624407072013799;0.0010780508840017248;0.008840017248814143;0.0019404915912031048;0.00301854247520483;0.0019404915912031048;0.0019404915912031048;0.00258732212160414;0.00258732212160414;0.0036653730056058647;0.002802932298404485;0.0021561017680034496;0.000646830530401035;0.0021561017680034496;0.0019404915912031048;0.01034928848641656;0.01250539025442001;0.016386373436826217;0.014877102199223804;0.023932729624838292;0.028029322984044848;0.032772746873652434;0.017680034497628287;0.011858559724018974;0.009271237602414833;0.032125916343251404;0.08279430789133248;0.058645968089693835;0.018326865028029323;0.007761966364812419;0.009486847779215178;0.020482966796032773;0.010133678309616215;0.0071151358344113845;0.005390254420008625;0.012721000431220354;0.0071151358344113845;0.002802932298404485;0.0071151358344113845;0.0038809831824062097;0.0071151358344113845;0.02371711944803795;0.004312203536006899;0.0017248814144027599;0.008624407072013798;0.014877102199223804;0.016817593790426907;0.0068995256576110395;0.0036653730056058647;0.0036653730056058647;0.004312203536006899;0.007546356188012074;0.004743423889607589;0.00560586459680897;0.00603708495040966;0.0068995256576110395;0.007330746011211729;0.021776627856834842;0.01121172919361794;0.015955153083225527;0.024363949978438982;0.015523932729624839;0.0038809831824062097;0.004096593359206554;0.004096593359206554;0.001509271237602415;0.0010780508840017248;0.0034497628288055198;0.0; +2900;0.0;0.0;0.002633679169992019;0.004948124501197127;0.012290502793296089;0.002793296089385475;0.008300079808459697;0.006624102154828412;0.005666400638467677;0.008140462889066242;0.0068635275339185954;0.005985634477254589;0.0041500399042298484;0.004469273743016759;0.003272146847565842;0.0006384676775738228;0.0009577015163607343;0.0016759776536312849;0.0005586592178770949;0.002553870710295291;0.0009577015163607343;0.0015163607342378292;0.0003990422984836393;0.0006384676775738228;0.0011173184357541898;0.002713487629688747;0.003910614525139665;0.0016759776536312849;0.003591380686352753;0.0005586592178770949;0.0003990422984836393;0.0012769353551476455;0.00023942537909018357;0.0016759776536312849;0.0016759776536312849;0.0007182761372705507;0.00023942537909018357;0.0007980845969672786;0.0016759776536312849;0.0024740622505985636;0.0013567438148443735;0.0019952114924181963;0.0008778930566640064;0.0019154030327214685;0.0009577015163607343;0.0010375099760574621;0.0023144453312051077;0.002793296089385475;0.002154828411811652;0.0024740622505985636;0.0035115722266560257;0.002154828411811652;0.0012769353551476455;0.0034317637669592977;0.002873104549082203;0.0039904229848363925;0.0029529130087789304;0.00965682362330407;0.66951316839585;0.006544293695131684;0.007102952913008779;0.004868316041500399;0.006544293695131684;0.005027932960893855;0.009018355945730248;0.007422186751795691;0.005426975259377494;0.004708699122106944;0.0031923383878691143;0.0030327214684756584;0.003272146847565842;0.004309656823623304;0.0031125299281723863;0.0010375099760574621;0.003910614525139665;0.006145251396648044;0.0029529130087789304;0.0016759776536312849;0.0011971268954509178;0.0019952114924181963;0.0034317637669592977;0.004708699122106944;0.005666400638467677;0.002793296089385475;0.004549082202713488;0.005826017557861133;0.003910614525139665;0.002873104549082203;0.003750997605746209;0.004389465283320032;0.004469273743016759;0.011891460494812451;0.009577015163607342;0.0053471667996807665;0.0019154030327214685;0.0010375099760574621;0.0005586592178770949;0.0007980845969672786;0.0019952114924181963;0.0; +2950;0.0;0.0;0.0011312217194570137;0.00641025641025641;0.006221719457013574;0.016025641025641024;0.01753393665158371;0.00471342383107089;0.012066365007541479;0.014894419306184013;0.013763197586726998;0.006033182503770739;0.00904977375565611;0.008672699849170438;0.005467571644042232;0.004147812971342383;0.0024509803921568627;0.0007541478129713424;0.0020739064856711916;0.0022624434389140274;0.006033182503770739;0.0030165912518853697;0.0030165912518853697;0.002828054298642534;0.007541478129713424;0.003770739064856712;0.0022624434389140274;0.0016968325791855204;0.004336349924585219;0.0011312217194570137;0.0011312217194570137;0.0;0.0013197586726998493;0.0022624434389140274;0.0016968325791855204;0.0003770739064856712;0.004901960784313725;0.0011312217194570137;0.000942684766214178;0.004901960784313725;0.004524886877828055;0.003205128205128205;0.00471342383107089;0.003770739064856712;0.01791101055806938;0.02733785822021116;0.01753393665158371;0.026018099547511313;0.029034690799396683;0.038461538461538464;0.033182503770739065;0.026018099547511313;0.01583710407239819;0.015648567119155354;0.014705882352941176;0.010935143288084464;0.01753393665158371;0.05542986425339366;0.03412518853695324;0.04732277526395173;0.06561085972850679;0.009992458521870286;0.0058446455505279035;0.012066365007541479;0.00471342383107089;0.027526395173453996;0.019230769230769232;0.006975867269984917;0.009238310708898944;0.006598793363499246;0.003205128205128205;0.0024509803921568627;0.000942684766214178;0.001885369532428356;0.0013197586726998493;0.0001885369532428356;0.0022624434389140274;0.0016968325791855204;0.0016968325791855204;0.0030165912518853697;0.0026395173453996985;0.003959276018099547;0.008672699849170438;0.010935143288084464;0.004524886877828055;0.007918552036199095;0.02356711915535445;0.011500754147812972;0.009615384615384616;0.006033182503770739;0.013386123680241327;0.008295625942684766;0.012631975867269985;0.017345399698340876;0.01715686274509804;0.010180995475113122;0.003393665158371041;0.003770739064856712;0.006787330316742082;0.0; +3000;0.0;0.0;0.0;0.0021683422038241674;0.012221565148827124;0.003745318352059925;0.0027597082594125765;0.008476246796767199;0.011433077074709246;0.03055391287206781;0.013010053222945003;0.01655824955647546;0.018529469741770156;0.03666469544648137;0.01616400551941652;0.01478415138971023;0.013995663315592351;0.009856100926473488;0.005322294500295683;0.004928050463236744;0.0027597082594125765;0.002562586240883107;0.000788488074117879;0.0011827321111768185;0.0009856100926473486;0.004928050463236744;0.002562586240883107;0.0027597082594125765;0.005125172481766214;0.001971220185294697;0.0059136605558840925;0.001576976148235758;0.001576976148235758;0.000788488074117879;0.0009856100926473486;0.0017740981667652277;0.0017740981667652277;0.004139562389118865;0.000788488074117879;0.0017740981667652277;0.0013798541297062883;0.0011827321111768185;0.0033510743150009857;0.0017740981667652277;0.006702148630001971;0.0011827321111768185;0.005322294500295683;0.013010053222945003;0.019515079834417505;0.03765030553912872;0.0508574807806032;0.03666469544648137;0.023851764242065837;0.018923713778829097;0.012221565148827124;0.01596688350088705;0.017938103686181747;0.013404297260003943;0.012418687167356593;0.04021289178001183;0.03055391287206781;0.035876207372363494;0.023063276167947958;0.04316972205795387;0.0234575202050069;0.006505026611472502;0.002365464222353637;0.0033510743150009857;0.0035481963335304554;0.002562586240883107;0.001971220185294697;0.0009856100926473486;0.0005913660555884093;0.0005913660555884093;0.0011827321111768185;0.0017740981667652277;0.003942440370589394;0.002365464222353637;0.003942440370589394;0.0011827321111768185;0.0009856100926473486;0.0013798541297062883;0.000788488074117879;0.006702148630001971;0.009067612852355609;0.010447466982061896;0.019317957815888034;0.024837374334713187;0.02365464222353637;0.018332347723240685;0.011630199093238714;0.004730928444707274;0.009856100926473488;0.01636112753794599;0.02227478809383008;0.009856100926473488;0.006307904592943032;0.005322294500295683;0.003745318352059925;0.0; +3050;0.0;0.0003999200159968006;0.0061987602479504095;0.004199160167966407;0.001999600079984003;0.008598280343931213;0.007998400319936013;0.003199360127974405;0.011797640471905619;0.009598080383923215;0.013597280543891222;0.006998600279944011;0.009598080383923215;0.009998000399920015;0.010797840431913617;0.01219756048790242;0.007598480303939212;0.0033993201359728054;0.0009998000399920016;0.001799640071985603;0.0005998800239952009;0.003199360127974405;0.005398920215956809;0.003599280143971206;0.002999400119976005;0.0011997600479904018;0.002999400119976005;0.006798640271945611;0.013397320535892822;0.004999000199960008;0.0033993201359728054;0.001799640071985603;0.003999200159968006;0.004999000199960008;0.004599080183963208;0.005398920215956809;0.001999600079984003;0.0007998400319936012;0.0013997200559888023;0.009198160367926415;0.00599880023995201;0.008598280343931213;0.0027994401119776045;0.011397720455908818;0.020195960807838434;0.049590081983603276;0.03479304139172166;0.011197760447910418;0.009198160367926415;0.011197760447910418;0.01219756048790242;0.016396720655868825;0.007598480303939212;0.008598280343931213;0.011197760447910418;0.0065986802639472104;0.022595480903819236;0.015196960607878424;0.01279744051189762;0.022595480903819236;0.0593881223755249;0.09818036392721456;0.06598680263947211;0.01999600079984003;0.011197760447910418;0.00639872025594881;0.007598480303939212;0.007598480303939212;0.035992801439712056;0.02419516096780644;0.010197960407918417;0.004199160167966407;0.002599480103979204;0.0007998400319936012;0.0013997200559888023;0.004199160167966407;0.0009998000399920016;0.001999600079984003;0.001999600079984003;0.0021995600879824036;0.0027994401119776045;0.0065986802639472104;0.01259748050389922;0.010397920415916816;0.014797040591881624;0.007598480303939212;0.005598880223955209;0.0015996800639872025;0.002599480103979204;0.0009998000399920016;0.003599280143971206;0.008998200359928014;0.009598080383923215;0.007398520295940812;0.005398920215956809;0.003799240151969606;0.0021995600879824036;0.003999200159968006;0.007798440311937612;0.0; +3100;0.0;0.0;0.028144744399770247;0.018954623779437105;0.013785180930499713;0.08500861573808156;0.03331418724870764;0.04422745548535324;0.004595060310166571;0.0350373348650201;0.006318207926479035;0.00402067777139575;0.009190120620333142;0.007466973004020678;0.015508328546812177;0.01665709362435382;0.02067777139574957;0.007466973004020678;0.005743825387708214;0.002871912693854107;0.0017231476163124641;0.0011487650775416428;0.0017231476163124641;0.0017231476163124641;0.0005743825387708214;0.0;0.0034462952326249283;0.0011487650775416428;0.0017231476163124641;0.00402067777139575;0.0;0.005169442848937392;0.005743825387708214;0.0022975301550832855;0.0005743825387708214;0.0005743825387708214;0.004595060310166571;0.0011487650775416428;0.0022975301550832855;0.0022975301550832855;0.0017231476163124641;0.0017231476163124641;0.0;0.005743825387708214;0.004595060310166571;0.00861573808156232;0.00402067777139575;0.0017231476163124641;0.004595060310166571;0.006318207926479035;0.011487650775416428;0.031016657093624354;0.018380241240666284;0.007466973004020678;0.004595060310166571;0.007466973004020678;0.0068925904652498565;0.01263641585295807;0.005743825387708214;0.02871912693854107;0.010913268236645606;0.004595060310166571;0.00402067777139575;0.01665709362435382;0.010338885697874785;0.009190120620333142;0.028144744399770247;0.020103388856978748;0.015508328546812177;0.014359563469270534;0.0080413555427915;0.0034462952326249283;0.005743825387708214;0.016082711085583;0.005743825387708214;0.002871912693854107;0.0034462952326249283;0.004595060310166571;0.0005743825387708214;0.005169442848937392;0.0005743825387708214;0.0005743825387708214;0.005743825387708214;0.009190120620333142;0.02986789201608271;0.0430786904078116;0.011487650775416428;0.004595060310166571;0.022975301550832855;0.01723147616312464;0.019529006318207927;0.026995979322228605;0.026421596783457783;0.006318207926479035;0.0034462952326249283;0.0022975301550832855;0.0034462952326249283;0.0011487650775416428;0.0011487650775416428;0.0; +3150;0.0;0.0;0.0;0.005523066926575698;0.012020792722547108;0.004223521767381416;0.007147498375568551;0.01916829109811566;0.018843404808317088;0.008122157244964262;0.01397011046133853;0.009746588693957114;0.005198180636777128;0.004873294346978557;0.0022742040285899934;0.001299545159194282;0.010396361273554255;0.003248862897985705;0.003248862897985705;0.009096816114359974;0.01299545159194282;0.006172839506172839;0.005523066926575698;0.004548408057179987;0.011046133853151396;0.0022742040285899934;0.0035737491877842753;0.005198180636777128;0.001949317738791423;0.002599090318388564;0.0009746588693957114;0.0035737491877842753;0.0022742040285899934;0.004873294346978557;0.0016244314489928524;0.004548408057179987;0.001949317738791423;0.005523066926575698;0.006172839506172839;0.002599090318388564;0.0016244314489928524;0.0;0.001299545159194282;0.004223521767381416;0.008122157244964262;0.010071474983755685;0.01299545159194282;0.01364522417153996;0.014619883040935672;0.014619883040935672;0.014944769330734242;0.018193632228719947;0.017218973359324236;0.011695906432748537;0.011046133853151396;0.02046783625730994;0.028589993502274202;0.09584145549057829;0.03151397011046134;0.02664067576348278;0.0198180636777128;0.012020792722547108;0.042884990253411304;0.03151397011046134;0.051332033788174136;0.002599090318388564;0.0035737491877842753;0.001299545159194282;0.003248862897985705;0.001299545159194282;0.0016244314489928524;0.003898635477582846;0.005847953216374269;0.004873294346978557;0.00649772579597141;0.0022742040285899934;0.000649772579597141;0.0035737491877842753;0.0035737491877842753;0.0022742040285899934;0.000649772579597141;0.000649772579597141;0.0016244314489928524;0.03573749187784275;0.03443794671864847;0.03541260558804418;0.009421702404158544;0.004873294346978557;0.015269655620532813;0.017543859649122806;0.024366471734892786;0.008771929824561403;0.004223521767381416;0.0035737491877842753;0.0003248862897985705;0.001299545159194282;0.001299545159194282;0.001299545159194282;0.008771929824561403;0.0; +3200;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.004242424242424243;0.0048484848484848485;0.0024242424242424242;0.0;0.0036363636363636364;0.0006060606060606061;0.0036363636363636364;0.0024242424242424242;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0036363636363636364;0.0024242424242424242;0.005454545454545455;0.0018181818181818182;0.0012121212121212121;0.004242424242424243;0.011515151515151515;0.0018181818181818182;0.0;0.0024242424242424242;0.0018181818181818182;0.0030303030303030303;0.0012121212121212121;0.0018181818181818182;0.0012121212121212121;0.0006060606060606061;0.0018181818181818182;0.005454545454545455;0.0036363636363636364;0.0;0.012727272727272728;0.017575757575757574;0.021212121212121213;0.028484848484848484;0.029696969696969697;0.017575757575757574;0.02303030303030303;0.012121212121212121;0.014545454545454545;0.00909090909090909;0.029696969696969697;0.0036363636363636364;0.0012121212121212121;0.0;0.0024242424242424242;0.0012121212121212121;0.0036363636363636364;0.06303030303030303;0.09090909090909091;0.06181818181818182;0.1206060606060606;0.11454545454545455;0.06303030303030303;0.04;0.02909090909090909;0.006666666666666667;0.004242424242424243;0.0036363636363636364;0.019393939393939394;0.0048484848484848485;0.0024242424242424242;0.0012121212121212121;0.0012121212121212121;0.0006060606060606061;0.0006060606060606061;0.0036363636363636364;0.0018181818181818182;0.0006060606060606061;0.0024242424242424242;0.0018181818181818182;0.007272727272727273;0.0036363636363636364;0.006060606060606061;0.009696969696969697;0.0048484848484848485;0.004242424242424243;0.007272727272727273;0.0006060606060606061;0.0;0.006060606060606061;0.0;0.0006060606060606061;0.0018181818181818182;0.0012121212121212121;0.0024242424242424242;0.0012121212121212121;0.0; +3250;0.0;0.0;0.0012970168612191958;0.0019455252918287938;0.009727626459143969;0.02594033722438392;0.0012970168612191958;0.011024643320363165;0.014267185473411154;0.008430609597924773;0.005836575875486381;0.0006485084306095979;0.0;0.0038910505836575876;0.005836575875486381;0.005188067444876783;0.0;0.0006485084306095979;0.0;0.0;0.0;0.0006485084306095979;0.0006485084306095979;0.0;0.0;0.0006485084306095979;0.019455252918287938;0.0025940337224383916;0.0006485084306095979;0.007133592736705577;0.007133592736705577;0.0012970168612191958;0.0012970168612191958;0.009727626459143969;0.005836575875486381;0.0;0.0006485084306095979;0.0006485084306095979;0.0006485084306095979;0.0;0.0;0.0;0.00648508430609598;0.0311284046692607;0.0311284046692607;0.029182879377431907;0.05901426718547341;0.007782101167315175;0.027237354085603113;0.011024643320363165;0.005188067444876783;0.0012970168612191958;0.00648508430609598;0.005188067444876783;0.017509727626459144;0.04474708171206226;0.04345006485084306;0.0907911802853437;0.054474708171206226;0.033073929961089495;0.009727626459143969;0.007133592736705577;0.0012970168612191958;0.0019455252918287938;0.0019455252918287938;0.007133592736705577;0.005188067444876783;0.005836575875486381;0.0038910505836575876;0.004539559014267186;0.005188067444876783;0.011024643320363165;0.020103761348897537;0.0019455252918287938;0.016861219195849545;0.0019455252918287938;0.0012970168612191958;0.0019455252918287938;0.00324254215304799;0.0006485084306095979;0.0006485084306095979;0.007133592736705577;0.0012970168612191958;0.0006485084306095979;0.0012970168612191958;0.014915693904020753;0.03631647211413749;0.009727626459143969;0.010376134889753566;0.01556420233463035;0.016861219195849545;0.0012970168612191958;0.0038910505836575876;0.011024643320363165;0.029831387808041506;0.027237354085603113;0.020103761348897537;0.009079118028534372;0.009727626459143969;0.0; +3300;0.0;0.0;0.03125;0.06907894736842106;0.027960526315789474;0.05592105263157895;0.02631578947368421;0.008223684210526315;0.013157894736842105;0.029605263157894735;0.03289473684210526;0.001644736842105263;0.013157894736842105;0.023026315789473683;0.0;0.001644736842105263;0.0;0.001644736842105263;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001644736842105263;0.006578947368421052;0.0;0.014802631578947368;0.008223684210526315;0.013157894736842105;0.024671052631578948;0.023026315789473683;0.019736842105263157;0.003289473684210526;0.039473684210526314;0.014802631578947368;0.006578947368421052;0.003289473684210526;0.018092105263157895;0.009868421052631578;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.001644736842105263;0.006578947368421052;0.008223684210526315;0.029605263157894735;0.018092105263157895;0.1118421052631579;0.049342105263157895;0.013157894736842105;0.019736842105263157;0.03618421052631579;0.03453947368421053;0.03782894736842105;0.0625;0.024671052631578948;0.001644736842105263;0.001644736842105263;0.0; +3350;0.0;0.0;0.0;0.0;0.0036036036036036037;0.02702702702702703;0.04144144144144144;0.0009009009009009009;0.00990990990990991;0.01891891891891892;0.08468468468468468;0.03153153153153153;0.013513513513513514;0.006306306306306306;0.006306306306306306;0.0;0.0;0.0;0.0;0.0;0.0009009009009009009;0.0018018018018018018;0.0018018018018018018;0.0;0.036936936936936934;0.0009009009009009009;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0045045045045045045;0.002702702702702703;0.0;0.0;0.0;0.0;0.0;0.0;0.0009009009009009009;0.03513513513513514;0.02882882882882883;0.08108108108108109;0.05045045045045045;0.04234234234234234;0.026126126126126126;0.021621621621621623;0.002702702702702703;0.012612612612612612;0.017117117117117116;0.0036036036036036037;0.009009009009009009;0.009009009009009009;0.0045045045045045045;0.04234234234234234;0.013513513513513514;0.02072072072072072;0.018018018018018018;0.018018018018018018;0.005405405405405406;0.0018018018018018018;0.0009009009009009009;0.0;0.0009009009009009009;0.0009009009009009009;0.005405405405405406;0.0009009009009009009;0.0009009009009009009;0.0;0.006306306306306306;0.0018018018018018018;0.0009009009009009009;0.0036036036036036037;0.005405405405405406;0.006306306306306306;0.002702702702702703;0.0009009009009009009;0.0;0.0045045045045045045;0.010810810810810811;0.014414414414414415;0.05405405405405406;0.016216216216216217;0.01981981981981982;0.013513513513513514;0.0036036036036036037;0.008108108108108109;0.0036036036036036037;0.017117117117117116;0.021621621621621623;0.008108108108108109;0.0;0.0018018018018018018;0.0036036036036036037;0.002702702702702703;0.0; +3400;0.0;0.0;0.0;0.0;0.0;0.0012919896640826874;0.001937984496124031;0.002583979328165375;0.002583979328165375;0.004521963824289405;0.0006459948320413437;0.0;0.006459948320413436;0.0012919896640826874;0.010981912144702842;0.0103359173126615;0.004521963824289405;0.0071059431524547806;0.006459948320413436;0.0012919896640826874;0.013565891472868217;0.007751937984496124;0.0103359173126615;0.009689922480620155;0.0071059431524547806;0.006459948320413436;0.005813953488372093;0.004521963824289405;0.001937984496124031;0.0;0.0006459948320413437;0.001937984496124031;0.004521963824289405;0.003229974160206718;0.002583979328165375;0.0012919896640826874;0.0;0.0;0.0;0.0006459948320413437;0.002583979328165375;0.0012919896640826874;0.0071059431524547806;0.005813953488372093;0.006459948320413436;0.0071059431524547806;0.007751937984496124;0.0071059431524547806;0.014211886304909561;0.006459948320413436;0.004521963824289405;0.001937984496124031;0.0006459948320413437;0.0006459948320413437;0.002583979328165375;0.007751937984496124;0.02260981912144703;0.023255813953488372;0.03229974160206718;0.06718346253229975;0.0562015503875969;0.09819121447028424;0.09431524547803617;0.041343669250646;0.007751937984496124;0.0006459948320413437;0.004521963824289405;0.0012919896640826874;0.0;0.004521963824289405;0.007751937984496124;0.0012919896640826874;0.031007751937984496;0.06524547803617571;0.0355297157622739;0.0012919896640826874;0.0006459948320413437;0.0006459948320413437;0.0006459948320413437;0.012919896640826873;0.003875968992248062;0.002583979328165375;0.02648578811369509;0.011627906976744186;0.021963824289405683;0.015503875968992248;0.014211886304909561;0.001937984496124031;0.01808785529715762;0.007751937984496124;0.00516795865633075;0.0012919896640826874;0.002583979328165375;0.001937984496124031;0.0006459948320413437;0.003229974160206718;0.006459948320413436;0.004521963824289405;0.010981912144702842;0.0; +3450;0.0;0.0;0.0;0.0;0.0;0.0;0.0;0.0007616146230007616;0.0;0.0015232292460015233;0.0;0.0;0.00456968773800457;0.006092916984006093;0.006854531607006854;0.002284843869002285;0.002284843869002285;0.0015232292460015233;0.003808073115003808;0.002284843869002285;0.0015232292460015233;0.003808073115003808;0.007616146230007616;0.009900990099009901;0.011424219345011425;0.010662604722010662;0.020563594821020565;0.00913937547600914;0.013709063214013708;0.0030464584920030465;0.00456968773800457;0.003808073115003808;0.0015232292460015233;0.0015232292460015233;0.008377760853008377;0.0030464584920030465;0.002284843869002285;0.005331302361005331;0.006092916984006093;0.007616146230007616;0.003808073115003808;0.006854531607006854;0.0030464584920030465;0.011424219345011425;0.00913937547600914;0.016755521706016754;0.009900990099009901;0.012947448591012947;0.011424219345011425;0.010662604722010662;0.002284843869002285;0.0015232292460015233;0.0015232292460015233;0.0015232292460015233;0.0007616146230007616;0.0015232292460015233;0.0015232292460015233;0.003808073115003808;0.024371667936024372;0.006854531607006854;0.02284843869002285;0.011424219345011425;0.0015232292460015233;0.0030464584920030465;0.0007616146230007616;0.035034272658035034;0.01904036557501904;0.035034272658035034;0.02817974105102818;0.00456968773800457;0.0015232292460015233;0.00456968773800457;0.009900990099009901;0.04950495049504951;0.11271896420411272;0.051028179741051026;0.01904036557501904;0.030464584920030464;0.015993907083015995;0.007616146230007616;0.005331302361005331;0.012185833968012186;0.008377760853008377;0.002284843869002285;0.03351104341203351;0.02361005331302361;0.007616146230007616;0.009900990099009901;0.030464584920030464;0.013709063214013708;0.003808073115003808;0.00456968773800457;0.012185833968012186;0.022086824067022087;0.008377760853008377;0.006092916984006093;0.006854531607006854;0.008377760853008377;0.007616146230007616;0.0; diff --git a/pvtoolsOld/functions/seriescalc.json b/pvtoolsOld/functions/seriescalc.json new file mode 100644 index 0000000..dfa68d2 --- /dev/null +++ b/pvtoolsOld/functions/seriescalc.json @@ -0,0 +1,79201 @@ +{ + "inputs": { + "location": { + "latitude": 45.0, + "longitude": 8.0, + "elevation": 250.0 + }, + "meteo_data": { + "radiation_db": "PVGIS-SARAH2", + "meteo_db": "ERA-Interim", + "year_min": 2020, + "year_max": 2020, + "use_horizon": true, + "horizon_db": null, + "horizon_data": "DEM-calculated" + }, + "mounting_system": { + "fixed": { + "slope": { + "value": 35, + "optimal": false + }, + "azimuth": { + "value": 35, + "optimal": false + }, + "type": "free-standing" + } + }, + "pv_module": { + "technology": "c-Si", + "peak_power": 6.0, + "system_loss": 12.0 + } + }, + "outputs": { + "hourly": [ + { + "time": "20200101:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.53, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200101:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200101:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200101:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200101:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.58, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200101:0810", + "P": 648.54, + "G(i)": 159.44, + "H_sun": 8.06, + "T2m": -1.34, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200101:0910", + "P": 1970.22, + "G(i)": 387.59, + "H_sun": 14.8, + "T2m": 1.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200101:1010", + "P": 2955.3, + "G(i)": 573.47, + "H_sun": 19.54, + "T2m": 4.15, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200101:1110", + "P": 3613.38, + "G(i)": 713.2, + "H_sun": 21.82, + "T2m": 6.63, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200101:1210", + "P": 3890.1, + "G(i)": 776.43, + "H_sun": 21.41, + "T2m": 8.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:1310", + "P": 3775.62, + "G(i)": 753.06, + "H_sun": 18.33, + "T2m": 9.53, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200101:1410", + "P": 3276.96, + "G(i)": 643.57, + "H_sun": 12.93, + "T2m": 9.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200101:1510", + "P": 45.3, + "G(i)": 19.24, + "H_sun": 5.68, + "T2m": 8.55, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200101:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200101:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.1, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200101:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200101:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200101:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200101:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200101:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200101:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200102:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.44, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200102:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.29, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200102:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.74, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200102:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.0, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200102:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200102:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.95, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200102:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.81, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200102:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:0810", + "P": 641.28, + "G(i)": 160.09, + "H_sun": 8.07, + "T2m": -0.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200102:0910", + "P": 1867.2, + "G(i)": 367.54, + "H_sun": 14.83, + "T2m": 1.7, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:1010", + "P": 2888.64, + "G(i)": 556.21, + "H_sun": 19.59, + "T2m": 3.79, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:1110", + "P": 3545.16, + "G(i)": 692.0, + "H_sun": 21.9, + "T2m": 5.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:1210", + "P": 3856.62, + "G(i)": 766.12, + "H_sun": 21.51, + "T2m": 6.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200102:1310", + "P": 3638.52, + "G(i)": 723.87, + "H_sun": 18.44, + "T2m": 8.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200102:1410", + "P": 3192.96, + "G(i)": 628.25, + "H_sun": 13.05, + "T2m": 8.24, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200102:1510", + "P": 45.54, + "G(i)": 19.24, + "H_sun": 5.8, + "T2m": 7.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200102:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200102:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200102:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200102:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200103:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200103:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200103:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.6, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200103:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.63, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200103:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200103:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200103:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200103:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.77, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:0810", + "P": 228.3, + "G(i)": 59.13, + "H_sun": 8.09, + "T2m": 1.27, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:0910", + "P": 419.16, + "G(i)": 93.62, + "H_sun": 14.87, + "T2m": 2.35, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:1010", + "P": 728.34, + "G(i)": 151.06, + "H_sun": 19.65, + "T2m": 4.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200103:1110", + "P": 1736.04, + "G(i)": 336.33, + "H_sun": 21.99, + "T2m": 5.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200103:1210", + "P": 1007.04, + "G(i)": 203.26, + "H_sun": 21.61, + "T2m": 6.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200103:1310", + "P": 505.86, + "G(i)": 111.6, + "H_sun": 18.56, + "T2m": 7.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200103:1410", + "P": 213.96, + "G(i)": 55.63, + "H_sun": 13.18, + "T2m": 7.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200103:1510", + "P": 102.54, + "G(i)": 32.35, + "H_sun": 5.94, + "T2m": 7.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200103:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.7, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200103:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200103:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200103:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200103:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200103:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.02, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200103:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200104:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200104:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.48, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200104:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200104:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.51, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200104:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200104:0810", + "P": 549.78, + "G(i)": 136.7, + "H_sun": 8.12, + "T2m": 1.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:0910", + "P": 1914.9, + "G(i)": 379.66, + "H_sun": 14.92, + "T2m": 2.24, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200104:1010", + "P": 2723.82, + "G(i)": 528.82, + "H_sun": 19.73, + "T2m": 4.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:1110", + "P": 3416.58, + "G(i)": 675.14, + "H_sun": 22.08, + "T2m": 7.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:1210", + "P": 3753.96, + "G(i)": 755.75, + "H_sun": 21.72, + "T2m": 9.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:1310", + "P": 3698.94, + "G(i)": 748.73, + "H_sun": 18.69, + "T2m": 10.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200104:1410", + "P": 3107.16, + "G(i)": 619.08, + "H_sun": 13.32, + "T2m": 11.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:1510", + "P": 55.32, + "G(i)": 21.86, + "H_sun": 6.08, + "T2m": 10.47, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200104:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.3, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200104:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.38, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200104:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200104:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200104:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.24, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200104:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200105:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200105:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.29, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200105:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200105:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200105:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.7, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200105:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.38, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200105:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200105:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200105:0810", + "P": 602.22, + "G(i)": 151.14, + "H_sun": 8.16, + "T2m": 1.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200105:0910", + "P": 1924.08, + "G(i)": 382.33, + "H_sun": 14.98, + "T2m": 3.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200105:1010", + "P": 2868.12, + "G(i)": 560.65, + "H_sun": 19.8, + "T2m": 6.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200105:1110", + "P": 3536.1, + "G(i)": 700.57, + "H_sun": 22.18, + "T2m": 8.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200105:1210", + "P": 3804.0, + "G(i)": 763.45, + "H_sun": 21.84, + "T2m": 9.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200105:1310", + "P": 3674.7, + "G(i)": 736.8, + "H_sun": 18.83, + "T2m": 10.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200105:1410", + "P": 3283.8, + "G(i)": 650.09, + "H_sun": 13.46, + "T2m": 10.62, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200105:1510", + "P": 41.58, + "G(i)": 18.36, + "H_sun": 6.23, + "T2m": 9.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200105:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.9, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200105:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.13, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200105:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.79, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200105:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200105:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200105:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200105:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200105:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200106:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200106:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200106:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200106:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.53, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200106:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200106:0810", + "P": 368.28, + "G(i)": 90.63, + "H_sun": 8.2, + "T2m": 0.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200106:0910", + "P": 737.64, + "G(i)": 152.37, + "H_sun": 15.04, + "T2m": 1.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200106:1010", + "P": 931.5, + "G(i)": 187.67, + "H_sun": 19.89, + "T2m": 3.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200106:1110", + "P": 1053.18, + "G(i)": 210.74, + "H_sun": 22.29, + "T2m": 5.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200106:1210", + "P": 2247.78, + "G(i)": 433.65, + "H_sun": 21.97, + "T2m": 6.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200106:1310", + "P": 3323.82, + "G(i)": 647.81, + "H_sun": 18.97, + "T2m": 7.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200106:1410", + "P": 3255.72, + "G(i)": 630.99, + "H_sun": 13.61, + "T2m": 7.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200106:1510", + "P": 52.98, + "G(i)": 20.99, + "H_sun": 6.38, + "T2m": 6.48, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200106:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200106:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200106:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200106:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200106:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.67, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200106:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.42, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200107:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200107:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.58, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200107:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200107:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.63, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.77, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200107:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200107:0810", + "P": 163.74, + "G(i)": 44.22, + "H_sun": 8.25, + "T2m": -1.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200107:0910", + "P": 1116.0, + "G(i)": 220.66, + "H_sun": 15.11, + "T2m": -0.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200107:1010", + "P": 2277.12, + "G(i)": 430.3, + "H_sun": 19.98, + "T2m": 0.56, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200107:1110", + "P": 3467.52, + "G(i)": 666.65, + "H_sun": 22.41, + "T2m": 2.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200107:1210", + "P": 3705.12, + "G(i)": 724.55, + "H_sun": 22.11, + "T2m": 4.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200107:1310", + "P": 3591.6, + "G(i)": 705.32, + "H_sun": 19.11, + "T2m": 5.19, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:1410", + "P": 3223.74, + "G(i)": 629.34, + "H_sun": 13.76, + "T2m": 5.85, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200107:1510", + "P": 60.54, + "G(i)": 22.74, + "H_sun": 6.53, + "T2m": 5.76, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200107:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200107:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200107:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.44, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200107:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.11, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200107:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200107:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200107:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200108:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200108:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200108:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200108:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.69, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200108:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200108:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200108:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200108:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200108:0810", + "P": 341.34, + "G(i)": 83.77, + "H_sun": 8.3, + "T2m": -0.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200108:0910", + "P": 918.96, + "G(i)": 186.29, + "H_sun": 15.19, + "T2m": 1.75, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200108:1010", + "P": 1524.36, + "G(i)": 298.02, + "H_sun": 20.08, + "T2m": 5.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200108:1110", + "P": 2179.86, + "G(i)": 425.07, + "H_sun": 22.53, + "T2m": 7.38, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200108:1210", + "P": 2675.76, + "G(i)": 526.71, + "H_sun": 22.25, + "T2m": 8.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200108:1310", + "P": 2686.8, + "G(i)": 528.83, + "H_sun": 19.27, + "T2m": 9.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200108:1410", + "P": 2859.0, + "G(i)": 560.98, + "H_sun": 13.92, + "T2m": 9.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200108:1510", + "P": 85.92, + "G(i)": 28.86, + "H_sun": 6.7, + "T2m": 8.81, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200108:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200108:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.63, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200108:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200108:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200108:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200108:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200108:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.68, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200108:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200109:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.24, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200109:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200109:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200109:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.01, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200109:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.52, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200109:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.78, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200109:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.02, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200109:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.42, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200109:0810", + "P": 573.96, + "G(i)": 142.21, + "H_sun": 8.37, + "T2m": -0.79, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200109:0910", + "P": 1852.32, + "G(i)": 366.11, + "H_sun": 15.27, + "T2m": 1.51, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200109:1010", + "P": 2898.72, + "G(i)": 565.52, + "H_sun": 20.19, + "T2m": 4.07, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200109:1110", + "P": 3631.38, + "G(i)": 719.64, + "H_sun": 22.66, + "T2m": 6.0, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200109:1210", + "P": 3810.24, + "G(i)": 759.73, + "H_sun": 22.39, + "T2m": 7.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200109:1310", + "P": 3769.08, + "G(i)": 749.38, + "H_sun": 19.43, + "T2m": 8.45, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200109:1410", + "P": 3369.12, + "G(i)": 660.79, + "H_sun": 14.09, + "T2m": 8.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200109:1510", + "P": 56.16, + "G(i)": 21.86, + "H_sun": 6.86, + "T2m": 8.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200109:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.28, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200109:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.62, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200109:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200109:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200109:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.91, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200109:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.55, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200109:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200109:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200110:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200110:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200110:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.33, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200110:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200110:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200110:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200110:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200110:0810", + "P": 589.38, + "G(i)": 150.62, + "H_sun": 8.44, + "T2m": 3.29, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200110:0910", + "P": 1683.84, + "G(i)": 335.7, + "H_sun": 15.36, + "T2m": 3.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200110:1010", + "P": 2868.96, + "G(i)": 556.67, + "H_sun": 20.31, + "T2m": 5.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1110", + "P": 3532.74, + "G(i)": 692.4, + "H_sun": 22.8, + "T2m": 6.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200110:1210", + "P": 3881.46, + "G(i)": 770.7, + "H_sun": 22.55, + "T2m": 7.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1310", + "P": 3716.76, + "G(i)": 740.95, + "H_sun": 19.59, + "T2m": 7.99, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200110:1410", + "P": 3260.04, + "G(i)": 644.88, + "H_sun": 14.26, + "T2m": 8.27, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200110:1510", + "P": 59.76, + "G(i)": 22.74, + "H_sun": 7.04, + "T2m": 7.99, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200110:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.89, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200110:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.73, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200110:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200110:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200110:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200111:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200111:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200111:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200111:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.21, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200111:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.6, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200111:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.78, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200111:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:0810", + "P": 627.18, + "G(i)": 158.54, + "H_sun": 8.51, + "T2m": 0.56, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:0910", + "P": 1972.92, + "G(i)": 392.08, + "H_sun": 15.46, + "T2m": 2.47, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:1010", + "P": 2970.24, + "G(i)": 580.56, + "H_sun": 20.43, + "T2m": 5.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:1110", + "P": 3632.82, + "G(i)": 722.81, + "H_sun": 22.94, + "T2m": 7.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200111:1210", + "P": 3897.24, + "G(i)": 784.81, + "H_sun": 22.71, + "T2m": 9.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200111:1310", + "P": 3854.16, + "G(i)": 776.43, + "H_sun": 19.77, + "T2m": 10.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200111:1410", + "P": 3434.52, + "G(i)": 682.62, + "H_sun": 14.44, + "T2m": 10.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200111:1510", + "P": 52.02, + "G(i)": 20.99, + "H_sun": 7.21, + "T2m": 9.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200111:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200111:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200111:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200111:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200111:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200111:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200111:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200111:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200112:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200112:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200112:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200112:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.69, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200112:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.19, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200112:0810", + "P": 627.66, + "G(i)": 157.73, + "H_sun": 8.6, + "T2m": -0.08, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200112:0910", + "P": 1964.34, + "G(i)": 390.24, + "H_sun": 15.57, + "T2m": 2.01, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200112:1010", + "P": 2961.84, + "G(i)": 578.18, + "H_sun": 20.56, + "T2m": 4.87, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200112:1110", + "P": 3664.98, + "G(i)": 725.02, + "H_sun": 23.09, + "T2m": 6.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:1210", + "P": 3943.14, + "G(i)": 787.12, + "H_sun": 22.88, + "T2m": 7.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200112:1310", + "P": 3848.22, + "G(i)": 765.75, + "H_sun": 19.94, + "T2m": 8.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200112:1410", + "P": 3457.86, + "G(i)": 679.93, + "H_sun": 14.62, + "T2m": 8.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200112:1510", + "P": 63.6, + "G(i)": 23.61, + "H_sun": 7.39, + "T2m": 7.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200112:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.86, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200112:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200112:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200112:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200112:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200112:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200112:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.08, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200112:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200113:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200113:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.28, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200113:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200113:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200113:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200113:0810", + "P": 550.44, + "G(i)": 133.93, + "H_sun": 8.69, + "T2m": -2.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200113:0910", + "P": 1747.26, + "G(i)": 342.1, + "H_sun": 15.68, + "T2m": -0.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:1010", + "P": 2436.42, + "G(i)": 466.03, + "H_sun": 20.69, + "T2m": 2.04, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200113:1110", + "P": 3270.42, + "G(i)": 633.13, + "H_sun": 23.25, + "T2m": 3.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:1210", + "P": 3702.42, + "G(i)": 725.17, + "H_sun": 23.06, + "T2m": 4.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200113:1310", + "P": 3689.88, + "G(i)": 722.39, + "H_sun": 20.13, + "T2m": 5.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200113:1410", + "P": 3181.8, + "G(i)": 613.68, + "H_sun": 14.81, + "T2m": 5.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200113:1510", + "P": 136.74, + "G(i)": 39.35, + "H_sun": 7.58, + "T2m": 4.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200113:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200113:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200113:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.27, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200113:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200113:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.02, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200113:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200113:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.3, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200113:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200114:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200114:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200114:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.26, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200114:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.4, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200114:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200114:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200114:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200114:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200114:0810", + "P": 546.72, + "G(i)": 134.87, + "H_sun": 8.78, + "T2m": -0.46, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200114:0910", + "P": 1863.12, + "G(i)": 367.14, + "H_sun": 15.8, + "T2m": 1.75, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200114:1010", + "P": 2552.76, + "G(i)": 488.3, + "H_sun": 20.84, + "T2m": 3.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200114:1110", + "P": 2926.44, + "G(i)": 560.06, + "H_sun": 23.42, + "T2m": 4.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200114:1210", + "P": 2272.44, + "G(i)": 434.8, + "H_sun": 23.24, + "T2m": 5.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200114:1310", + "P": 3644.7, + "G(i)": 712.08, + "H_sun": 20.32, + "T2m": 5.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200114:1410", + "P": 3254.94, + "G(i)": 629.33, + "H_sun": 15.0, + "T2m": 5.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200114:1510", + "P": 95.46, + "G(i)": 30.61, + "H_sun": 7.77, + "T2m": 5.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200114:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200114:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.83, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200114:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.3, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200114:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200114:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200114:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200114:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200114:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200115:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0810", + "P": 426.48, + "G(i)": 104.38, + "H_sun": 8.88, + "T2m": 1.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0910", + "P": 1831.2, + "G(i)": 362.08, + "H_sun": 15.92, + "T2m": 2.72, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:1010", + "P": 2381.94, + "G(i)": 455.49, + "H_sun": 20.99, + "T2m": 3.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200115:1110", + "P": 1233.96, + "G(i)": 242.14, + "H_sun": 23.59, + "T2m": 4.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200115:1210", + "P": 3786.24, + "G(i)": 737.3, + "H_sun": 23.43, + "T2m": 4.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:1310", + "P": 3777.3, + "G(i)": 737.26, + "H_sun": 20.52, + "T2m": 5.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:1410", + "P": 3528.84, + "G(i)": 684.76, + "H_sun": 15.2, + "T2m": 5.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:1510", + "P": 153.36, + "G(i)": 42.85, + "H_sun": 7.97, + "T2m": 5.12, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200115:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200115:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200115:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200116:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200116:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200116:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.3, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200116:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:0810", + "P": 606.06, + "G(i)": 154.0, + "H_sun": 8.99, + "T2m": 3.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200116:0910", + "P": 1884.12, + "G(i)": 377.02, + "H_sun": 16.05, + "T2m": 3.74, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200116:1010", + "P": 2845.08, + "G(i)": 555.56, + "H_sun": 21.14, + "T2m": 5.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1110", + "P": 3516.54, + "G(i)": 697.77, + "H_sun": 23.77, + "T2m": 6.77, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1210", + "P": 3837.72, + "G(i)": 772.1, + "H_sun": 23.62, + "T2m": 7.87, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1310", + "P": 3828.84, + "G(i)": 772.68, + "H_sun": 20.72, + "T2m": 8.38, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200116:1410", + "P": 3352.2, + "G(i)": 669.24, + "H_sun": 15.4, + "T2m": 8.68, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200116:1510", + "P": 70.74, + "G(i)": 25.36, + "H_sun": 8.17, + "T2m": 8.5, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200116:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200116:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200116:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.56, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200116:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200116:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.93, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200116:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200117:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200117:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200117:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200117:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200117:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200117:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200117:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200117:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200117:0810", + "P": 610.44, + "G(i)": 155.93, + "H_sun": 9.11, + "T2m": 2.33, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200117:0910", + "P": 1893.06, + "G(i)": 378.33, + "H_sun": 16.19, + "T2m": 4.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200117:1010", + "P": 2616.66, + "G(i)": 509.77, + "H_sun": 21.31, + "T2m": 6.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200117:1110", + "P": 691.32, + "G(i)": 146.19, + "H_sun": 23.95, + "T2m": 7.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200117:1210", + "P": 1243.86, + "G(i)": 247.89, + "H_sun": 23.82, + "T2m": 8.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200117:1310", + "P": 3826.44, + "G(i)": 756.47, + "H_sun": 20.93, + "T2m": 8.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200117:1410", + "P": 3432.3, + "G(i)": 669.65, + "H_sun": 15.61, + "T2m": 8.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200117:1510", + "P": 59.7, + "G(i)": 22.74, + "H_sun": 8.37, + "T2m": 8.32, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200117:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.1, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200117:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200117:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.57, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200117:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200117:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200117:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200117:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.2, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200117:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.98, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200118:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.78, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200118:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200118:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200118:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200118:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200118:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200118:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200118:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200118:0810", + "P": 615.72, + "G(i)": 155.86, + "H_sun": 9.23, + "T2m": 2.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200118:0910", + "P": 1770.78, + "G(i)": 352.71, + "H_sun": 16.34, + "T2m": 4.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200118:1010", + "P": 2987.64, + "G(i)": 583.54, + "H_sun": 21.48, + "T2m": 7.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200118:1110", + "P": 3712.74, + "G(i)": 732.73, + "H_sun": 24.15, + "T2m": 8.89, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200118:1210", + "P": 4027.26, + "G(i)": 805.65, + "H_sun": 24.03, + "T2m": 10.07, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200118:1310", + "P": 3938.04, + "G(i)": 795.48, + "H_sun": 21.14, + "T2m": 10.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200118:1410", + "P": 3534.3, + "G(i)": 708.74, + "H_sun": 15.82, + "T2m": 10.94, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200118:1510", + "P": 2715.06, + "G(i)": 534.41, + "H_sun": 8.58, + "T2m": 10.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200118:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200118:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200118:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200118:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200118:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.4, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200118:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.17, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200118:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200118:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200119:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200119:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200119:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.27, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200119:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200119:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200119:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.63, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200119:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.45, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200119:0810", + "P": 424.14, + "G(i)": 101.95, + "H_sun": 9.36, + "T2m": 0.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200119:0910", + "P": 803.76, + "G(i)": 164.75, + "H_sun": 16.49, + "T2m": 2.18, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200119:1010", + "P": 1404.96, + "G(i)": 274.04, + "H_sun": 21.66, + "T2m": 3.96, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200119:1110", + "P": 3154.02, + "G(i)": 610.42, + "H_sun": 24.35, + "T2m": 5.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200119:1210", + "P": 3971.7, + "G(i)": 780.66, + "H_sun": 24.24, + "T2m": 6.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:1310", + "P": 3809.88, + "G(i)": 746.48, + "H_sun": 21.36, + "T2m": 6.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200119:1410", + "P": 1982.64, + "G(i)": 380.41, + "H_sun": 16.04, + "T2m": 7.19, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200119:1510", + "P": 2522.88, + "G(i)": 484.29, + "H_sun": 8.79, + "T2m": 6.99, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200119:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200119:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.85, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200119:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200119:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200119:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200119:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200120:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200120:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200120:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.45, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200120:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.39, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.01, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.28, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200120:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200120:0810", + "P": 373.38, + "G(i)": 90.14, + "H_sun": 9.5, + "T2m": 2.13, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200120:0910", + "P": 712.5, + "G(i)": 148.03, + "H_sun": 16.65, + "T2m": 2.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200120:1010", + "P": 2426.7, + "G(i)": 467.23, + "H_sun": 21.84, + "T2m": 5.6, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200120:1110", + "P": 3507.78, + "G(i)": 679.66, + "H_sun": 24.55, + "T2m": 7.05, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200120:1210", + "P": 3952.98, + "G(i)": 771.32, + "H_sun": 24.46, + "T2m": 7.8, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200120:1310", + "P": 4009.14, + "G(i)": 784.51, + "H_sun": 21.59, + "T2m": 8.13, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200120:1410", + "P": 3678.24, + "G(i)": 713.79, + "H_sun": 16.26, + "T2m": 8.26, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200120:1510", + "P": 1617.6, + "G(i)": 312.37, + "H_sun": 9.01, + "T2m": 7.82, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200120:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.45, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200120:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.86, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200120:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.8, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200120:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.21, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200120:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.61, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200120:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.05, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200120:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200121:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200121:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200121:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200121:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200121:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200121:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.92, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200121:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.58, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200121:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200121:0810", + "P": 643.56, + "G(i)": 160.64, + "H_sun": 9.64, + "T2m": -0.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200121:0910", + "P": 1809.24, + "G(i)": 357.09, + "H_sun": 16.82, + "T2m": 2.15, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200121:1010", + "P": 1245.66, + "G(i)": 245.92, + "H_sun": 22.03, + "T2m": 4.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200121:1110", + "P": 1779.6, + "G(i)": 347.15, + "H_sun": 24.76, + "T2m": 6.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200121:1210", + "P": 670.98, + "G(i)": 142.63, + "H_sun": 24.69, + "T2m": 7.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200121:1310", + "P": 1651.26, + "G(i)": 324.21, + "H_sun": 21.82, + "T2m": 7.92, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200121:1410", + "P": 1584.36, + "G(i)": 309.85, + "H_sun": 16.49, + "T2m": 7.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200121:1510", + "P": 542.34, + "G(i)": 116.99, + "H_sun": 9.23, + "T2m": 7.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200121:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200121:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.21, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200121:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200121:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200121:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200121:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200121:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200121:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200122:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200122:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200122:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200122:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.63, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200122:0810", + "P": 582.9, + "G(i)": 142.07, + "H_sun": 9.79, + "T2m": -0.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0910", + "P": 1890.72, + "G(i)": 373.93, + "H_sun": 16.99, + "T2m": 2.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200122:1010", + "P": 2536.98, + "G(i)": 492.21, + "H_sun": 22.23, + "T2m": 5.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200122:1110", + "P": 3338.22, + "G(i)": 660.04, + "H_sun": 24.98, + "T2m": 8.1, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200122:1210", + "P": 3898.56, + "G(i)": 787.67, + "H_sun": 24.92, + "T2m": 9.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200122:1310", + "P": 3904.8, + "G(i)": 793.74, + "H_sun": 22.05, + "T2m": 10.72, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200122:1410", + "P": 2850.78, + "G(i)": 563.42, + "H_sun": 16.72, + "T2m": 11.08, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200122:1510", + "P": 2420.22, + "G(i)": 474.39, + "H_sun": 9.45, + "T2m": 10.56, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200122:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200122:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.4, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200122:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200122:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200123:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200123:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.04, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200123:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.25, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200123:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.32, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200123:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.94, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200123:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.99, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200123:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.96, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200123:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200123:0810", + "P": 492.36, + "G(i)": 117.06, + "H_sun": 9.94, + "T2m": -0.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200123:0910", + "P": 1224.9, + "G(i)": 242.94, + "H_sun": 17.17, + "T2m": 2.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200123:1010", + "P": 2812.32, + "G(i)": 539.49, + "H_sun": 22.43, + "T2m": 4.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200123:1110", + "P": 3639.84, + "G(i)": 713.79, + "H_sun": 25.21, + "T2m": 6.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200123:1210", + "P": 2912.76, + "G(i)": 568.54, + "H_sun": 25.16, + "T2m": 7.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200123:1310", + "P": 3744.06, + "G(i)": 745.63, + "H_sun": 22.29, + "T2m": 8.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200123:1410", + "P": 3507.6, + "G(i)": 693.29, + "H_sun": 16.96, + "T2m": 8.81, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200123:1510", + "P": 2717.7, + "G(i)": 528.59, + "H_sun": 9.68, + "T2m": 8.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200123:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200123:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.6, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200123:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.88, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200123:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.4, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200123:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.82, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200123:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200123:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200123:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.1, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200124:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200124:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.24, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200124:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200124:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200124:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200124:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200124:0810", + "P": 662.64, + "G(i)": 167.56, + "H_sun": 10.1, + "T2m": 1.0, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200124:0910", + "P": 755.76, + "G(i)": 156.43, + "H_sun": 17.35, + "T2m": 3.1, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200124:1010", + "P": 1737.3, + "G(i)": 339.17, + "H_sun": 22.64, + "T2m": 5.98, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200124:1110", + "P": 2842.5, + "G(i)": 559.55, + "H_sun": 25.44, + "T2m": 7.65, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200124:1210", + "P": 3040.92, + "G(i)": 600.68, + "H_sun": 25.4, + "T2m": 8.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:1310", + "P": 2076.36, + "G(i)": 405.87, + "H_sun": 22.54, + "T2m": 9.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200124:1410", + "P": 3574.8, + "G(i)": 705.47, + "H_sun": 17.2, + "T2m": 9.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200124:1510", + "P": 2448.54, + "G(i)": 472.9, + "H_sun": 9.91, + "T2m": 8.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200124:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.46, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200124:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.02, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200124:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200124:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200124:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.1, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200124:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200124:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200125:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.55, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200125:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.46, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200125:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200125:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200125:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200125:0810", + "P": 488.22, + "G(i)": 117.01, + "H_sun": 10.27, + "T2m": 2.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200125:0910", + "P": 898.26, + "G(i)": 183.61, + "H_sun": 17.54, + "T2m": 4.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:1010", + "P": 2516.82, + "G(i)": 486.97, + "H_sun": 22.86, + "T2m": 5.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:1110", + "P": 756.24, + "G(i)": 157.94, + "H_sun": 25.67, + "T2m": 6.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200125:1210", + "P": 689.1, + "G(i)": 146.21, + "H_sun": 25.65, + "T2m": 7.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:1310", + "P": 578.46, + "G(i)": 125.82, + "H_sun": 22.79, + "T2m": 8.44, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200125:1410", + "P": 456.0, + "G(i)": 102.67, + "H_sun": 17.44, + "T2m": 8.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200125:1510", + "P": 993.72, + "G(i)": 200.36, + "H_sun": 10.14, + "T2m": 8.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200125:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200125:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200125:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200125:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200125:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200125:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200126:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200126:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.79, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200126:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.32, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200126:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.99, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200126:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200126:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.28, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200126:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:0810", + "P": 536.4, + "G(i)": 128.78, + "H_sun": 10.44, + "T2m": 2.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200126:0910", + "P": 1524.96, + "G(i)": 303.0, + "H_sun": 17.74, + "T2m": 3.34, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200126:1010", + "P": 2510.52, + "G(i)": 488.58, + "H_sun": 23.08, + "T2m": 6.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:1110", + "P": 2826.24, + "G(i)": 553.45, + "H_sun": 25.92, + "T2m": 7.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200126:1210", + "P": 3660.72, + "G(i)": 731.71, + "H_sun": 25.91, + "T2m": 8.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:1310", + "P": 3294.3, + "G(i)": 652.05, + "H_sun": 23.05, + "T2m": 9.14, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200126:1410", + "P": 3509.88, + "G(i)": 699.53, + "H_sun": 17.69, + "T2m": 9.41, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200126:1510", + "P": 2864.22, + "G(i)": 561.86, + "H_sun": 10.38, + "T2m": 9.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200126:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200126:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200126:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200126:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200126:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200126:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.22, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.79, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200127:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200127:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200127:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.64, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200127:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200127:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.25, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200127:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.92, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200127:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200127:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.61, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200127:0810", + "P": 660.72, + "G(i)": 165.36, + "H_sun": 10.62, + "T2m": 2.11, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200127:0910", + "P": 1857.78, + "G(i)": 369.69, + "H_sun": 17.94, + "T2m": 3.71, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200127:1010", + "P": 2984.82, + "G(i)": 587.45, + "H_sun": 23.31, + "T2m": 5.97, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200127:1110", + "P": 3417.54, + "G(i)": 678.25, + "H_sun": 26.16, + "T2m": 7.52, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200127:1210", + "P": 3631.32, + "G(i)": 723.79, + "H_sun": 26.16, + "T2m": 8.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200127:1310", + "P": 3858.72, + "G(i)": 771.63, + "H_sun": 23.31, + "T2m": 9.23, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200127:1410", + "P": 398.4, + "G(i)": 92.01, + "H_sun": 17.94, + "T2m": 9.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200127:1510", + "P": 1710.6, + "G(i)": 331.9, + "H_sun": 10.62, + "T2m": 9.36, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200127:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200127:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.29, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.0, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200127:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.98, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200127:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200128:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200128:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.1, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200128:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200128:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200128:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200128:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200128:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200128:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200128:0810", + "P": 631.56, + "G(i)": 153.72, + "H_sun": 10.81, + "T2m": 2.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200128:0910", + "P": 1946.46, + "G(i)": 385.64, + "H_sun": 18.15, + "T2m": 4.29, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200128:1010", + "P": 3016.98, + "G(i)": 583.12, + "H_sun": 23.54, + "T2m": 5.58, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200128:1110", + "P": 3755.16, + "G(i)": 738.98, + "H_sun": 26.42, + "T2m": 7.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200128:1210", + "P": 3731.52, + "G(i)": 743.54, + "H_sun": 26.43, + "T2m": 8.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200128:1310", + "P": 3895.62, + "G(i)": 786.38, + "H_sun": 23.57, + "T2m": 9.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200128:1410", + "P": 3470.64, + "G(i)": 692.95, + "H_sun": 18.2, + "T2m": 11.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200128:1510", + "P": 2983.8, + "G(i)": 588.54, + "H_sun": 10.86, + "T2m": 11.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200128:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.51, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200128:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.93, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200128:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.3, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200128:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200128:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200128:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200128:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200128:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200129:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200129:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.3, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200129:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200129:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200129:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200129:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.92, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200129:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200129:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200129:0810", + "P": 731.04, + "G(i)": 186.97, + "H_sun": 11.0, + "T2m": 1.26, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200129:0910", + "P": 2134.74, + "G(i)": 427.05, + "H_sun": 18.37, + "T2m": 4.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1010", + "P": 3163.92, + "G(i)": 628.98, + "H_sun": 23.78, + "T2m": 7.22, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200129:1110", + "P": 3828.96, + "G(i)": 778.64, + "H_sun": 26.68, + "T2m": 9.77, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1210", + "P": 4155.0, + "G(i)": 862.48, + "H_sun": 26.7, + "T2m": 11.57, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1310", + "P": 4242.72, + "G(i)": 888.2, + "H_sun": 23.84, + "T2m": 12.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1410", + "P": 3806.94, + "G(i)": 787.19, + "H_sun": 18.46, + "T2m": 13.14, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200129:1510", + "P": 3038.04, + "G(i)": 606.44, + "H_sun": 11.11, + "T2m": 12.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200129:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200129:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200129:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200129:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.6, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200129:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.62, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200129:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200129:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200129:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200130:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200130:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200130:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200130:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.71, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200130:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.77, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200130:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200130:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200130:0710", + "P": 6.06, + "G(i)": 7.87, + "H_sun": 2.38, + "T2m": 1.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200130:0810", + "P": 673.8, + "G(i)": 165.78, + "H_sun": 11.19, + "T2m": 2.08, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200130:0910", + "P": 1699.98, + "G(i)": 338.26, + "H_sun": 18.59, + "T2m": 4.01, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200130:1010", + "P": 2931.72, + "G(i)": 579.12, + "H_sun": 24.03, + "T2m": 6.64, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200130:1110", + "P": 3705.18, + "G(i)": 744.9, + "H_sun": 26.94, + "T2m": 8.27, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200130:1210", + "P": 3733.32, + "G(i)": 750.64, + "H_sun": 26.97, + "T2m": 9.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200130:1310", + "P": 3908.4, + "G(i)": 786.5, + "H_sun": 24.11, + "T2m": 9.81, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200130:1410", + "P": 1796.22, + "G(i)": 352.31, + "H_sun": 18.72, + "T2m": 10.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200130:1510", + "P": 2652.9, + "G(i)": 517.17, + "H_sun": 11.36, + "T2m": 9.83, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200130:1610", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 2.57, + "T2m": 8.82, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200130:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.4, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200130:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.83, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200130:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200130:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200130:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200130:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200130:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200131:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200131:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.8, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200131:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200131:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200131:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200131:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200131:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200131:0710", + "P": 8.58, + "G(i)": 8.74, + "H_sun": 2.56, + "T2m": 2.23, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200131:0810", + "P": 683.64, + "G(i)": 171.01, + "H_sun": 11.4, + "T2m": 2.97, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200131:0910", + "P": 1939.98, + "G(i)": 388.18, + "H_sun": 18.82, + "T2m": 4.91, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200131:1010", + "P": 2717.4, + "G(i)": 536.28, + "H_sun": 24.28, + "T2m": 7.68, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200131:1110", + "P": 2358.6, + "G(i)": 466.72, + "H_sun": 27.22, + "T2m": 9.37, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200131:1210", + "P": 1724.22, + "G(i)": 343.61, + "H_sun": 27.25, + "T2m": 10.89, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200131:1310", + "P": 1687.2, + "G(i)": 336.81, + "H_sun": 24.39, + "T2m": 11.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200131:1410", + "P": 1470.12, + "G(i)": 294.63, + "H_sun": 18.99, + "T2m": 12.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200131:1510", + "P": 1201.02, + "G(i)": 242.93, + "H_sun": 11.61, + "T2m": 12.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200131:1610", + "P": 5.46, + "G(i)": 7.87, + "H_sun": 2.81, + "T2m": 11.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200131:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200131:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.87, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200131:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.59, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200131:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.52, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200131:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200131:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200131:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.63, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200201:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200201:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200201:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200201:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200201:0710", + "P": 0.0, + "G(i)": 3.5, + "H_sun": 2.75, + "T2m": 5.36, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200201:0810", + "P": 309.42, + "G(i)": 75.05, + "H_sun": 11.6, + "T2m": 5.89, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200201:0910", + "P": 427.68, + "G(i)": 96.93, + "H_sun": 19.05, + "T2m": 7.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200201:1010", + "P": 321.42, + "G(i)": 76.95, + "H_sun": 24.54, + "T2m": 8.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200201:1110", + "P": 258.42, + "G(i)": 64.9, + "H_sun": 27.49, + "T2m": 9.65, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200201:1210", + "P": 492.3, + "G(i)": 110.33, + "H_sun": 27.54, + "T2m": 10.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200201:1310", + "P": 664.14, + "G(i)": 142.91, + "H_sun": 24.67, + "T2m": 10.86, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:1410", + "P": 433.92, + "G(i)": 99.28, + "H_sun": 19.26, + "T2m": 10.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200201:1510", + "P": 483.36, + "G(i)": 107.86, + "H_sun": 11.86, + "T2m": 10.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:1610", + "P": 0.0, + "G(i)": 3.5, + "H_sun": 3.05, + "T2m": 10.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.98, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200201:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.04, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200201:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200201:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200201:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200201:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200202:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200202:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200202:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200202:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.95, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.24, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200202:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200202:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200202:0710", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 2.94, + "T2m": 3.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:0810", + "P": 459.9, + "G(i)": 108.04, + "H_sun": 11.82, + "T2m": 5.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200202:0910", + "P": 711.54, + "G(i)": 150.3, + "H_sun": 19.29, + "T2m": 6.75, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200202:1010", + "P": 831.18, + "G(i)": 173.63, + "H_sun": 24.8, + "T2m": 9.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200202:1110", + "P": 993.18, + "G(i)": 205.25, + "H_sun": 27.77, + "T2m": 11.45, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200202:1210", + "P": 2027.4, + "G(i)": 404.66, + "H_sun": 27.83, + "T2m": 13.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:1310", + "P": 2958.0, + "G(i)": 594.44, + "H_sun": 24.96, + "T2m": 13.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200202:1410", + "P": 3209.7, + "G(i)": 646.19, + "H_sun": 19.53, + "T2m": 14.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200202:1510", + "P": 2470.86, + "G(i)": 488.99, + "H_sun": 12.12, + "T2m": 13.74, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200202:1610", + "P": 18.72, + "G(i)": 12.24, + "H_sun": 3.29, + "T2m": 12.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200202:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200202:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200202:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.55, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200202:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200202:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200202:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200203:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200203:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.05, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200203:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200203:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200203:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.66, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200203:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200203:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200203:0710", + "P": 19.74, + "G(i)": 12.24, + "H_sun": 3.14, + "T2m": 4.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200203:0810", + "P": 658.5, + "G(i)": 158.98, + "H_sun": 12.04, + "T2m": 6.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200203:0910", + "P": 1855.2, + "G(i)": 376.11, + "H_sun": 19.53, + "T2m": 9.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200203:1010", + "P": 2859.72, + "G(i)": 571.35, + "H_sun": 25.07, + "T2m": 12.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200203:1110", + "P": 3279.54, + "G(i)": 663.58, + "H_sun": 28.06, + "T2m": 14.62, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200203:1210", + "P": 4030.32, + "G(i)": 840.25, + "H_sun": 28.12, + "T2m": 16.84, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200203:1310", + "P": 3652.26, + "G(i)": 767.29, + "H_sun": 25.24, + "T2m": 18.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200203:1410", + "P": 3683.88, + "G(i)": 779.38, + "H_sun": 19.81, + "T2m": 19.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200203:1510", + "P": 2669.4, + "G(i)": 550.25, + "H_sun": 12.38, + "T2m": 19.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200203:1610", + "P": 26.76, + "G(i)": 14.87, + "H_sun": 3.53, + "T2m": 18.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200203:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.46, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200203:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200203:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.41, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200203:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.63, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200203:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200203:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200203:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200204:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.63, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200204:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.89, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200204:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200204:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.64, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200204:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.57, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200204:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.82, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200204:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.65, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200204:0710", + "P": 31.86, + "G(i)": 15.74, + "H_sun": 3.35, + "T2m": 8.08, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200204:0810", + "P": 778.86, + "G(i)": 196.28, + "H_sun": 12.26, + "T2m": 8.35, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200204:0910", + "P": 2202.66, + "G(i)": 445.52, + "H_sun": 19.78, + "T2m": 12.3, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200204:1010", + "P": 3253.62, + "G(i)": 640.03, + "H_sun": 25.34, + "T2m": 14.22, + "WS10m": 4.34, + "Int": 0.0 + }, + { + "time": "20200204:1110", + "P": 4043.1, + "G(i)": 792.29, + "H_sun": 28.35, + "T2m": 13.92, + "WS10m": 5.17, + "Int": 0.0 + }, + { + "time": "20200204:1210", + "P": 4441.68, + "G(i)": 867.65, + "H_sun": 28.42, + "T2m": 13.37, + "WS10m": 5.93, + "Int": 0.0 + }, + { + "time": "20200204:1310", + "P": 4597.08, + "G(i)": 901.34, + "H_sun": 25.54, + "T2m": 12.65, + "WS10m": 5.1, + "Int": 0.0 + }, + { + "time": "20200204:1410", + "P": 4255.2, + "G(i)": 828.92, + "H_sun": 20.08, + "T2m": 12.05, + "WS10m": 4.69, + "Int": 0.0 + }, + { + "time": "20200204:1510", + "P": 3295.5, + "G(i)": 634.0, + "H_sun": 12.64, + "T2m": 11.32, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200204:1610", + "P": 38.1, + "G(i)": 17.49, + "H_sun": 3.78, + "T2m": 10.1, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200204:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.73, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200204:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.77, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200204:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.56, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200204:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200204:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.93, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200204:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200204:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.73, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200205:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200205:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.82, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200205:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.09, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200205:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200205:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.22, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200205:0710", + "P": 40.44, + "G(i)": 17.49, + "H_sun": 3.56, + "T2m": -0.05, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200205:0810", + "P": 833.7, + "G(i)": 205.0, + "H_sun": 12.49, + "T2m": 1.49, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:0910", + "P": 2287.26, + "G(i)": 455.17, + "H_sun": 20.04, + "T2m": 6.12, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200205:1010", + "P": 3328.68, + "G(i)": 656.19, + "H_sun": 25.62, + "T2m": 9.67, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:1110", + "P": 4012.44, + "G(i)": 804.21, + "H_sun": 28.65, + "T2m": 11.76, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200205:1210", + "P": 4409.52, + "G(i)": 895.77, + "H_sun": 28.72, + "T2m": 12.96, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200205:1310", + "P": 4492.14, + "G(i)": 917.47, + "H_sun": 25.83, + "T2m": 13.47, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200205:1410", + "P": 4057.68, + "G(i)": 823.93, + "H_sun": 20.36, + "T2m": 13.45, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200205:1510", + "P": 3260.64, + "G(i)": 651.33, + "H_sun": 12.9, + "T2m": 12.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200205:1610", + "P": 48.12, + "G(i)": 20.11, + "H_sun": 4.02, + "T2m": 11.07, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200205:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.52, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200205:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.68, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200205:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.61, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200205:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.8, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200205:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.41, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200205:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200206:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.48, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200206:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.06, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200206:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.11, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200206:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.66, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200206:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200206:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200206:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200206:0710", + "P": 20.4, + "G(i)": 12.24, + "H_sun": 3.77, + "T2m": 0.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200206:0810", + "P": 642.66, + "G(i)": 145.81, + "H_sun": 12.73, + "T2m": 0.93, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200206:0910", + "P": 2068.2, + "G(i)": 407.49, + "H_sun": 20.3, + "T2m": 3.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200206:1010", + "P": 3021.0, + "G(i)": 586.98, + "H_sun": 25.9, + "T2m": 5.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200206:1110", + "P": 3588.48, + "G(i)": 708.62, + "H_sun": 28.95, + "T2m": 7.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200206:1210", + "P": 3883.44, + "G(i)": 779.49, + "H_sun": 29.03, + "T2m": 8.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200206:1310", + "P": 4233.42, + "G(i)": 862.45, + "H_sun": 26.13, + "T2m": 9.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200206:1410", + "P": 4018.92, + "G(i)": 806.02, + "H_sun": 20.65, + "T2m": 9.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200206:1510", + "P": 3218.76, + "G(i)": 629.35, + "H_sun": 13.17, + "T2m": 9.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200206:1610", + "P": 56.04, + "G(i)": 21.86, + "H_sun": 4.27, + "T2m": 8.41, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200206:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.55, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200206:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200206:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200206:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200206:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200206:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200206:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200207:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.5, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200207:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200207:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.15, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.09, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200207:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.04, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0710", + "P": 51.6, + "G(i)": 20.11, + "H_sun": 3.99, + "T2m": -1.19, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0810", + "P": 827.1, + "G(i)": 201.63, + "H_sun": 12.97, + "T2m": -0.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0910", + "P": 2231.28, + "G(i)": 441.74, + "H_sun": 20.56, + "T2m": 3.06, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200207:1010", + "P": 3277.86, + "G(i)": 646.05, + "H_sun": 26.19, + "T2m": 5.9, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200207:1110", + "P": 3903.78, + "G(i)": 787.94, + "H_sun": 29.26, + "T2m": 8.07, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200207:1210", + "P": 4235.04, + "G(i)": 869.74, + "H_sun": 29.34, + "T2m": 9.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:1310", + "P": 4361.22, + "G(i)": 897.81, + "H_sun": 26.44, + "T2m": 10.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200207:1410", + "P": 3929.88, + "G(i)": 797.19, + "H_sun": 20.93, + "T2m": 11.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200207:1510", + "P": 3149.58, + "G(i)": 623.81, + "H_sun": 13.43, + "T2m": 11.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200207:1610", + "P": 62.82, + "G(i)": 23.61, + "H_sun": 4.52, + "T2m": 9.89, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200207:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.62, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200207:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.8, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200207:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200207:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.06, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200207:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200207:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.24, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200207:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200208:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200208:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200208:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200208:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200208:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200208:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200208:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200208:0710", + "P": 55.08, + "G(i)": 20.99, + "H_sun": 4.22, + "T2m": -0.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200208:0810", + "P": 549.0, + "G(i)": 122.76, + "H_sun": 13.22, + "T2m": 0.91, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200208:0910", + "P": 948.3, + "G(i)": 192.02, + "H_sun": 20.84, + "T2m": 3.61, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200208:1010", + "P": 2780.64, + "G(i)": 542.66, + "H_sun": 26.49, + "T2m": 6.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200208:1110", + "P": 2862.78, + "G(i)": 561.62, + "H_sun": 29.57, + "T2m": 7.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200208:1210", + "P": 2659.38, + "G(i)": 523.79, + "H_sun": 29.66, + "T2m": 8.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200208:1310", + "P": 3752.64, + "G(i)": 754.87, + "H_sun": 26.74, + "T2m": 9.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200208:1410", + "P": 3616.68, + "G(i)": 722.21, + "H_sun": 21.22, + "T2m": 9.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200208:1510", + "P": 2111.34, + "G(i)": 410.29, + "H_sun": 13.7, + "T2m": 9.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200208:1610", + "P": 66.9, + "G(i)": 24.48, + "H_sun": 4.77, + "T2m": 8.81, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200208:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.39, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200208:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.96, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200208:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.59, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200208:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200208:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200208:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200208:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200209:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200209:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200209:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200209:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.95, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200209:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200209:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.54, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200209:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200209:0710", + "P": 54.66, + "G(i)": 20.99, + "H_sun": 4.45, + "T2m": 0.94, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200209:0810", + "P": 578.22, + "G(i)": 129.11, + "H_sun": 13.47, + "T2m": 1.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200209:0910", + "P": 716.22, + "G(i)": 149.49, + "H_sun": 21.11, + "T2m": 4.61, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200209:1010", + "P": 535.92, + "G(i)": 116.82, + "H_sun": 26.79, + "T2m": 6.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200209:1110", + "P": 408.9, + "G(i)": 93.64, + "H_sun": 29.88, + "T2m": 8.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200209:1210", + "P": 320.22, + "G(i)": 76.95, + "H_sun": 29.98, + "T2m": 9.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200209:1310", + "P": 1264.08, + "G(i)": 253.73, + "H_sun": 27.05, + "T2m": 9.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200209:1410", + "P": 347.88, + "G(i)": 82.51, + "H_sun": 21.51, + "T2m": 10.13, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200209:1510", + "P": 541.56, + "G(i)": 118.49, + "H_sun": 13.97, + "T2m": 10.0, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200209:1610", + "P": 66.72, + "G(i)": 24.48, + "H_sun": 5.02, + "T2m": 9.3, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200209:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200209:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.8, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200209:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.32, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200209:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200209:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200209:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200209:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.47, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200210:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200210:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.31, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200210:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200210:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200210:0710", + "P": 65.4, + "G(i)": 23.61, + "H_sun": 4.69, + "T2m": 2.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200210:0810", + "P": 459.24, + "G(i)": 103.48, + "H_sun": 13.73, + "T2m": 3.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:0910", + "P": 609.42, + "G(i)": 129.17, + "H_sun": 21.39, + "T2m": 3.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200210:1010", + "P": 2686.8, + "G(i)": 517.61, + "H_sun": 27.09, + "T2m": 5.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:1110", + "P": 3943.08, + "G(i)": 777.11, + "H_sun": 30.2, + "T2m": 6.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200210:1210", + "P": 4345.32, + "G(i)": 871.35, + "H_sun": 30.3, + "T2m": 9.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200210:1310", + "P": 4360.92, + "G(i)": 886.14, + "H_sun": 27.36, + "T2m": 11.48, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200210:1410", + "P": 3821.28, + "G(i)": 773.47, + "H_sun": 21.81, + "T2m": 13.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:1510", + "P": 2928.12, + "G(i)": 586.03, + "H_sun": 14.24, + "T2m": 14.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:1610", + "P": 47.52, + "G(i)": 20.11, + "H_sun": 5.27, + "T2m": 13.16, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200210:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200210:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200210:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.8, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200210:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.79, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200210:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.4, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200210:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200211:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200211:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.8, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200211:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.83, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200211:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200211:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200211:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200211:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.65, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200211:0710", + "P": 42.12, + "G(i)": 18.36, + "H_sun": 4.93, + "T2m": 7.57, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200211:0810", + "P": 840.6, + "G(i)": 210.48, + "H_sun": 13.99, + "T2m": 9.33, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200211:0910", + "P": 2198.64, + "G(i)": 451.3, + "H_sun": 21.68, + "T2m": 11.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200211:1010", + "P": 3215.46, + "G(i)": 655.61, + "H_sun": 27.4, + "T2m": 14.45, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200211:1110", + "P": 3879.9, + "G(i)": 804.07, + "H_sun": 30.53, + "T2m": 16.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200211:1210", + "P": 4301.16, + "G(i)": 880.13, + "H_sun": 30.63, + "T2m": 16.8, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200211:1310", + "P": 4451.46, + "G(i)": 902.37, + "H_sun": 27.68, + "T2m": 16.84, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200211:1410", + "P": 3999.24, + "G(i)": 803.52, + "H_sun": 22.1, + "T2m": 16.63, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200211:1510", + "P": 3196.74, + "G(i)": 637.93, + "H_sun": 14.52, + "T2m": 16.03, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200211:1610", + "P": 68.34, + "G(i)": 25.36, + "H_sun": 5.53, + "T2m": 14.77, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200211:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200211:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200211:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200211:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200211:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200211:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.31, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200211:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.37, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200212:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.47, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200212:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200212:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200212:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200212:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.03, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200212:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200212:0710", + "P": 50.16, + "G(i)": 20.11, + "H_sun": 5.17, + "T2m": 3.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200212:0810", + "P": 900.18, + "G(i)": 218.58, + "H_sun": 14.25, + "T2m": 3.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200212:0910", + "P": 2340.24, + "G(i)": 464.64, + "H_sun": 21.97, + "T2m": 6.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:1010", + "P": 3445.8, + "G(i)": 681.57, + "H_sun": 27.71, + "T2m": 8.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200212:1110", + "P": 4126.98, + "G(i)": 834.52, + "H_sun": 30.86, + "T2m": 10.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:1210", + "P": 4397.82, + "G(i)": 899.88, + "H_sun": 30.96, + "T2m": 11.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200212:1310", + "P": 4571.16, + "G(i)": 938.38, + "H_sun": 28.0, + "T2m": 12.47, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200212:1410", + "P": 4090.68, + "G(i)": 832.78, + "H_sun": 22.4, + "T2m": 12.74, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200212:1510", + "P": 3329.28, + "G(i)": 666.42, + "H_sun": 14.79, + "T2m": 12.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200212:1610", + "P": 62.28, + "G(i)": 23.61, + "H_sun": 5.78, + "T2m": 11.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200212:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.1, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200212:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200212:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200212:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.45, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200212:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200212:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.4, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200213:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200213:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.72, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200213:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200213:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200213:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200213:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200213:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200213:0710", + "P": 93.24, + "G(i)": 29.73, + "H_sun": 5.42, + "T2m": 1.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200213:0810", + "P": 889.2, + "G(i)": 213.95, + "H_sun": 14.52, + "T2m": 2.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200213:0910", + "P": 2234.82, + "G(i)": 445.74, + "H_sun": 22.26, + "T2m": 5.53, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200213:1010", + "P": 3289.68, + "G(i)": 653.0, + "H_sun": 28.03, + "T2m": 7.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200213:1110", + "P": 4005.48, + "G(i)": 804.76, + "H_sun": 31.19, + "T2m": 9.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200213:1210", + "P": 4238.82, + "G(i)": 860.73, + "H_sun": 31.29, + "T2m": 10.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200213:1310", + "P": 4145.88, + "G(i)": 842.31, + "H_sun": 28.32, + "T2m": 10.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200213:1410", + "P": 1422.0, + "G(i)": 283.56, + "H_sun": 22.7, + "T2m": 11.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200213:1510", + "P": 2644.38, + "G(i)": 516.21, + "H_sun": 15.07, + "T2m": 10.85, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200213:1610", + "P": 793.86, + "G(i)": 164.52, + "H_sun": 6.04, + "T2m": 9.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200213:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.18, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200213:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.75, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200213:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200213:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200213:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.57, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200213:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200213:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200214:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.09, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200214:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200214:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200214:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200214:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.05, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.36, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0710", + "P": 73.56, + "G(i)": 25.36, + "H_sun": 5.68, + "T2m": 1.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200214:0810", + "P": 885.54, + "G(i)": 207.52, + "H_sun": 14.8, + "T2m": 3.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0910", + "P": 2239.26, + "G(i)": 446.38, + "H_sun": 22.56, + "T2m": 6.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1010", + "P": 3331.5, + "G(i)": 665.75, + "H_sun": 28.35, + "T2m": 9.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200214:1110", + "P": 4031.22, + "G(i)": 824.84, + "H_sun": 31.53, + "T2m": 11.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1210", + "P": 4277.52, + "G(i)": 890.84, + "H_sun": 31.63, + "T2m": 12.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1310", + "P": 4424.52, + "G(i)": 927.47, + "H_sun": 28.64, + "T2m": 13.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200214:1410", + "P": 3976.68, + "G(i)": 817.22, + "H_sun": 23.0, + "T2m": 14.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200214:1510", + "P": 2766.66, + "G(i)": 552.81, + "H_sun": 15.34, + "T2m": 13.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200214:1610", + "P": 1454.52, + "G(i)": 293.1, + "H_sun": 6.29, + "T2m": 13.09, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200214:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.34, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200214:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.28, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200214:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.22, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200214:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.07, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200214:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200214:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200215:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.56, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200215:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200215:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.24, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200215:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200215:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200215:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200215:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200215:0710", + "P": 77.46, + "G(i)": 26.23, + "H_sun": 5.94, + "T2m": 1.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200215:0810", + "P": 888.0, + "G(i)": 207.74, + "H_sun": 15.08, + "T2m": 3.33, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200215:0910", + "P": 1955.64, + "G(i)": 389.78, + "H_sun": 22.86, + "T2m": 6.37, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200215:1010", + "P": 3284.52, + "G(i)": 657.66, + "H_sun": 28.68, + "T2m": 9.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200215:1110", + "P": 4005.06, + "G(i)": 821.02, + "H_sun": 31.87, + "T2m": 10.99, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200215:1210", + "P": 4285.44, + "G(i)": 886.14, + "H_sun": 31.97, + "T2m": 12.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200215:1310", + "P": 4436.04, + "G(i)": 922.2, + "H_sun": 28.96, + "T2m": 13.15, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200215:1410", + "P": 3921.18, + "G(i)": 803.81, + "H_sun": 23.3, + "T2m": 13.47, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200215:1510", + "P": 2639.46, + "G(i)": 524.07, + "H_sun": 15.62, + "T2m": 13.38, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200215:1610", + "P": 924.96, + "G(i)": 190.96, + "H_sun": 6.55, + "T2m": 12.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200215:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.47, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200215:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.76, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200215:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.07, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200215:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200215:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200215:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.45, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200215:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.68, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200216:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.71, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200216:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.09, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200216:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200216:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200216:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200216:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:0710", + "P": 96.9, + "G(i)": 30.61, + "H_sun": 6.2, + "T2m": 2.42, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200216:0810", + "P": 885.3, + "G(i)": 206.33, + "H_sun": 15.36, + "T2m": 3.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200216:0910", + "P": 2173.92, + "G(i)": 431.42, + "H_sun": 23.17, + "T2m": 5.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200216:1010", + "P": 3106.56, + "G(i)": 612.37, + "H_sun": 29.01, + "T2m": 7.86, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200216:1110", + "P": 3092.94, + "G(i)": 611.23, + "H_sun": 32.21, + "T2m": 9.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200216:1210", + "P": 3007.38, + "G(i)": 596.82, + "H_sun": 32.31, + "T2m": 10.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:1310", + "P": 2635.5, + "G(i)": 522.21, + "H_sun": 29.29, + "T2m": 10.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200216:1410", + "P": 1010.4, + "G(i)": 207.91, + "H_sun": 23.6, + "T2m": 11.03, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200216:1510", + "P": 841.62, + "G(i)": 175.24, + "H_sun": 15.9, + "T2m": 11.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:1610", + "P": 558.6, + "G(i)": 121.66, + "H_sun": 6.8, + "T2m": 10.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200216:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200216:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200216:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.08, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200216:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200216:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200216:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.17, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200216:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.95, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200217:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200217:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200217:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.44, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200217:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200217:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200217:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200217:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200217:0710", + "P": 75.48, + "G(i)": 26.23, + "H_sun": 6.47, + "T2m": 6.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200217:0810", + "P": 376.32, + "G(i)": 87.07, + "H_sun": 15.65, + "T2m": 6.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200217:0910", + "P": 290.76, + "G(i)": 70.46, + "H_sun": 23.48, + "T2m": 6.81, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:1010", + "P": 356.94, + "G(i)": 83.44, + "H_sun": 29.34, + "T2m": 7.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:1110", + "P": 390.54, + "G(i)": 89.93, + "H_sun": 32.56, + "T2m": 7.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200217:1210", + "P": 493.2, + "G(i)": 109.4, + "H_sun": 32.66, + "T2m": 8.07, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1310", + "P": 914.58, + "G(i)": 187.69, + "H_sun": 29.62, + "T2m": 8.32, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1410", + "P": 418.74, + "G(i)": 95.49, + "H_sun": 23.91, + "T2m": 8.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200217:1510", + "P": 372.84, + "G(i)": 86.6, + "H_sun": 16.18, + "T2m": 8.33, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1610", + "P": 749.34, + "G(i)": 155.24, + "H_sun": 7.06, + "T2m": 8.12, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.68, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200217:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200217:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200217:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200217:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.76, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200218:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.38, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200218:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.11, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200218:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200218:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.28, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200218:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200218:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200218:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200218:0710", + "P": 104.4, + "G(i)": 32.35, + "H_sun": 6.74, + "T2m": 3.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:0810", + "P": 778.08, + "G(i)": 171.46, + "H_sun": 15.94, + "T2m": 5.35, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200218:0910", + "P": 1993.26, + "G(i)": 397.9, + "H_sun": 23.8, + "T2m": 9.15, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:1010", + "P": 3425.58, + "G(i)": 684.65, + "H_sun": 29.68, + "T2m": 11.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:1110", + "P": 4124.7, + "G(i)": 845.21, + "H_sun": 32.91, + "T2m": 13.03, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200218:1210", + "P": 4346.82, + "G(i)": 907.0, + "H_sun": 33.0, + "T2m": 14.09, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200218:1310", + "P": 4471.44, + "G(i)": 944.14, + "H_sun": 29.95, + "T2m": 14.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200218:1410", + "P": 3988.14, + "G(i)": 826.63, + "H_sun": 24.21, + "T2m": 14.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200218:1510", + "P": 3226.02, + "G(i)": 654.91, + "H_sun": 16.45, + "T2m": 14.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200218:1610", + "P": 1830.12, + "G(i)": 368.26, + "H_sun": 7.32, + "T2m": 13.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200218:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200218:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200218:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.04, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200218:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200218:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200218:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200219:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200219:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.2, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200219:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.43, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200219:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.72, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200219:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200219:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200219:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200219:0710", + "P": 88.2, + "G(i)": 28.86, + "H_sun": 7.02, + "T2m": 3.74, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200219:0810", + "P": 886.56, + "G(i)": 197.54, + "H_sun": 16.24, + "T2m": 3.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200219:0910", + "P": 1070.58, + "G(i)": 216.8, + "H_sun": 24.12, + "T2m": 6.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200219:1010", + "P": 3239.7, + "G(i)": 642.18, + "H_sun": 30.02, + "T2m": 9.25, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200219:1110", + "P": 4160.04, + "G(i)": 845.05, + "H_sun": 33.26, + "T2m": 11.71, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200219:1210", + "P": 4444.5, + "G(i)": 912.9, + "H_sun": 33.36, + "T2m": 13.36, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200219:1310", + "P": 4540.86, + "G(i)": 935.47, + "H_sun": 30.28, + "T2m": 14.48, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200219:1410", + "P": 4152.24, + "G(i)": 841.2, + "H_sun": 24.52, + "T2m": 15.1, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200219:1510", + "P": 3351.18, + "G(i)": 668.43, + "H_sun": 16.73, + "T2m": 14.95, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200219:1610", + "P": 1937.34, + "G(i)": 385.4, + "H_sun": 7.58, + "T2m": 13.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200219:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200219:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200219:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200219:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200219:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200219:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200219:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200220:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.8, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200220:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.81, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200220:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200220:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.82, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200220:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200220:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200220:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200220:0710", + "P": 159.72, + "G(i)": 43.72, + "H_sun": 7.3, + "T2m": 2.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200220:0810", + "P": 952.98, + "G(i)": 216.76, + "H_sun": 16.54, + "T2m": 4.32, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200220:0910", + "P": 2351.1, + "G(i)": 469.71, + "H_sun": 24.44, + "T2m": 7.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200220:1010", + "P": 3243.9, + "G(i)": 645.16, + "H_sun": 30.37, + "T2m": 9.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200220:1110", + "P": 4060.74, + "G(i)": 824.52, + "H_sun": 33.62, + "T2m": 11.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200220:1210", + "P": 3958.5, + "G(i)": 806.2, + "H_sun": 33.71, + "T2m": 12.12, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200220:1310", + "P": 4457.52, + "G(i)": 924.74, + "H_sun": 30.62, + "T2m": 12.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200220:1410", + "P": 4090.14, + "G(i)": 838.0, + "H_sun": 24.82, + "T2m": 13.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200220:1510", + "P": 3526.08, + "G(i)": 709.39, + "H_sun": 17.01, + "T2m": 13.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200220:1610", + "P": 1798.68, + "G(i)": 355.77, + "H_sun": 7.83, + "T2m": 12.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200220:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.04, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200220:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200220:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.67, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200220:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.14, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200220:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200220:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200220:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200221:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200221:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200221:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200221:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.29, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200221:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200221:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200221:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:0710", + "P": 81.54, + "G(i)": 27.11, + "H_sun": 7.59, + "T2m": 1.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200221:0810", + "P": 1011.24, + "G(i)": 234.05, + "H_sun": 16.85, + "T2m": 2.94, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200221:0910", + "P": 2322.66, + "G(i)": 463.48, + "H_sun": 24.77, + "T2m": 6.8, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200221:1010", + "P": 3038.64, + "G(i)": 604.16, + "H_sun": 30.72, + "T2m": 9.68, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200221:1110", + "P": 2519.82, + "G(i)": 501.12, + "H_sun": 33.98, + "T2m": 11.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1210", + "P": 3408.66, + "G(i)": 692.43, + "H_sun": 34.07, + "T2m": 13.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200221:1310", + "P": 3415.02, + "G(i)": 695.59, + "H_sun": 30.96, + "T2m": 14.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1410", + "P": 3808.5, + "G(i)": 783.75, + "H_sun": 25.13, + "T2m": 14.87, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1510", + "P": 3205.68, + "G(i)": 647.57, + "H_sun": 17.29, + "T2m": 14.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200221:1610", + "P": 2096.28, + "G(i)": 418.2, + "H_sun": 8.09, + "T2m": 13.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200221:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.97, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200221:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.81, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200221:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200221:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.76, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200221:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200221:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.59, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200222:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200222:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200222:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200222:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200222:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200222:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200222:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200222:0710", + "P": 121.62, + "G(i)": 35.85, + "H_sun": 7.88, + "T2m": 2.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200222:0810", + "P": 999.18, + "G(i)": 228.44, + "H_sun": 17.15, + "T2m": 3.69, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200222:0910", + "P": 2320.62, + "G(i)": 461.47, + "H_sun": 25.1, + "T2m": 6.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200222:1010", + "P": 3467.46, + "G(i)": 693.43, + "H_sun": 31.07, + "T2m": 8.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200222:1110", + "P": 4069.74, + "G(i)": 831.65, + "H_sun": 34.35, + "T2m": 10.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200222:1210", + "P": 4317.6, + "G(i)": 895.16, + "H_sun": 34.43, + "T2m": 11.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200222:1310", + "P": 4482.54, + "G(i)": 931.94, + "H_sun": 31.29, + "T2m": 12.48, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200222:1410", + "P": 4058.82, + "G(i)": 830.91, + "H_sun": 25.44, + "T2m": 12.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200222:1510", + "P": 3230.16, + "G(i)": 645.83, + "H_sun": 17.58, + "T2m": 12.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200222:1610", + "P": 1722.48, + "G(i)": 341.98, + "H_sun": 8.35, + "T2m": 12.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200222:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200222:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200222:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.44, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200222:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200222:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.18, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200222:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200222:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200223:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200223:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.36, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200223:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.86, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200223:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.8, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200223:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200223:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200223:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200223:0710", + "P": 171.54, + "G(i)": 46.35, + "H_sun": 8.17, + "T2m": 3.88, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200223:0810", + "P": 620.94, + "G(i)": 134.79, + "H_sun": 17.47, + "T2m": 5.61, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200223:0910", + "P": 2013.54, + "G(i)": 402.04, + "H_sun": 25.44, + "T2m": 8.22, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200223:1010", + "P": 2767.92, + "G(i)": 547.12, + "H_sun": 31.42, + "T2m": 10.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200223:1110", + "P": 3049.8, + "G(i)": 609.94, + "H_sun": 34.71, + "T2m": 12.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200223:1210", + "P": 3965.46, + "G(i)": 813.63, + "H_sun": 34.79, + "T2m": 14.05, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200223:1310", + "P": 1511.22, + "G(i)": 307.05, + "H_sun": 31.63, + "T2m": 15.29, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200223:1410", + "P": 1829.52, + "G(i)": 367.43, + "H_sun": 25.75, + "T2m": 15.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200223:1510", + "P": 818.88, + "G(i)": 174.18, + "H_sun": 17.86, + "T2m": 15.73, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200223:1610", + "P": 388.92, + "G(i)": 91.45, + "H_sun": 8.61, + "T2m": 14.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200223:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.3, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200223:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200223:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.12, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200223:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.29, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200223:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200223:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.86, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200223:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.33, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200224:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.06, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.71, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200224:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200224:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.8, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200224:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:0710", + "P": 91.5, + "G(i)": 29.73, + "H_sun": 8.46, + "T2m": 5.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:0810", + "P": 1043.76, + "G(i)": 243.97, + "H_sun": 17.78, + "T2m": 7.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200224:0910", + "P": 2402.34, + "G(i)": 484.51, + "H_sun": 25.77, + "T2m": 10.42, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200224:1010", + "P": 3446.34, + "G(i)": 699.68, + "H_sun": 31.78, + "T2m": 12.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200224:1110", + "P": 4057.02, + "G(i)": 848.6, + "H_sun": 35.08, + "T2m": 15.09, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200224:1210", + "P": 4203.0, + "G(i)": 890.64, + "H_sun": 35.15, + "T2m": 16.63, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200224:1310", + "P": 4367.94, + "G(i)": 927.83, + "H_sun": 31.97, + "T2m": 17.69, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200224:1410", + "P": 4081.14, + "G(i)": 855.96, + "H_sun": 26.06, + "T2m": 18.19, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200224:1510", + "P": 3376.86, + "G(i)": 692.76, + "H_sun": 18.14, + "T2m": 18.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:1610", + "P": 2014.5, + "G(i)": 407.64, + "H_sun": 8.86, + "T2m": 16.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.22, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.96, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200224:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.93, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200224:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.07, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200224:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200224:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200225:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.22, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200225:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200225:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200225:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200225:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200225:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200225:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.48, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200225:0710", + "P": 12.66, + "G(i)": 10.2, + "H_sun": 8.76, + "T2m": 6.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200225:0810", + "P": 164.1, + "G(i)": 45.43, + "H_sun": 18.1, + "T2m": 7.46, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200225:0910", + "P": 622.14, + "G(i)": 133.74, + "H_sun": 26.11, + "T2m": 8.36, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200225:1010", + "P": 1028.52, + "G(i)": 210.13, + "H_sun": 32.14, + "T2m": 9.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200225:1110", + "P": 1652.34, + "G(i)": 328.42, + "H_sun": 35.45, + "T2m": 10.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200225:1210", + "P": 456.24, + "G(i)": 103.84, + "H_sun": 35.52, + "T2m": 11.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200225:1310", + "P": 604.56, + "G(i)": 132.58, + "H_sun": 32.32, + "T2m": 11.99, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200225:1410", + "P": 636.84, + "G(i)": 138.56, + "H_sun": 26.37, + "T2m": 12.23, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200225:1510", + "P": 2063.94, + "G(i)": 403.69, + "H_sun": 18.42, + "T2m": 12.06, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200225:1610", + "P": 286.5, + "G(i)": 70.48, + "H_sun": 9.12, + "T2m": 11.27, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200225:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200225:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200225:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200225:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200225:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200225:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200225:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200226:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200226:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200226:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200226:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.51, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200226:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.54, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200226:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.31, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200226:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.2, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200226:0710", + "P": 54.54, + "G(i)": 23.24, + "H_sun": 9.07, + "T2m": 4.05, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200226:0810", + "P": 1119.78, + "G(i)": 260.07, + "H_sun": 18.42, + "T2m": 7.16, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200226:0910", + "P": 2539.2, + "G(i)": 506.16, + "H_sun": 26.46, + "T2m": 11.51, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200226:1010", + "P": 3780.84, + "G(i)": 737.02, + "H_sun": 32.51, + "T2m": 12.4, + "WS10m": 4.69, + "Int": 0.0 + }, + { + "time": "20200226:1110", + "P": 4432.68, + "G(i)": 863.09, + "H_sun": 35.83, + "T2m": 11.58, + "WS10m": 5.24, + "Int": 0.0 + }, + { + "time": "20200226:1210", + "P": 4645.68, + "G(i)": 904.06, + "H_sun": 35.88, + "T2m": 11.46, + "WS10m": 5.79, + "Int": 0.0 + }, + { + "time": "20200226:1310", + "P": 4951.38, + "G(i)": 959.2, + "H_sun": 32.66, + "T2m": 11.42, + "WS10m": 6.9, + "Int": 0.0 + }, + { + "time": "20200226:1410", + "P": 4630.26, + "G(i)": 887.92, + "H_sun": 26.68, + "T2m": 10.75, + "WS10m": 7.03, + "Int": 0.0 + }, + { + "time": "20200226:1510", + "P": 3671.94, + "G(i)": 696.09, + "H_sun": 18.7, + "T2m": 10.21, + "WS10m": 6.62, + "Int": 0.0 + }, + { + "time": "20200226:1610", + "P": 884.4, + "G(i)": 179.54, + "H_sun": 9.38, + "T2m": 9.27, + "WS10m": 5.52, + "Int": 0.0 + }, + { + "time": "20200226:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.98, + "WS10m": 4.62, + "Int": 0.0 + }, + { + "time": "20200226:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.89, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200226:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.65, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200226:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.69, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200226:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.57, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200226:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.87, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200226:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.34, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200227:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200227:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200227:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.9, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200227:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200227:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.75, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200227:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200227:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.23, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200227:0710", + "P": 63.96, + "G(i)": 26.47, + "H_sun": 9.37, + "T2m": 1.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200227:0810", + "P": 1105.92, + "G(i)": 245.41, + "H_sun": 18.75, + "T2m": 2.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200227:0910", + "P": 2311.38, + "G(i)": 452.6, + "H_sun": 26.81, + "T2m": 5.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200227:1010", + "P": 3745.14, + "G(i)": 733.4, + "H_sun": 32.88, + "T2m": 7.77, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200227:1110", + "P": 4142.28, + "G(i)": 823.7, + "H_sun": 36.21, + "T2m": 9.36, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200227:1210", + "P": 4393.44, + "G(i)": 887.23, + "H_sun": 36.25, + "T2m": 10.55, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200227:1310", + "P": 3227.16, + "G(i)": 637.7, + "H_sun": 33.0, + "T2m": 11.06, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200227:1410", + "P": 979.08, + "G(i)": 201.12, + "H_sun": 26.99, + "T2m": 10.68, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200227:1510", + "P": 3136.26, + "G(i)": 605.2, + "H_sun": 18.98, + "T2m": 9.82, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200227:1610", + "P": 2317.56, + "G(i)": 443.64, + "H_sun": 9.63, + "T2m": 8.43, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200227:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.7, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200227:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200227:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200227:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.11, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200227:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200227:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200227:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200228:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200228:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200228:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200228:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200228:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.76, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200228:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.63, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200228:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200228:0710", + "P": 99.66, + "G(i)": 35.21, + "H_sun": 9.68, + "T2m": 1.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200228:0810", + "P": 1156.92, + "G(i)": 265.37, + "H_sun": 19.07, + "T2m": 4.91, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200228:0910", + "P": 2559.12, + "G(i)": 515.22, + "H_sun": 27.16, + "T2m": 8.14, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200228:1010", + "P": 3711.96, + "G(i)": 743.76, + "H_sun": 33.25, + "T2m": 9.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200228:1110", + "P": 4354.14, + "G(i)": 882.85, + "H_sun": 36.59, + "T2m": 10.7, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200228:1210", + "P": 4449.54, + "G(i)": 904.79, + "H_sun": 36.62, + "T2m": 11.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200228:1310", + "P": 4723.32, + "G(i)": 966.02, + "H_sun": 33.35, + "T2m": 11.98, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200228:1410", + "P": 4391.22, + "G(i)": 887.09, + "H_sun": 27.31, + "T2m": 12.35, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200228:1510", + "P": 3655.2, + "G(i)": 724.25, + "H_sun": 19.26, + "T2m": 12.34, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200228:1610", + "P": 2173.14, + "G(i)": 426.69, + "H_sun": 9.89, + "T2m": 11.63, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200228:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.63, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200228:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.68, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200228:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.74, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200228:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.54, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200228:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200228:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200228:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200229:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200229:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200229:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200229:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200229:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200229:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200229:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.14, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200229:0710", + "P": 251.58, + "G(i)": 62.99, + "H_sun": 9.68, + "T2m": 2.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200229:0810", + "P": 595.38, + "G(i)": 127.99, + "H_sun": 19.07, + "T2m": 4.82, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200229:0910", + "P": 1152.36, + "G(i)": 232.16, + "H_sun": 27.16, + "T2m": 7.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200229:1010", + "P": 3074.76, + "G(i)": 602.79, + "H_sun": 33.25, + "T2m": 8.73, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200229:1110", + "P": 1421.76, + "G(i)": 283.96, + "H_sun": 36.59, + "T2m": 9.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200229:1210", + "P": 947.1, + "G(i)": 195.49, + "H_sun": 36.62, + "T2m": 9.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200229:1310", + "P": 258.12, + "G(i)": 64.9, + "H_sun": 33.35, + "T2m": 10.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200229:1410", + "P": 225.84, + "G(i)": 58.41, + "H_sun": 27.31, + "T2m": 9.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200229:1510", + "P": 1073.4, + "G(i)": 216.18, + "H_sun": 19.26, + "T2m": 9.45, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200229:1610", + "P": 65.34, + "G(i)": 24.1, + "H_sun": 9.89, + "T2m": 8.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200229:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200229:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.93, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200229:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.9, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200229:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200229:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.75, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200229:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200229:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200301:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200301:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200301:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200301:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200301:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.93, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200301:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200301:0710", + "P": 84.48, + "G(i)": 27.81, + "H_sun": 10.0, + "T2m": 1.71, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200301:0810", + "P": 989.1, + "G(i)": 207.62, + "H_sun": 19.4, + "T2m": 2.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:0910", + "P": 1886.34, + "G(i)": 365.37, + "H_sun": 27.51, + "T2m": 3.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200301:1010", + "P": 1809.36, + "G(i)": 350.04, + "H_sun": 33.62, + "T2m": 4.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:1110", + "P": 744.3, + "G(i)": 154.83, + "H_sun": 36.97, + "T2m": 5.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200301:1210", + "P": 1697.76, + "G(i)": 332.14, + "H_sun": 36.99, + "T2m": 6.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:1310", + "P": 3144.18, + "G(i)": 616.23, + "H_sun": 33.69, + "T2m": 7.24, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:1410", + "P": 1572.9, + "G(i)": 308.48, + "H_sun": 27.62, + "T2m": 7.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200301:1510", + "P": 2766.24, + "G(i)": 536.44, + "H_sun": 19.54, + "T2m": 8.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200301:1610", + "P": 310.32, + "G(i)": 74.3, + "H_sun": 10.15, + "T2m": 8.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200301:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.64, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200301:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200301:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200301:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200301:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.76, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200301:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200301:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200302:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200302:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200302:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200302:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200302:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200302:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.2, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200302:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.98, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200302:0710", + "P": 127.56, + "G(i)": 37.08, + "H_sun": 10.31, + "T2m": 2.49, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200302:0810", + "P": 344.76, + "G(i)": 79.73, + "H_sun": 19.74, + "T2m": 3.43, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200302:0910", + "P": 275.7, + "G(i)": 66.75, + "H_sun": 27.86, + "T2m": 4.04, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200302:1010", + "P": 368.34, + "G(i)": 84.37, + "H_sun": 33.99, + "T2m": 4.15, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200302:1110", + "P": 492.78, + "G(i)": 107.54, + "H_sun": 37.35, + "T2m": 4.16, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200302:1210", + "P": 457.56, + "G(i)": 101.05, + "H_sun": 37.37, + "T2m": 4.33, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200302:1310", + "P": 194.1, + "G(i)": 50.99, + "H_sun": 34.04, + "T2m": 4.84, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200302:1410", + "P": 254.76, + "G(i)": 63.04, + "H_sun": 27.93, + "T2m": 5.43, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200302:1510", + "P": 70.5, + "G(i)": 25.03, + "H_sun": 19.82, + "T2m": 5.72, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200302:1610", + "P": 156.6, + "G(i)": 43.57, + "H_sun": 10.4, + "T2m": 5.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200302:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.36, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200302:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.93, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200302:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.85, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200302:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200302:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200302:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200302:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.58, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200303:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200303:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200303:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200303:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.03, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200303:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.5, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200303:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200303:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.68, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200303:0710", + "P": 205.86, + "G(i)": 58.44, + "H_sun": 10.63, + "T2m": 3.25, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200303:0810", + "P": 1237.62, + "G(i)": 275.23, + "H_sun": 20.07, + "T2m": 5.73, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200303:0910", + "P": 2715.3, + "G(i)": 535.97, + "H_sun": 28.22, + "T2m": 9.01, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200303:1010", + "P": 3315.3, + "G(i)": 650.05, + "H_sun": 34.37, + "T2m": 11.38, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200303:1110", + "P": 4566.54, + "G(i)": 922.74, + "H_sun": 37.74, + "T2m": 12.55, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200303:1210", + "P": 4603.14, + "G(i)": 951.94, + "H_sun": 37.74, + "T2m": 13.34, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200303:1310", + "P": 4771.74, + "G(i)": 1002.58, + "H_sun": 34.38, + "T2m": 13.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200303:1410", + "P": 2558.7, + "G(i)": 511.05, + "H_sun": 28.24, + "T2m": 13.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200303:1510", + "P": 3011.28, + "G(i)": 600.81, + "H_sun": 20.1, + "T2m": 13.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200303:1610", + "P": 1635.84, + "G(i)": 325.86, + "H_sun": 10.65, + "T2m": 12.85, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200303:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200303:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200303:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200303:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200303:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200303:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200303:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200304:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.39, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200304:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.07, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200304:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200304:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.02, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200304:0710", + "P": 141.72, + "G(i)": 48.74, + "H_sun": 10.95, + "T2m": 2.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200304:0810", + "P": 1252.8, + "G(i)": 279.33, + "H_sun": 20.41, + "T2m": 4.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200304:0910", + "P": 2643.0, + "G(i)": 526.65, + "H_sun": 28.58, + "T2m": 7.67, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200304:1010", + "P": 3702.96, + "G(i)": 748.11, + "H_sun": 34.75, + "T2m": 9.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200304:1110", + "P": 4292.7, + "G(i)": 894.44, + "H_sun": 38.13, + "T2m": 11.51, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200304:1210", + "P": 4465.86, + "G(i)": 930.22, + "H_sun": 38.12, + "T2m": 12.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200304:1310", + "P": 4270.92, + "G(i)": 880.06, + "H_sun": 34.73, + "T2m": 12.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:1410", + "P": 3978.06, + "G(i)": 808.32, + "H_sun": 28.55, + "T2m": 12.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200304:1510", + "P": 3573.78, + "G(i)": 713.98, + "H_sun": 20.37, + "T2m": 12.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200304:1610", + "P": 2217.42, + "G(i)": 436.66, + "H_sun": 10.91, + "T2m": 12.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200304:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200304:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.29, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200304:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.93, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200304:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200304:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200304:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.38, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200304:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200305:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200305:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200305:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200305:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200305:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.32, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200305:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200305:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200305:0710", + "P": 276.84, + "G(i)": 67.34, + "H_sun": 11.27, + "T2m": 3.17, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200305:0810", + "P": 575.94, + "G(i)": 123.61, + "H_sun": 20.75, + "T2m": 4.83, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200305:0910", + "P": 2024.88, + "G(i)": 392.57, + "H_sun": 28.94, + "T2m": 5.51, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200305:1010", + "P": 493.86, + "G(i)": 108.47, + "H_sun": 35.13, + "T2m": 6.04, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200305:1110", + "P": 614.7, + "G(i)": 130.72, + "H_sun": 38.52, + "T2m": 6.05, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200305:1210", + "P": 370.2, + "G(i)": 85.29, + "H_sun": 38.5, + "T2m": 6.02, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200305:1310", + "P": 390.06, + "G(i)": 89.0, + "H_sun": 35.08, + "T2m": 5.9, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200305:1410", + "P": 216.66, + "G(i)": 55.63, + "H_sun": 28.86, + "T2m": 5.62, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200305:1510", + "P": 231.0, + "G(i)": 58.41, + "H_sun": 20.65, + "T2m": 5.4, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200305:1610", + "P": 43.5, + "G(i)": 18.54, + "H_sun": 11.16, + "T2m": 4.99, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200305:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.51, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200305:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200305:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.53, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200305:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200305:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.58, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200305:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200305:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200306:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200306:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200306:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200306:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200306:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.06, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200306:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200306:0710", + "P": 285.42, + "G(i)": 68.44, + "H_sun": 11.6, + "T2m": 1.4, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200306:0810", + "P": 394.74, + "G(i)": 89.0, + "H_sun": 21.1, + "T2m": 2.53, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200306:0910", + "P": 821.04, + "G(i)": 168.16, + "H_sun": 29.31, + "T2m": 3.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200306:1010", + "P": 1507.98, + "G(i)": 296.98, + "H_sun": 35.52, + "T2m": 5.71, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200306:1110", + "P": 4295.58, + "G(i)": 873.64, + "H_sun": 38.91, + "T2m": 8.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200306:1210", + "P": 4730.76, + "G(i)": 983.9, + "H_sun": 38.87, + "T2m": 9.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1310", + "P": 4857.48, + "G(i)": 1020.42, + "H_sun": 35.43, + "T2m": 11.34, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200306:1410", + "P": 4378.92, + "G(i)": 909.62, + "H_sun": 29.17, + "T2m": 12.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1510", + "P": 3690.72, + "G(i)": 750.91, + "H_sun": 20.93, + "T2m": 12.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1610", + "P": 2428.14, + "G(i)": 483.67, + "H_sun": 11.41, + "T2m": 12.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200306:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.48, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200306:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.57, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200306:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200306:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.76, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200306:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200306:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200307:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200307:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200307:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200307:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200307:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200307:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.09, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:0710", + "P": 159.78, + "G(i)": 56.46, + "H_sun": 11.93, + "T2m": 2.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200307:0810", + "P": 1325.64, + "G(i)": 293.06, + "H_sun": 21.44, + "T2m": 5.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200307:0910", + "P": 2737.68, + "G(i)": 542.15, + "H_sun": 29.67, + "T2m": 8.59, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:1010", + "P": 3829.98, + "G(i)": 764.18, + "H_sun": 35.9, + "T2m": 11.04, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200307:1110", + "P": 4562.46, + "G(i)": 934.26, + "H_sun": 39.3, + "T2m": 12.81, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200307:1210", + "P": 4662.18, + "G(i)": 975.92, + "H_sun": 39.25, + "T2m": 13.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200307:1310", + "P": 4836.24, + "G(i)": 1033.57, + "H_sun": 35.77, + "T2m": 14.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200307:1410", + "P": 4510.32, + "G(i)": 956.94, + "H_sun": 29.48, + "T2m": 14.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200307:1510", + "P": 3646.08, + "G(i)": 751.06, + "H_sun": 21.2, + "T2m": 14.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200307:1610", + "P": 2325.9, + "G(i)": 467.86, + "H_sun": 11.67, + "T2m": 14.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200307:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.32, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200307:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.22, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200307:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.51, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.05, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200307:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.21, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200307:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.95, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200307:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.59, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200308:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.19, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200308:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200308:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200308:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200308:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200308:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.86, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200308:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200308:0710", + "P": 355.32, + "G(i)": 85.36, + "H_sun": 12.26, + "T2m": 2.13, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200308:0810", + "P": 1294.68, + "G(i)": 281.41, + "H_sun": 21.79, + "T2m": 4.72, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200308:0910", + "P": 2324.16, + "G(i)": 460.72, + "H_sun": 30.04, + "T2m": 7.76, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200308:1010", + "P": 3464.28, + "G(i)": 696.27, + "H_sun": 36.29, + "T2m": 9.7, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200308:1110", + "P": 4329.6, + "G(i)": 897.71, + "H_sun": 39.7, + "T2m": 11.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200308:1210", + "P": 4483.14, + "G(i)": 937.98, + "H_sun": 39.63, + "T2m": 12.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200308:1310", + "P": 3065.16, + "G(i)": 618.5, + "H_sun": 36.12, + "T2m": 12.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200308:1410", + "P": 1897.98, + "G(i)": 379.61, + "H_sun": 29.79, + "T2m": 13.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200308:1510", + "P": 3173.52, + "G(i)": 634.33, + "H_sun": 21.48, + "T2m": 13.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200308:1610", + "P": 103.98, + "G(i)": 33.38, + "H_sun": 11.92, + "T2m": 12.84, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200308:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200308:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200308:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.83, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200308:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.92, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200308:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200308:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200308:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200309:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200309:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200309:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200309:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200309:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.08, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200309:0610", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 2.32, + "T2m": 3.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200309:0710", + "P": 43.68, + "G(i)": 18.54, + "H_sun": 12.59, + "T2m": 4.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:0810", + "P": 234.84, + "G(i)": 59.33, + "H_sun": 22.14, + "T2m": 5.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200309:0910", + "P": 462.24, + "G(i)": 102.91, + "H_sun": 30.41, + "T2m": 6.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200309:1010", + "P": 1931.76, + "G(i)": 377.13, + "H_sun": 36.68, + "T2m": 6.63, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200309:1110", + "P": 1061.94, + "G(i)": 215.24, + "H_sun": 40.09, + "T2m": 7.34, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200309:1210", + "P": 3605.34, + "G(i)": 718.35, + "H_sun": 40.01, + "T2m": 7.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200309:1310", + "P": 2056.86, + "G(i)": 403.26, + "H_sun": 36.47, + "T2m": 8.62, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200309:1410", + "P": 2609.4, + "G(i)": 510.71, + "H_sun": 30.1, + "T2m": 9.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:1510", + "P": 2861.64, + "G(i)": 563.65, + "H_sun": 21.75, + "T2m": 9.72, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200309:1610", + "P": 1053.54, + "G(i)": 213.35, + "H_sun": 12.17, + "T2m": 9.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200309:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200309:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200309:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.5, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200309:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200309:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.81, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200309:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200310:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200310:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200310:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.11, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200310:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200310:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200310:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200310:0610", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 2.64, + "T2m": 2.4, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200310:0710", + "P": 376.68, + "G(i)": 87.77, + "H_sun": 12.92, + "T2m": 3.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200310:0810", + "P": 1322.16, + "G(i)": 288.73, + "H_sun": 22.49, + "T2m": 5.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200310:0910", + "P": 2547.18, + "G(i)": 507.42, + "H_sun": 30.78, + "T2m": 7.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200310:1010", + "P": 2980.56, + "G(i)": 594.19, + "H_sun": 37.07, + "T2m": 9.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200310:1110", + "P": 4047.3, + "G(i)": 827.0, + "H_sun": 40.49, + "T2m": 11.6, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200310:1210", + "P": 4590.0, + "G(i)": 955.14, + "H_sun": 40.39, + "T2m": 12.45, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200310:1310", + "P": 4617.12, + "G(i)": 966.92, + "H_sun": 36.81, + "T2m": 13.5, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200310:1410", + "P": 4301.7, + "G(i)": 892.79, + "H_sun": 30.4, + "T2m": 14.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200310:1510", + "P": 3458.58, + "G(i)": 696.92, + "H_sun": 22.03, + "T2m": 14.06, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200310:1610", + "P": 1863.24, + "G(i)": 370.28, + "H_sun": 12.41, + "T2m": 13.53, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200310:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200310:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200310:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.93, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200310:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.07, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200310:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200310:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200310:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200311:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200311:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200311:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200311:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200311:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200311:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200311:0610", + "P": 23.04, + "G(i)": 13.12, + "H_sun": 2.97, + "T2m": 3.09, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200311:0710", + "P": 192.72, + "G(i)": 67.15, + "H_sun": 13.26, + "T2m": 5.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200311:0810", + "P": 1327.2, + "G(i)": 292.27, + "H_sun": 22.84, + "T2m": 8.46, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200311:0910", + "P": 2654.58, + "G(i)": 536.54, + "H_sun": 31.16, + "T2m": 11.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200311:1010", + "P": 3587.82, + "G(i)": 736.74, + "H_sun": 37.46, + "T2m": 14.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200311:1110", + "P": 4230.96, + "G(i)": 891.36, + "H_sun": 40.88, + "T2m": 16.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200311:1210", + "P": 4500.18, + "G(i)": 957.81, + "H_sun": 40.78, + "T2m": 17.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200311:1310", + "P": 4645.32, + "G(i)": 991.68, + "H_sun": 37.16, + "T2m": 18.71, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200311:1410", + "P": 4315.14, + "G(i)": 909.45, + "H_sun": 30.71, + "T2m": 19.08, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200311:1510", + "P": 3504.42, + "G(i)": 719.93, + "H_sun": 22.3, + "T2m": 18.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200311:1610", + "P": 2229.84, + "G(i)": 450.9, + "H_sun": 12.66, + "T2m": 17.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200311:1710", + "P": 5.16, + "G(i)": 7.87, + "H_sun": 2.34, + "T2m": 15.98, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200311:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.4, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200311:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.73, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200311:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.81, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200311:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200311:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.32, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200311:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200312:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.02, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200312:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.76, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200312:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.51, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200312:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.16, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200312:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200312:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200312:0610", + "P": 5.7, + "G(i)": 7.87, + "H_sun": 3.3, + "T2m": 6.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200312:0710", + "P": 352.92, + "G(i)": 83.58, + "H_sun": 13.6, + "T2m": 7.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:0810", + "P": 632.28, + "G(i)": 136.46, + "H_sun": 23.19, + "T2m": 8.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200312:0910", + "P": 1039.56, + "G(i)": 213.89, + "H_sun": 31.53, + "T2m": 10.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200312:1010", + "P": 1590.12, + "G(i)": 319.91, + "H_sun": 37.86, + "T2m": 11.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:1110", + "P": 1274.46, + "G(i)": 261.07, + "H_sun": 41.28, + "T2m": 13.06, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200312:1210", + "P": 1479.84, + "G(i)": 301.99, + "H_sun": 41.16, + "T2m": 14.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200312:1310", + "P": 889.2, + "G(i)": 189.05, + "H_sun": 37.51, + "T2m": 15.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200312:1410", + "P": 585.6, + "G(i)": 130.72, + "H_sun": 31.02, + "T2m": 15.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200312:1510", + "P": 278.76, + "G(i)": 70.46, + "H_sun": 22.57, + "T2m": 15.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200312:1610", + "P": 491.4, + "G(i)": 111.47, + "H_sun": 12.91, + "T2m": 14.71, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200312:1710", + "P": 0.0, + "G(i)": 4.37, + "H_sun": 2.58, + "T2m": 13.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200312:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200312:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200312:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200312:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200313:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200313:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200313:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200313:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200313:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200313:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.82, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200313:0610", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 3.62, + "T2m": 8.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200313:0710", + "P": 283.56, + "G(i)": 83.67, + "H_sun": 13.93, + "T2m": 8.75, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200313:0810", + "P": 804.3, + "G(i)": 170.67, + "H_sun": 23.55, + "T2m": 10.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200313:0910", + "P": 2443.8, + "G(i)": 494.07, + "H_sun": 31.91, + "T2m": 11.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200313:1010", + "P": 1269.12, + "G(i)": 261.08, + "H_sun": 38.25, + "T2m": 13.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200313:1110", + "P": 2179.02, + "G(i)": 443.4, + "H_sun": 41.68, + "T2m": 14.82, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200313:1210", + "P": 3689.22, + "G(i)": 767.8, + "H_sun": 41.54, + "T2m": 15.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200313:1310", + "P": 4069.86, + "G(i)": 855.49, + "H_sun": 37.85, + "T2m": 16.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200313:1410", + "P": 4144.98, + "G(i)": 867.23, + "H_sun": 31.32, + "T2m": 17.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200313:1510", + "P": 3386.82, + "G(i)": 688.95, + "H_sun": 22.84, + "T2m": 17.21, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200313:1610", + "P": 2177.16, + "G(i)": 435.85, + "H_sun": 13.16, + "T2m": 16.56, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200313:1710", + "P": 14.76, + "G(i)": 11.13, + "H_sun": 2.81, + "T2m": 15.21, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200313:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.64, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200313:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.66, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200313:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200313:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200313:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.97, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200313:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.65, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200314:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200314:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200314:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200314:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200314:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200314:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200314:0610", + "P": 7.98, + "G(i)": 8.74, + "H_sun": 3.95, + "T2m": 9.97, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200314:0710", + "P": 122.7, + "G(i)": 37.08, + "H_sun": 14.27, + "T2m": 9.96, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200314:0810", + "P": 324.78, + "G(i)": 77.88, + "H_sun": 23.9, + "T2m": 10.02, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200314:0910", + "P": 189.18, + "G(i)": 50.99, + "H_sun": 32.28, + "T2m": 10.01, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200314:1010", + "P": 216.66, + "G(i)": 56.55, + "H_sun": 38.65, + "T2m": 10.03, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200314:1110", + "P": 286.8, + "G(i)": 70.46, + "H_sun": 42.08, + "T2m": 10.12, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200314:1210", + "P": 221.1, + "G(i)": 57.48, + "H_sun": 41.92, + "T2m": 10.27, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200314:1310", + "P": 262.92, + "G(i)": 65.82, + "H_sun": 38.2, + "T2m": 10.26, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200314:1410", + "P": 543.24, + "G(i)": 119.6, + "H_sun": 31.63, + "T2m": 10.28, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200314:1510", + "P": 520.86, + "G(i)": 115.45, + "H_sun": 23.11, + "T2m": 10.42, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200314:1610", + "P": 184.08, + "G(i)": 50.06, + "H_sun": 13.4, + "T2m": 10.45, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200314:1710", + "P": 4.32, + "G(i)": 7.42, + "H_sun": 3.04, + "T2m": 10.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200314:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200314:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200314:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.86, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200314:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.64, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200314:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200314:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200315:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200315:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.18, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200315:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.7, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200315:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200315:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200315:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200315:0610", + "P": 60.66, + "G(i)": 22.74, + "H_sun": 4.29, + "T2m": 5.46, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200315:0710", + "P": 242.16, + "G(i)": 80.88, + "H_sun": 14.61, + "T2m": 6.66, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200315:0810", + "P": 1084.26, + "G(i)": 224.14, + "H_sun": 24.26, + "T2m": 8.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200315:0910", + "P": 1068.84, + "G(i)": 217.14, + "H_sun": 32.66, + "T2m": 9.04, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200315:1010", + "P": 1024.32, + "G(i)": 209.24, + "H_sun": 39.04, + "T2m": 9.66, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200315:1110", + "P": 884.1, + "G(i)": 183.57, + "H_sun": 42.48, + "T2m": 10.18, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200315:1210", + "P": 822.42, + "G(i)": 172.44, + "H_sun": 42.3, + "T2m": 10.72, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200315:1310", + "P": 1177.2, + "G(i)": 238.73, + "H_sun": 38.54, + "T2m": 10.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200315:1410", + "P": 1437.12, + "G(i)": 286.76, + "H_sun": 31.93, + "T2m": 11.15, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200315:1510", + "P": 1402.02, + "G(i)": 278.77, + "H_sun": 23.38, + "T2m": 11.09, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200315:1610", + "P": 886.8, + "G(i)": 182.76, + "H_sun": 13.64, + "T2m": 10.82, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200315:1710", + "P": 15.3, + "G(i)": 11.13, + "H_sun": 3.27, + "T2m": 10.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.24, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200315:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.73, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200315:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.09, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.45, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.99, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200316:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200316:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.49, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200316:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200316:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.61, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200316:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.21, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200316:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200316:0610", + "P": 72.84, + "G(i)": 25.36, + "H_sun": 4.62, + "T2m": 3.27, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200316:0710", + "P": 341.94, + "G(i)": 95.4, + "H_sun": 14.95, + "T2m": 5.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200316:0810", + "P": 1433.04, + "G(i)": 308.44, + "H_sun": 24.62, + "T2m": 8.38, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200316:0910", + "P": 2603.4, + "G(i)": 516.48, + "H_sun": 33.04, + "T2m": 10.13, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200316:1010", + "P": 2017.44, + "G(i)": 399.53, + "H_sun": 39.44, + "T2m": 10.93, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200316:1110", + "P": 1439.22, + "G(i)": 290.32, + "H_sun": 42.88, + "T2m": 11.69, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200316:1210", + "P": 951.36, + "G(i)": 198.4, + "H_sun": 42.69, + "T2m": 12.27, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200316:1310", + "P": 2094.48, + "G(i)": 418.13, + "H_sun": 38.89, + "T2m": 12.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200316:1410", + "P": 1720.98, + "G(i)": 345.12, + "H_sun": 32.23, + "T2m": 13.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200316:1510", + "P": 1231.8, + "G(i)": 251.19, + "H_sun": 23.64, + "T2m": 13.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200316:1610", + "P": 1408.2, + "G(i)": 283.89, + "H_sun": 13.89, + "T2m": 13.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200316:1710", + "P": 130.08, + "G(i)": 39.55, + "H_sun": 3.51, + "T2m": 12.45, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200316:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200316:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200316:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200316:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200316:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200316:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200317:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200317:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200317:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.53, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200317:0610", + "P": 68.22, + "G(i)": 24.48, + "H_sun": 4.95, + "T2m": 5.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200317:0710", + "P": 483.6, + "G(i)": 112.69, + "H_sun": 15.3, + "T2m": 6.66, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200317:0810", + "P": 1302.24, + "G(i)": 274.82, + "H_sun": 24.97, + "T2m": 9.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200317:0910", + "P": 2465.28, + "G(i)": 501.3, + "H_sun": 33.42, + "T2m": 11.97, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200317:1010", + "P": 3048.78, + "G(i)": 622.67, + "H_sun": 39.83, + "T2m": 13.52, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200317:1110", + "P": 3744.3, + "G(i)": 778.61, + "H_sun": 43.29, + "T2m": 14.77, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200317:1210", + "P": 3621.78, + "G(i)": 753.35, + "H_sun": 43.07, + "T2m": 15.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200317:1310", + "P": 3603.54, + "G(i)": 750.65, + "H_sun": 39.23, + "T2m": 16.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200317:1410", + "P": 3547.8, + "G(i)": 736.82, + "H_sun": 32.53, + "T2m": 16.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:1510", + "P": 2387.1, + "G(i)": 484.14, + "H_sun": 23.91, + "T2m": 16.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200317:1610", + "P": 2276.46, + "G(i)": 460.25, + "H_sun": 14.13, + "T2m": 16.66, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200317:1710", + "P": 131.22, + "G(i)": 40.22, + "H_sun": 3.74, + "T2m": 15.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200317:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200317:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200317:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200317:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200317:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200317:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.15, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200318:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200318:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.42, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200318:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200318:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200318:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200318:0610", + "P": 80.34, + "G(i)": 27.11, + "H_sun": 5.28, + "T2m": 3.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200318:0710", + "P": 290.34, + "G(i)": 91.77, + "H_sun": 15.64, + "T2m": 6.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200318:0810", + "P": 1463.94, + "G(i)": 316.49, + "H_sun": 25.33, + "T2m": 9.79, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200318:0910", + "P": 2734.98, + "G(i)": 552.22, + "H_sun": 33.8, + "T2m": 12.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200318:1010", + "P": 3730.5, + "G(i)": 762.0, + "H_sun": 40.23, + "T2m": 14.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200318:1110", + "P": 4428.6, + "G(i)": 926.23, + "H_sun": 43.69, + "T2m": 15.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200318:1210", + "P": 4889.82, + "G(i)": 1044.73, + "H_sun": 43.45, + "T2m": 16.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200318:1310", + "P": 4752.9, + "G(i)": 1018.82, + "H_sun": 39.57, + "T2m": 17.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200318:1410", + "P": 4381.98, + "G(i)": 929.46, + "H_sun": 32.83, + "T2m": 17.94, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:1510", + "P": 3524.04, + "G(i)": 727.74, + "H_sun": 24.17, + "T2m": 17.92, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:1610", + "P": 2336.16, + "G(i)": 473.7, + "H_sun": 14.37, + "T2m": 17.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200318:1710", + "P": 129.9, + "G(i)": 40.01, + "H_sun": 3.96, + "T2m": 16.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200318:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200318:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200318:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.5, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200318:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200318:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200319:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200319:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.98, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200319:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.3, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200319:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200319:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200319:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:0610", + "P": 83.1, + "G(i)": 27.98, + "H_sun": 5.62, + "T2m": 6.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:0710", + "P": 284.64, + "G(i)": 93.27, + "H_sun": 15.98, + "T2m": 7.8, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200319:0810", + "P": 1489.2, + "G(i)": 323.53, + "H_sun": 25.69, + "T2m": 10.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200319:0910", + "P": 2737.32, + "G(i)": 557.99, + "H_sun": 34.17, + "T2m": 14.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200319:1010", + "P": 3686.82, + "G(i)": 767.64, + "H_sun": 40.63, + "T2m": 16.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200319:1110", + "P": 4349.82, + "G(i)": 942.4, + "H_sun": 44.09, + "T2m": 17.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200319:1210", + "P": 4726.86, + "G(i)": 1055.63, + "H_sun": 43.83, + "T2m": 18.41, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200319:1310", + "P": 4602.36, + "G(i)": 1023.19, + "H_sun": 39.91, + "T2m": 18.96, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200319:1410", + "P": 4240.98, + "G(i)": 925.72, + "H_sun": 33.13, + "T2m": 19.25, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200319:1510", + "P": 3559.98, + "G(i)": 751.95, + "H_sun": 24.44, + "T2m": 19.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:1610", + "P": 2388.78, + "G(i)": 491.08, + "H_sun": 14.61, + "T2m": 18.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200319:1710", + "P": 162.6, + "G(i)": 47.47, + "H_sun": 4.19, + "T2m": 17.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200319:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200319:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200319:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200319:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.49, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200320:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.46, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200320:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.66, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200320:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200320:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200320:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200320:0610", + "P": 107.16, + "G(i)": 33.23, + "H_sun": 5.95, + "T2m": 5.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200320:0710", + "P": 278.7, + "G(i)": 93.98, + "H_sun": 16.32, + "T2m": 8.65, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:0810", + "P": 943.08, + "G(i)": 196.81, + "H_sun": 26.05, + "T2m": 10.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200320:0910", + "P": 1356.0, + "G(i)": 275.55, + "H_sun": 34.55, + "T2m": 12.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200320:1010", + "P": 2987.94, + "G(i)": 601.69, + "H_sun": 41.03, + "T2m": 13.15, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200320:1110", + "P": 4187.04, + "G(i)": 880.91, + "H_sun": 44.49, + "T2m": 13.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:1210", + "P": 1117.68, + "G(i)": 233.92, + "H_sun": 44.21, + "T2m": 15.1, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200320:1310", + "P": 3317.76, + "G(i)": 686.25, + "H_sun": 40.25, + "T2m": 15.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200320:1410", + "P": 4208.7, + "G(i)": 902.47, + "H_sun": 33.42, + "T2m": 16.45, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200320:1510", + "P": 3357.48, + "G(i)": 695.09, + "H_sun": 24.7, + "T2m": 16.56, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:1610", + "P": 2565.72, + "G(i)": 520.7, + "H_sun": 14.85, + "T2m": 16.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200320:1710", + "P": 163.26, + "G(i)": 47.18, + "H_sun": 4.42, + "T2m": 15.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200320:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200320:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200320:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200320:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.09, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200320:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.02, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200320:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200321:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200321:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.99, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200321:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200321:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200321:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200321:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200321:0610", + "P": 95.82, + "G(i)": 30.61, + "H_sun": 6.29, + "T2m": 4.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200321:0710", + "P": 317.1, + "G(i)": 100.43, + "H_sun": 16.67, + "T2m": 7.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200321:0810", + "P": 1516.92, + "G(i)": 328.41, + "H_sun": 26.41, + "T2m": 11.07, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200321:0910", + "P": 2771.94, + "G(i)": 565.1, + "H_sun": 34.93, + "T2m": 13.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200321:1010", + "P": 3737.46, + "G(i)": 774.12, + "H_sun": 41.43, + "T2m": 15.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200321:1110", + "P": 4443.72, + "G(i)": 948.82, + "H_sun": 44.89, + "T2m": 16.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200321:1210", + "P": 4848.12, + "G(i)": 1055.37, + "H_sun": 44.59, + "T2m": 17.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200321:1310", + "P": 4750.62, + "G(i)": 1028.03, + "H_sun": 40.59, + "T2m": 18.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200321:1410", + "P": 4311.24, + "G(i)": 916.85, + "H_sun": 33.72, + "T2m": 18.46, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200321:1510", + "P": 3554.16, + "G(i)": 737.88, + "H_sun": 24.96, + "T2m": 18.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200321:1610", + "P": 2414.88, + "G(i)": 491.35, + "H_sun": 15.08, + "T2m": 18.2, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200321:1710", + "P": 170.94, + "G(i)": 49.07, + "H_sun": 4.65, + "T2m": 17.15, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200321:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.3, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200321:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.25, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200321:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.4, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200321:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200321:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.13, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200321:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200322:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200322:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.76, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200322:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200322:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.47, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200322:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.67, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200322:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.67, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200322:0610", + "P": 130.2, + "G(i)": 38.48, + "H_sun": 6.62, + "T2m": 8.31, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200322:0710", + "P": 344.28, + "G(i)": 81.72, + "H_sun": 17.01, + "T2m": 9.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200322:0810", + "P": 420.66, + "G(i)": 96.42, + "H_sun": 26.77, + "T2m": 10.15, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200322:0910", + "P": 367.08, + "G(i)": 86.22, + "H_sun": 35.31, + "T2m": 10.53, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200322:1010", + "P": 324.0, + "G(i)": 77.88, + "H_sun": 41.82, + "T2m": 10.63, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200322:1110", + "P": 690.6, + "G(i)": 147.41, + "H_sun": 45.29, + "T2m": 10.99, + "WS10m": 4.07, + "Int": 0.0 + }, + { + "time": "20200322:1210", + "P": 704.28, + "G(i)": 150.19, + "H_sun": 44.97, + "T2m": 11.3, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200322:1310", + "P": 998.1, + "G(i)": 205.64, + "H_sun": 40.93, + "T2m": 11.68, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200322:1410", + "P": 1225.98, + "G(i)": 248.69, + "H_sun": 34.01, + "T2m": 12.4, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200322:1510", + "P": 627.9, + "G(i)": 136.95, + "H_sun": 25.22, + "T2m": 12.74, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200322:1610", + "P": 684.36, + "G(i)": 147.11, + "H_sun": 15.32, + "T2m": 12.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200322:1710", + "P": 108.72, + "G(i)": 34.55, + "H_sun": 4.87, + "T2m": 11.99, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200322:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200322:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200322:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200322:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.11, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200322:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200322:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.12, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200323:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.19, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200323:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.92, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200323:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.38, + "WS10m": 4.55, + "Int": 0.0 + }, + { + "time": "20200323:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.85, + "WS10m": 4.55, + "Int": 0.0 + }, + { + "time": "20200323:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.36, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200323:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.91, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200323:0610", + "P": 79.74, + "G(i)": 27.11, + "H_sun": 6.96, + "T2m": 5.43, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200323:0710", + "P": 292.5, + "G(i)": 70.46, + "H_sun": 17.36, + "T2m": 6.06, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200323:0810", + "P": 664.62, + "G(i)": 139.77, + "H_sun": 27.13, + "T2m": 5.98, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200323:0910", + "P": 609.9, + "G(i)": 129.79, + "H_sun": 35.69, + "T2m": 6.2, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200323:1010", + "P": 775.32, + "G(i)": 160.39, + "H_sun": 42.22, + "T2m": 6.58, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200323:1110", + "P": 1415.1, + "G(i)": 278.06, + "H_sun": 45.69, + "T2m": 6.91, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200323:1210", + "P": 2067.24, + "G(i)": 399.9, + "H_sun": 45.35, + "T2m": 7.16, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200323:1310", + "P": 2033.94, + "G(i)": 394.38, + "H_sun": 41.26, + "T2m": 7.44, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200323:1410", + "P": 1616.82, + "G(i)": 316.8, + "H_sun": 34.3, + "T2m": 7.95, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200323:1510", + "P": 1356.36, + "G(i)": 267.71, + "H_sun": 25.47, + "T2m": 8.05, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200323:1610", + "P": 1230.0, + "G(i)": 243.76, + "H_sun": 15.55, + "T2m": 7.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200323:1710", + "P": 118.14, + "G(i)": 36.0, + "H_sun": 5.1, + "T2m": 7.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200323:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200323:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200323:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200323:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200323:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200323:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.29, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200324:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.0, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200324:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200324:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200324:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.48, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200324:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200324:0610", + "P": 170.58, + "G(i)": 45.47, + "H_sun": 7.29, + "T2m": 0.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200324:0710", + "P": 330.06, + "G(i)": 107.12, + "H_sun": 17.7, + "T2m": 1.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200324:0810", + "P": 1695.9, + "G(i)": 351.52, + "H_sun": 27.48, + "T2m": 3.96, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:0910", + "P": 3042.84, + "G(i)": 589.74, + "H_sun": 36.07, + "T2m": 5.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200324:1010", + "P": 4115.58, + "G(i)": 807.47, + "H_sun": 42.62, + "T2m": 6.37, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200324:1110", + "P": 2798.4, + "G(i)": 544.91, + "H_sun": 46.1, + "T2m": 7.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200324:1210", + "P": 4910.46, + "G(i)": 1003.68, + "H_sun": 45.72, + "T2m": 8.15, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200324:1310", + "P": 3398.52, + "G(i)": 670.61, + "H_sun": 41.6, + "T2m": 8.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200324:1410", + "P": 4089.6, + "G(i)": 812.07, + "H_sun": 34.59, + "T2m": 8.62, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200324:1510", + "P": 3924.72, + "G(i)": 766.41, + "H_sun": 25.73, + "T2m": 8.41, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200324:1610", + "P": 2855.76, + "G(i)": 548.38, + "H_sun": 15.79, + "T2m": 8.03, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200324:1710", + "P": 995.16, + "G(i)": 205.23, + "H_sun": 5.32, + "T2m": 7.41, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200324:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200324:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.23, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200324:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200324:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200325:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.43, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200325:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.55, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200325:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200325:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.31, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200325:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.32, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200325:0610", + "P": 36.96, + "G(i)": 16.61, + "H_sun": 7.63, + "T2m": -0.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:0710", + "P": 258.72, + "G(i)": 63.04, + "H_sun": 18.04, + "T2m": 2.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200325:0810", + "P": 508.08, + "G(i)": 110.33, + "H_sun": 27.84, + "T2m": 3.98, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:0910", + "P": 622.8, + "G(i)": 131.65, + "H_sun": 36.45, + "T2m": 4.47, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:1010", + "P": 2187.72, + "G(i)": 420.95, + "H_sun": 43.01, + "T2m": 4.99, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:1110", + "P": 1037.4, + "G(i)": 208.6, + "H_sun": 46.5, + "T2m": 5.83, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:1210", + "P": 2184.3, + "G(i)": 423.81, + "H_sun": 46.1, + "T2m": 6.63, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200325:1310", + "P": 584.76, + "G(i)": 126.09, + "H_sun": 41.93, + "T2m": 7.18, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200325:1410", + "P": 2809.32, + "G(i)": 542.22, + "H_sun": 34.88, + "T2m": 7.38, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200325:1510", + "P": 646.8, + "G(i)": 137.49, + "H_sun": 25.98, + "T2m": 7.38, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200325:1610", + "P": 1744.92, + "G(i)": 336.84, + "H_sun": 16.02, + "T2m": 7.24, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200325:1710", + "P": 419.58, + "G(i)": 96.16, + "H_sun": 5.54, + "T2m": 6.96, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200325:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.82, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200325:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.25, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200325:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.57, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200325:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.83, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200325:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.17, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200325:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200326:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200326:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.71, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200326:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.39, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200326:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.89, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200326:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.24, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200326:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.44, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200326:0610", + "P": 115.32, + "G(i)": 34.1, + "H_sun": 7.96, + "T2m": -0.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:0710", + "P": 594.78, + "G(i)": 138.56, + "H_sun": 18.38, + "T2m": 2.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200326:0810", + "P": 1405.08, + "G(i)": 280.0, + "H_sun": 28.2, + "T2m": 3.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200326:0910", + "P": 1832.7, + "G(i)": 355.16, + "H_sun": 36.83, + "T2m": 4.97, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:1010", + "P": 801.42, + "G(i)": 165.02, + "H_sun": 43.41, + "T2m": 5.47, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200326:1110", + "P": 473.82, + "G(i)": 104.76, + "H_sun": 46.89, + "T2m": 5.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:1210", + "P": 588.18, + "G(i)": 126.09, + "H_sun": 46.48, + "T2m": 5.87, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200326:1310", + "P": 1229.4, + "G(i)": 243.98, + "H_sun": 42.26, + "T2m": 5.95, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200326:1410", + "P": 613.32, + "G(i)": 130.72, + "H_sun": 35.17, + "T2m": 6.01, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200326:1510", + "P": 301.74, + "G(i)": 72.31, + "H_sun": 26.23, + "T2m": 5.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200326:1610", + "P": 120.96, + "G(i)": 36.16, + "H_sun": 16.25, + "T2m": 5.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:1710", + "P": 58.62, + "G(i)": 22.25, + "H_sun": 5.77, + "T2m": 5.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200326:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200326:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200326:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200326:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.98, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200326:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200326:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200327:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200327:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.76, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200327:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200327:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.16, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200327:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.32, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200327:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.51, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200327:0610", + "P": 99.78, + "G(i)": 31.48, + "H_sun": 8.3, + "T2m": 4.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200327:0710", + "P": 245.4, + "G(i)": 61.19, + "H_sun": 18.72, + "T2m": 5.29, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200327:0810", + "P": 801.0, + "G(i)": 165.02, + "H_sun": 28.56, + "T2m": 5.64, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200327:0910", + "P": 678.84, + "G(i)": 142.77, + "H_sun": 37.2, + "T2m": 6.27, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200327:1010", + "P": 791.76, + "G(i)": 164.1, + "H_sun": 43.81, + "T2m": 7.19, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200327:1110", + "P": 1405.5, + "G(i)": 277.88, + "H_sun": 47.29, + "T2m": 7.89, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200327:1210", + "P": 1765.74, + "G(i)": 346.81, + "H_sun": 46.85, + "T2m": 8.62, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200327:1310", + "P": 2337.06, + "G(i)": 458.19, + "H_sun": 42.59, + "T2m": 9.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200327:1410", + "P": 1038.18, + "G(i)": 212.25, + "H_sun": 35.45, + "T2m": 9.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200327:1510", + "P": 1484.94, + "G(i)": 294.67, + "H_sun": 26.49, + "T2m": 9.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200327:1610", + "P": 377.16, + "G(i)": 87.93, + "H_sun": 16.48, + "T2m": 9.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200327:1710", + "P": 362.04, + "G(i)": 85.7, + "H_sun": 5.99, + "T2m": 8.92, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200327:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.15, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200327:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200327:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200327:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.98, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200327:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200327:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.02, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200328:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200328:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200328:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.82, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200328:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200328:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200328:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200328:0610", + "P": 204.72, + "G(i)": 53.34, + "H_sun": 8.63, + "T2m": 5.85, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200328:0710", + "P": 414.6, + "G(i)": 122.87, + "H_sun": 19.06, + "T2m": 8.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200328:0810", + "P": 1644.6, + "G(i)": 350.15, + "H_sun": 28.91, + "T2m": 11.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200328:0910", + "P": 2830.92, + "G(i)": 574.75, + "H_sun": 37.58, + "T2m": 13.19, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200328:1010", + "P": 3791.1, + "G(i)": 789.38, + "H_sun": 44.2, + "T2m": 14.56, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200328:1110", + "P": 4428.24, + "G(i)": 947.06, + "H_sun": 47.69, + "T2m": 15.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200328:1210", + "P": 4901.94, + "G(i)": 1067.69, + "H_sun": 47.22, + "T2m": 16.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200328:1310", + "P": 4677.78, + "G(i)": 1010.62, + "H_sun": 42.92, + "T2m": 17.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200328:1410", + "P": 4355.28, + "G(i)": 927.27, + "H_sun": 35.74, + "T2m": 17.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1510", + "P": 3666.6, + "G(i)": 762.35, + "H_sun": 26.74, + "T2m": 17.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1610", + "P": 2528.64, + "G(i)": 514.36, + "H_sun": 16.71, + "T2m": 17.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1710", + "P": 1061.46, + "G(i)": 227.18, + "H_sun": 6.21, + "T2m": 16.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200328:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200328:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200328:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.22, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200328:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200329:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200329:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200329:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200329:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200329:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200329:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200329:0610", + "P": 209.76, + "G(i)": 54.22, + "H_sun": 8.96, + "T2m": 4.92, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200329:0710", + "P": 644.76, + "G(i)": 148.95, + "H_sun": 19.4, + "T2m": 8.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200329:0810", + "P": 1490.28, + "G(i)": 311.3, + "H_sun": 29.26, + "T2m": 11.29, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200329:0910", + "P": 2520.84, + "G(i)": 513.49, + "H_sun": 37.95, + "T2m": 13.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200329:1010", + "P": 3763.26, + "G(i)": 785.15, + "H_sun": 44.59, + "T2m": 15.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1110", + "P": 3648.9, + "G(i)": 765.83, + "H_sun": 48.09, + "T2m": 16.43, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1210", + "P": 4425.42, + "G(i)": 958.23, + "H_sun": 47.59, + "T2m": 17.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1310", + "P": 4492.14, + "G(i)": 979.47, + "H_sun": 43.25, + "T2m": 17.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200329:1410", + "P": 3346.92, + "G(i)": 700.68, + "H_sun": 36.02, + "T2m": 18.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1510", + "P": 1487.1, + "G(i)": 304.21, + "H_sun": 26.98, + "T2m": 17.23, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200329:1610", + "P": 223.56, + "G(i)": 59.33, + "H_sun": 16.94, + "T2m": 16.02, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200329:1710", + "P": 130.5, + "G(i)": 39.68, + "H_sun": 6.43, + "T2m": 15.07, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200329:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200329:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200329:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.16, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200329:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200329:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200329:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.86, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200330:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.24, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200330:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.36, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200330:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.14, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.77, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.45, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.22, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0610", + "P": 180.96, + "G(i)": 48.97, + "H_sun": 9.3, + "T2m": 8.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0710", + "P": 298.44, + "G(i)": 72.31, + "H_sun": 19.74, + "T2m": 8.37, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200330:0810", + "P": 322.14, + "G(i)": 76.95, + "H_sun": 29.62, + "T2m": 8.55, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200330:0910", + "P": 575.76, + "G(i)": 125.16, + "H_sun": 38.32, + "T2m": 8.8, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200330:1010", + "P": 1157.28, + "G(i)": 234.1, + "H_sun": 44.99, + "T2m": 9.37, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200330:1110", + "P": 592.62, + "G(i)": 128.87, + "H_sun": 48.48, + "T2m": 9.73, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200330:1210", + "P": 449.76, + "G(i)": 101.98, + "H_sun": 47.96, + "T2m": 10.03, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200330:1310", + "P": 1102.92, + "G(i)": 224.79, + "H_sun": 43.57, + "T2m": 10.47, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:1410", + "P": 873.0, + "G(i)": 181.64, + "H_sun": 36.3, + "T2m": 10.44, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200330:1510", + "P": 483.0, + "G(i)": 108.47, + "H_sun": 27.23, + "T2m": 10.53, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200330:1610", + "P": 248.34, + "G(i)": 63.04, + "H_sun": 17.16, + "T2m": 10.48, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200330:1710", + "P": 42.12, + "G(i)": 18.54, + "H_sun": 6.65, + "T2m": 10.27, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200330:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.01, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200330:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200330:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200330:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.8, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200330:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.13, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200331:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.18, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200331:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.03, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200331:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200331:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.38, + "WS10m": 4.07, + "Int": 0.0 + }, + { + "time": "20200331:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.94, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200331:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.74, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200331:0610", + "P": 146.28, + "G(i)": 41.1, + "H_sun": 9.63, + "T2m": 3.62, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200331:0710", + "P": 377.7, + "G(i)": 86.22, + "H_sun": 20.08, + "T2m": 4.84, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200331:0810", + "P": 457.32, + "G(i)": 101.05, + "H_sun": 29.97, + "T2m": 4.88, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200331:0910", + "P": 603.3, + "G(i)": 127.94, + "H_sun": 38.7, + "T2m": 5.03, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200331:1010", + "P": 530.16, + "G(i)": 114.96, + "H_sun": 45.38, + "T2m": 5.89, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200331:1110", + "P": 572.94, + "G(i)": 123.31, + "H_sun": 48.88, + "T2m": 6.73, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200331:1210", + "P": 1506.6, + "G(i)": 296.43, + "H_sun": 48.33, + "T2m": 8.12, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200331:1310", + "P": 3108.78, + "G(i)": 603.5, + "H_sun": 43.89, + "T2m": 8.81, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200331:1410", + "P": 3072.24, + "G(i)": 598.72, + "H_sun": 36.58, + "T2m": 9.28, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200331:1510", + "P": 1724.16, + "G(i)": 337.99, + "H_sun": 27.47, + "T2m": 9.4, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200331:1610", + "P": 482.52, + "G(i)": 107.75, + "H_sun": 17.39, + "T2m": 9.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200331:1710", + "P": 285.72, + "G(i)": 70.57, + "H_sun": 6.86, + "T2m": 8.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200331:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200331:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.17, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200331:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200331:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200331:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.48, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200331:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.44, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200401:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200401:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200401:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200401:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200401:0610", + "P": 203.7, + "G(i)": 52.47, + "H_sun": 9.95, + "T2m": 2.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200401:0710", + "P": 497.46, + "G(i)": 108.66, + "H_sun": 20.41, + "T2m": 4.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200401:0810", + "P": 788.82, + "G(i)": 162.93, + "H_sun": 30.32, + "T2m": 5.44, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200401:0910", + "P": 1153.38, + "G(i)": 231.03, + "H_sun": 39.07, + "T2m": 6.57, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200401:1010", + "P": 1329.54, + "G(i)": 265.38, + "H_sun": 45.77, + "T2m": 7.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200401:1110", + "P": 2446.38, + "G(i)": 482.2, + "H_sun": 49.27, + "T2m": 8.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200401:1210", + "P": 3728.82, + "G(i)": 753.64, + "H_sun": 48.7, + "T2m": 9.27, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200401:1310", + "P": 3815.04, + "G(i)": 770.53, + "H_sun": 44.22, + "T2m": 9.99, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200401:1410", + "P": 2501.16, + "G(i)": 492.66, + "H_sun": 36.85, + "T2m": 10.5, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200401:1510", + "P": 3598.68, + "G(i)": 714.21, + "H_sun": 27.72, + "T2m": 10.56, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200401:1610", + "P": 2808.3, + "G(i)": 549.83, + "H_sun": 17.61, + "T2m": 10.41, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:1710", + "P": 1267.62, + "G(i)": 259.46, + "H_sun": 7.08, + "T2m": 9.84, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200401:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.3, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200401:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200401:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200401:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.2, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200402:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200402:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200402:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.96, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200402:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.38, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200402:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.01, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200402:0610", + "P": 271.86, + "G(i)": 65.58, + "H_sun": 10.28, + "T2m": 1.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200402:0710", + "P": 696.0, + "G(i)": 161.39, + "H_sun": 20.75, + "T2m": 3.88, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200402:0810", + "P": 1824.24, + "G(i)": 378.73, + "H_sun": 30.67, + "T2m": 6.07, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200402:0910", + "P": 3079.38, + "G(i)": 616.07, + "H_sun": 39.43, + "T2m": 7.6, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200402:1010", + "P": 4034.46, + "G(i)": 821.89, + "H_sun": 46.15, + "T2m": 9.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200402:1110", + "P": 4749.18, + "G(i)": 993.04, + "H_sun": 49.66, + "T2m": 10.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200402:1210", + "P": 5151.0, + "G(i)": 1101.11, + "H_sun": 49.07, + "T2m": 11.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200402:1310", + "P": 4948.38, + "G(i)": 1050.22, + "H_sun": 44.53, + "T2m": 12.08, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200402:1410", + "P": 4624.2, + "G(i)": 964.6, + "H_sun": 37.13, + "T2m": 12.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:1510", + "P": 3924.84, + "G(i)": 798.25, + "H_sun": 27.96, + "T2m": 12.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200402:1610", + "P": 2727.36, + "G(i)": 542.54, + "H_sun": 17.84, + "T2m": 12.57, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200402:1710", + "P": 1271.22, + "G(i)": 263.69, + "H_sun": 7.3, + "T2m": 12.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200402:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200402:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200402:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200402:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200403:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200403:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200403:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.77, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200403:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200403:0610", + "P": 225.78, + "G(i)": 56.84, + "H_sun": 10.61, + "T2m": 2.49, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200403:0710", + "P": 485.52, + "G(i)": 140.5, + "H_sun": 21.08, + "T2m": 5.5, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200403:0810", + "P": 1805.64, + "G(i)": 378.43, + "H_sun": 31.01, + "T2m": 9.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200403:0910", + "P": 3050.34, + "G(i)": 615.13, + "H_sun": 39.8, + "T2m": 11.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200403:1010", + "P": 4007.82, + "G(i)": 823.43, + "H_sun": 46.54, + "T2m": 12.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:1110", + "P": 4637.94, + "G(i)": 976.25, + "H_sun": 50.05, + "T2m": 13.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200403:1210", + "P": 5080.5, + "G(i)": 1090.92, + "H_sun": 49.43, + "T2m": 14.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200403:1310", + "P": 4869.18, + "G(i)": 1043.83, + "H_sun": 44.85, + "T2m": 15.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200403:1410", + "P": 4494.48, + "G(i)": 950.93, + "H_sun": 37.4, + "T2m": 15.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200403:1510", + "P": 3839.76, + "G(i)": 792.05, + "H_sun": 28.2, + "T2m": 15.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200403:1610", + "P": 2696.46, + "G(i)": 544.18, + "H_sun": 18.06, + "T2m": 15.55, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200403:1710", + "P": 1131.36, + "G(i)": 239.23, + "H_sun": 7.51, + "T2m": 14.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200403:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200403:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200403:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.97, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200403:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.54, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200403:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200404:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200404:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200404:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200404:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.58, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200404:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200404:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200404:0610", + "P": 218.94, + "G(i)": 55.97, + "H_sun": 10.93, + "T2m": 4.62, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200404:0710", + "P": 480.48, + "G(i)": 141.94, + "H_sun": 21.41, + "T2m": 6.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200404:0810", + "P": 1810.86, + "G(i)": 381.78, + "H_sun": 31.36, + "T2m": 10.72, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200404:0910", + "P": 3044.52, + "G(i)": 618.68, + "H_sun": 40.17, + "T2m": 12.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200404:1010", + "P": 4042.98, + "G(i)": 835.69, + "H_sun": 46.93, + "T2m": 14.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200404:1110", + "P": 4668.84, + "G(i)": 986.41, + "H_sun": 50.44, + "T2m": 15.44, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:1210", + "P": 4969.32, + "G(i)": 1067.81, + "H_sun": 49.79, + "T2m": 16.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:1310", + "P": 4906.14, + "G(i)": 1053.7, + "H_sun": 45.17, + "T2m": 17.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200404:1410", + "P": 4534.92, + "G(i)": 962.03, + "H_sun": 37.67, + "T2m": 17.4, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200404:1510", + "P": 3850.74, + "G(i)": 795.65, + "H_sun": 28.44, + "T2m": 17.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200404:1610", + "P": 2684.7, + "G(i)": 542.64, + "H_sun": 18.28, + "T2m": 17.09, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200404:1710", + "P": 1139.76, + "G(i)": 242.0, + "H_sun": 7.73, + "T2m": 16.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200404:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.38, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200404:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.96, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200404:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200404:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200405:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.05, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200405:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200405:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.82, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200405:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200405:0610", + "P": 225.84, + "G(i)": 57.71, + "H_sun": 11.25, + "T2m": 6.41, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200405:0710", + "P": 532.02, + "G(i)": 149.45, + "H_sun": 21.74, + "T2m": 8.29, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200405:0810", + "P": 1668.96, + "G(i)": 346.01, + "H_sun": 31.7, + "T2m": 12.01, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200405:0910", + "P": 3066.12, + "G(i)": 621.33, + "H_sun": 40.53, + "T2m": 13.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:1010", + "P": 4053.66, + "G(i)": 833.9, + "H_sun": 47.31, + "T2m": 15.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200405:1110", + "P": 4649.64, + "G(i)": 975.87, + "H_sun": 50.83, + "T2m": 16.19, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200405:1210", + "P": 4981.14, + "G(i)": 1062.75, + "H_sun": 50.15, + "T2m": 16.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200405:1310", + "P": 4885.5, + "G(i)": 1040.48, + "H_sun": 45.48, + "T2m": 17.32, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200405:1410", + "P": 4553.34, + "G(i)": 955.1, + "H_sun": 37.94, + "T2m": 17.55, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200405:1510", + "P": 3823.5, + "G(i)": 784.07, + "H_sun": 28.67, + "T2m": 17.49, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200405:1610", + "P": 2677.38, + "G(i)": 538.89, + "H_sun": 18.5, + "T2m": 17.05, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200405:1710", + "P": 1173.72, + "G(i)": 248.39, + "H_sun": 7.94, + "T2m": 16.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200405:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.45, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200405:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200405:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.83, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200405:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.43, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200405:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200406:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200406:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.92, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200406:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.99, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200406:0610", + "P": 204.66, + "G(i)": 53.34, + "H_sun": 11.58, + "T2m": 5.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200406:0710", + "P": 498.9, + "G(i)": 147.23, + "H_sun": 22.06, + "T2m": 8.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200406:0810", + "P": 1831.14, + "G(i)": 387.02, + "H_sun": 32.04, + "T2m": 12.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200406:0910", + "P": 3054.66, + "G(i)": 624.52, + "H_sun": 40.89, + "T2m": 14.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200406:1010", + "P": 3968.64, + "G(i)": 827.88, + "H_sun": 47.69, + "T2m": 16.59, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1110", + "P": 4532.58, + "G(i)": 968.24, + "H_sun": 51.21, + "T2m": 17.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1210", + "P": 4741.2, + "G(i)": 1025.91, + "H_sun": 50.51, + "T2m": 18.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1310", + "P": 4776.6, + "G(i)": 1037.23, + "H_sun": 45.79, + "T2m": 18.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1410", + "P": 4439.28, + "G(i)": 951.69, + "H_sun": 38.2, + "T2m": 18.94, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1510", + "P": 3722.82, + "G(i)": 780.46, + "H_sun": 28.91, + "T2m": 18.87, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200406:1610", + "P": 2669.52, + "G(i)": 547.41, + "H_sun": 18.71, + "T2m": 18.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200406:1710", + "P": 1236.12, + "G(i)": 263.89, + "H_sun": 8.15, + "T2m": 17.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200406:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200406:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.4, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200406:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200406:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200406:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.02, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200406:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200407:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0610", + "P": 186.3, + "G(i)": 49.84, + "H_sun": 11.89, + "T2m": 6.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200407:0710", + "P": 461.22, + "G(i)": 145.39, + "H_sun": 22.39, + "T2m": 10.23, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200407:0810", + "P": 1856.46, + "G(i)": 395.62, + "H_sun": 32.38, + "T2m": 14.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0910", + "P": 3105.48, + "G(i)": 639.57, + "H_sun": 41.25, + "T2m": 17.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:1010", + "P": 3988.86, + "G(i)": 847.38, + "H_sun": 48.07, + "T2m": 18.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200407:1110", + "P": 4530.6, + "G(i)": 1002.45, + "H_sun": 51.59, + "T2m": 19.48, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200407:1210", + "P": 4775.22, + "G(i)": 1077.76, + "H_sun": 50.86, + "T2m": 20.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200407:1310", + "P": 4764.48, + "G(i)": 1069.88, + "H_sun": 46.1, + "T2m": 20.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200407:1410", + "P": 4450.62, + "G(i)": 977.22, + "H_sun": 38.47, + "T2m": 21.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200407:1510", + "P": 3830.88, + "G(i)": 816.68, + "H_sun": 29.14, + "T2m": 21.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200407:1610", + "P": 2762.4, + "G(i)": 573.0, + "H_sun": 18.93, + "T2m": 20.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200407:1710", + "P": 1278.42, + "G(i)": 274.65, + "H_sun": 8.36, + "T2m": 19.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200407:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.33, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200407:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200407:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200407:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200407:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200408:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200408:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200408:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.14, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200408:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200408:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200408:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200408:0610", + "P": 189.12, + "G(i)": 50.72, + "H_sun": 12.21, + "T2m": 8.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200408:0710", + "P": 492.36, + "G(i)": 150.63, + "H_sun": 22.71, + "T2m": 10.32, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200408:0810", + "P": 1868.1, + "G(i)": 399.22, + "H_sun": 32.71, + "T2m": 14.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200408:0910", + "P": 3083.46, + "G(i)": 641.69, + "H_sun": 41.6, + "T2m": 17.1, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200408:1010", + "P": 3935.94, + "G(i)": 844.66, + "H_sun": 48.44, + "T2m": 18.37, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200408:1110", + "P": 4476.54, + "G(i)": 985.43, + "H_sun": 51.97, + "T2m": 19.25, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200408:1210", + "P": 4734.42, + "G(i)": 1057.22, + "H_sun": 51.22, + "T2m": 19.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200408:1310", + "P": 4710.24, + "G(i)": 1055.76, + "H_sun": 46.41, + "T2m": 20.39, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200408:1410", + "P": 4389.24, + "G(i)": 969.17, + "H_sun": 38.73, + "T2m": 20.63, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200408:1510", + "P": 3750.42, + "G(i)": 804.31, + "H_sun": 29.37, + "T2m": 20.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200408:1610", + "P": 2681.76, + "G(i)": 557.98, + "H_sun": 19.14, + "T2m": 20.26, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200408:1710", + "P": 1315.26, + "G(i)": 281.44, + "H_sun": 8.58, + "T2m": 19.1, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200408:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200408:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200408:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200408:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200408:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200408:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200409:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.39, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200409:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200409:0610", + "P": 190.74, + "G(i)": 50.72, + "H_sun": 12.52, + "T2m": 6.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200409:0710", + "P": 504.18, + "G(i)": 152.65, + "H_sun": 23.03, + "T2m": 10.51, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200409:0810", + "P": 1868.7, + "G(i)": 398.99, + "H_sun": 33.04, + "T2m": 14.51, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200409:0910", + "P": 3075.06, + "G(i)": 638.13, + "H_sun": 41.95, + "T2m": 17.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200409:1010", + "P": 3950.4, + "G(i)": 842.94, + "H_sun": 48.82, + "T2m": 18.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:1110", + "P": 4484.46, + "G(i)": 983.59, + "H_sun": 52.35, + "T2m": 20.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:1210", + "P": 4755.9, + "G(i)": 1061.43, + "H_sun": 51.57, + "T2m": 20.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:1310", + "P": 4691.7, + "G(i)": 1052.57, + "H_sun": 46.71, + "T2m": 21.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:1410", + "P": 4308.36, + "G(i)": 959.27, + "H_sun": 38.99, + "T2m": 21.87, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200409:1510", + "P": 3664.14, + "G(i)": 794.98, + "H_sun": 29.6, + "T2m": 21.96, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200409:1610", + "P": 2648.4, + "G(i)": 557.28, + "H_sun": 19.36, + "T2m": 21.75, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200409:1710", + "P": 1266.48, + "G(i)": 274.79, + "H_sun": 8.79, + "T2m": 21.04, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200409:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.08, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200409:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200409:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200409:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200409:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200410:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200410:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.47, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200410:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.58, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200410:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0510", + "P": 3.36, + "G(i)": 7.0, + "H_sun": 2.26, + "T2m": 7.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0610", + "P": 219.72, + "G(i)": 56.84, + "H_sun": 12.83, + "T2m": 7.94, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200410:0710", + "P": 513.48, + "G(i)": 156.15, + "H_sun": 23.34, + "T2m": 11.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200410:0810", + "P": 1899.36, + "G(i)": 407.64, + "H_sun": 33.37, + "T2m": 15.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0910", + "P": 3126.36, + "G(i)": 654.62, + "H_sun": 42.3, + "T2m": 18.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200410:1010", + "P": 3980.04, + "G(i)": 860.04, + "H_sun": 49.19, + "T2m": 20.32, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200410:1110", + "P": 4464.66, + "G(i)": 1003.11, + "H_sun": 52.73, + "T2m": 21.55, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200410:1210", + "P": 4707.6, + "G(i)": 1076.99, + "H_sun": 51.92, + "T2m": 22.35, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200410:1310", + "P": 4625.28, + "G(i)": 1059.92, + "H_sun": 47.01, + "T2m": 22.86, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200410:1410", + "P": 4344.0, + "G(i)": 981.15, + "H_sun": 39.25, + "T2m": 23.11, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200410:1510", + "P": 3723.36, + "G(i)": 814.87, + "H_sun": 29.83, + "T2m": 23.06, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200410:1610", + "P": 2735.4, + "G(i)": 580.54, + "H_sun": 19.57, + "T2m": 22.79, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200410:1710", + "P": 1337.1, + "G(i)": 289.46, + "H_sun": 8.99, + "T2m": 21.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.15, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200410:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.6, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200410:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.17, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200410:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.02, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200410:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.24, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200410:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.76, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200411:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200411:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200411:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.09, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200411:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200411:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.77, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200411:0510", + "P": 8.22, + "G(i)": 8.74, + "H_sun": 2.57, + "T2m": 6.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200411:0610", + "P": 210.9, + "G(i)": 55.09, + "H_sun": 13.14, + "T2m": 8.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200411:0710", + "P": 527.04, + "G(i)": 159.07, + "H_sun": 23.66, + "T2m": 12.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200411:0810", + "P": 1908.66, + "G(i)": 408.62, + "H_sun": 33.7, + "T2m": 16.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200411:0910", + "P": 3113.82, + "G(i)": 648.37, + "H_sun": 42.65, + "T2m": 19.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200411:1010", + "P": 3982.5, + "G(i)": 848.16, + "H_sun": 49.56, + "T2m": 21.38, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200411:1110", + "P": 4546.38, + "G(i)": 991.88, + "H_sun": 53.1, + "T2m": 22.64, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200411:1210", + "P": 4820.4, + "G(i)": 1069.73, + "H_sun": 52.26, + "T2m": 23.44, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200411:1310", + "P": 4744.5, + "G(i)": 1052.87, + "H_sun": 47.31, + "T2m": 23.94, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200411:1410", + "P": 4455.48, + "G(i)": 974.72, + "H_sun": 39.5, + "T2m": 24.16, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200411:1510", + "P": 3798.48, + "G(i)": 809.23, + "H_sun": 30.06, + "T2m": 24.03, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200411:1610", + "P": 2721.72, + "G(i)": 565.42, + "H_sun": 19.78, + "T2m": 23.46, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200411:1710", + "P": 1333.56, + "G(i)": 286.27, + "H_sun": 9.2, + "T2m": 21.85, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200411:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.17, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200411:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.22, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200411:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.05, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200411:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.99, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200411:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200411:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200412:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200412:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200412:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200412:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200412:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200412:0510", + "P": 13.56, + "G(i)": 10.49, + "H_sun": 2.88, + "T2m": 7.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200412:0610", + "P": 228.48, + "G(i)": 58.59, + "H_sun": 13.45, + "T2m": 7.99, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200412:0710", + "P": 543.3, + "G(i)": 160.92, + "H_sun": 23.97, + "T2m": 11.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200412:0810", + "P": 1904.22, + "G(i)": 406.46, + "H_sun": 34.02, + "T2m": 15.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200412:0910", + "P": 3063.54, + "G(i)": 641.38, + "H_sun": 43.0, + "T2m": 18.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200412:1010", + "P": 3908.64, + "G(i)": 846.41, + "H_sun": 49.92, + "T2m": 19.87, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200412:1110", + "P": 4166.52, + "G(i)": 906.89, + "H_sun": 53.47, + "T2m": 21.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200412:1210", + "P": 4821.72, + "G(i)": 1062.63, + "H_sun": 52.61, + "T2m": 22.06, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200412:1310", + "P": 4364.04, + "G(i)": 940.66, + "H_sun": 47.61, + "T2m": 22.5, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200412:1410", + "P": 4526.7, + "G(i)": 966.39, + "H_sun": 39.76, + "T2m": 22.37, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200412:1510", + "P": 1370.34, + "G(i)": 286.51, + "H_sun": 30.28, + "T2m": 21.7, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200412:1610", + "P": 969.96, + "G(i)": 206.72, + "H_sun": 19.99, + "T2m": 20.5, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200412:1710", + "P": 339.6, + "G(i)": 84.11, + "H_sun": 9.41, + "T2m": 18.86, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200412:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.94, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200412:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.65, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200412:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200412:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200412:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200412:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.01, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200413:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200413:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.66, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200413:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.32, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200413:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200413:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200413:0510", + "P": 13.32, + "G(i)": 10.49, + "H_sun": 3.19, + "T2m": 9.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200413:0610", + "P": 230.16, + "G(i)": 59.46, + "H_sun": 13.75, + "T2m": 10.31, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200413:0710", + "P": 620.34, + "G(i)": 170.89, + "H_sun": 24.27, + "T2m": 13.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200413:0810", + "P": 1688.64, + "G(i)": 353.39, + "H_sun": 34.34, + "T2m": 15.63, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200413:0910", + "P": 2683.56, + "G(i)": 556.17, + "H_sun": 43.34, + "T2m": 17.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200413:1010", + "P": 3307.98, + "G(i)": 695.32, + "H_sun": 50.29, + "T2m": 18.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200413:1110", + "P": 4254.54, + "G(i)": 921.61, + "H_sun": 53.84, + "T2m": 19.83, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200413:1210", + "P": 4445.58, + "G(i)": 967.86, + "H_sun": 52.95, + "T2m": 20.55, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200413:1310", + "P": 2828.1, + "G(i)": 587.41, + "H_sun": 47.9, + "T2m": 21.01, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200413:1410", + "P": 1622.16, + "G(i)": 336.48, + "H_sun": 40.01, + "T2m": 20.9, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200413:1510", + "P": 2241.84, + "G(i)": 454.22, + "H_sun": 30.5, + "T2m": 20.16, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200413:1610", + "P": 659.64, + "G(i)": 146.0, + "H_sun": 20.2, + "T2m": 18.81, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200413:1710", + "P": 138.96, + "G(i)": 41.72, + "H_sun": 9.62, + "T2m": 17.48, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200413:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200413:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.72, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200413:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200413:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.39, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200413:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.9, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200413:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.44, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200414:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200414:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200414:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200414:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.77, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200414:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.86, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200414:0510", + "P": 25.2, + "G(i)": 13.99, + "H_sun": 3.49, + "T2m": 9.28, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200414:0610", + "P": 247.32, + "G(i)": 62.96, + "H_sun": 14.05, + "T2m": 10.51, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200414:0710", + "P": 565.38, + "G(i)": 167.05, + "H_sun": 24.58, + "T2m": 12.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200414:0810", + "P": 1935.54, + "G(i)": 414.91, + "H_sun": 34.66, + "T2m": 15.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200414:0910", + "P": 3092.22, + "G(i)": 651.88, + "H_sun": 43.67, + "T2m": 17.95, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200414:1010", + "P": 3961.8, + "G(i)": 857.75, + "H_sun": 50.65, + "T2m": 19.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200414:1110", + "P": 4536.12, + "G(i)": 997.62, + "H_sun": 54.21, + "T2m": 21.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200414:1210", + "P": 4833.54, + "G(i)": 1074.33, + "H_sun": 53.29, + "T2m": 22.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200414:1310", + "P": 4808.52, + "G(i)": 1063.41, + "H_sun": 48.19, + "T2m": 22.74, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200414:1410", + "P": 4441.08, + "G(i)": 963.46, + "H_sun": 40.26, + "T2m": 23.04, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200414:1510", + "P": 3758.34, + "G(i)": 793.86, + "H_sun": 30.73, + "T2m": 23.02, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200414:1610", + "P": 2745.78, + "G(i)": 566.54, + "H_sun": 20.41, + "T2m": 22.67, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200414:1710", + "P": 1361.22, + "G(i)": 291.02, + "H_sun": 9.82, + "T2m": 21.58, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200414:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.87, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200414:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.48, + "WS10m": 4.48, + "Int": 0.0 + }, + { + "time": "20200414:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.77, + "WS10m": 4.69, + "Int": 0.0 + }, + { + "time": "20200414:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.84, + "WS10m": 4.62, + "Int": 0.0 + }, + { + "time": "20200414:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.8, + "WS10m": 4.55, + "Int": 0.0 + }, + { + "time": "20200414:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200415:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.76, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200415:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.37, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200415:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200415:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.72, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200415:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.35, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200415:0510", + "P": 16.2, + "G(i)": 11.37, + "H_sun": 3.79, + "T2m": 9.17, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200415:0610", + "P": 357.0, + "G(i)": 83.95, + "H_sun": 14.34, + "T2m": 9.34, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200415:0710", + "P": 854.94, + "G(i)": 181.13, + "H_sun": 24.88, + "T2m": 9.87, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200415:0810", + "P": 1647.42, + "G(i)": 332.48, + "H_sun": 34.97, + "T2m": 11.01, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200415:0910", + "P": 3025.38, + "G(i)": 603.83, + "H_sun": 44.01, + "T2m": 12.1, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200415:1010", + "P": 4089.78, + "G(i)": 837.02, + "H_sun": 51.0, + "T2m": 13.31, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200415:1110", + "P": 4728.48, + "G(i)": 999.32, + "H_sun": 54.57, + "T2m": 14.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200415:1210", + "P": 4968.9, + "G(i)": 1069.22, + "H_sun": 53.62, + "T2m": 15.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200415:1310", + "P": 4915.38, + "G(i)": 1059.07, + "H_sun": 48.48, + "T2m": 16.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200415:1410", + "P": 4539.48, + "G(i)": 965.03, + "H_sun": 40.51, + "T2m": 17.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:1510", + "P": 3864.12, + "G(i)": 802.0, + "H_sun": 30.95, + "T2m": 17.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200415:1610", + "P": 2847.6, + "G(i)": 578.08, + "H_sun": 20.61, + "T2m": 17.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200415:1710", + "P": 1457.82, + "G(i)": 305.09, + "H_sun": 10.03, + "T2m": 16.79, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200415:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200415:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.6, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200416:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200416:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200416:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.6, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200416:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200416:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.0, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200416:0510", + "P": 41.52, + "G(i)": 18.36, + "H_sun": 4.09, + "T2m": 9.69, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200416:0610", + "P": 296.94, + "G(i)": 72.58, + "H_sun": 14.64, + "T2m": 9.58, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200416:0710", + "P": 868.02, + "G(i)": 200.91, + "H_sun": 25.18, + "T2m": 10.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200416:0810", + "P": 1812.48, + "G(i)": 373.47, + "H_sun": 35.28, + "T2m": 12.73, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200416:0910", + "P": 2990.76, + "G(i)": 614.38, + "H_sun": 44.34, + "T2m": 14.49, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200416:1010", + "P": 3008.28, + "G(i)": 625.23, + "H_sun": 51.36, + "T2m": 16.1, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200416:1110", + "P": 3350.4, + "G(i)": 707.44, + "H_sun": 54.93, + "T2m": 17.44, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200416:1210", + "P": 3889.62, + "G(i)": 838.46, + "H_sun": 53.96, + "T2m": 18.54, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200416:1310", + "P": 2752.32, + "G(i)": 576.75, + "H_sun": 48.77, + "T2m": 19.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200416:1410", + "P": 3701.88, + "G(i)": 789.28, + "H_sun": 40.75, + "T2m": 19.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200416:1510", + "P": 3740.22, + "G(i)": 790.31, + "H_sun": 31.16, + "T2m": 20.37, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200416:1610", + "P": 2690.4, + "G(i)": 553.91, + "H_sun": 20.82, + "T2m": 20.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200416:1710", + "P": 1363.02, + "G(i)": 290.03, + "H_sun": 10.23, + "T2m": 19.61, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200416:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.86, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200416:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.5, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200416:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200416:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.16, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200416:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.07, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200416:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.14, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200417:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.29, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200417:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.9, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.52, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200417:0510", + "P": 31.92, + "G(i)": 15.74, + "H_sun": 4.38, + "T2m": 7.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200417:0610", + "P": 374.4, + "G(i)": 87.45, + "H_sun": 14.93, + "T2m": 9.29, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200417:0710", + "P": 597.66, + "G(i)": 172.46, + "H_sun": 25.47, + "T2m": 11.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200417:0810", + "P": 1876.32, + "G(i)": 392.41, + "H_sun": 35.59, + "T2m": 14.6, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200417:0910", + "P": 2893.98, + "G(i)": 599.38, + "H_sun": 44.67, + "T2m": 16.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200417:1010", + "P": 3544.02, + "G(i)": 748.61, + "H_sun": 51.71, + "T2m": 18.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200417:1110", + "P": 2972.28, + "G(i)": 624.4, + "H_sun": 55.29, + "T2m": 19.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200417:1210", + "P": 3416.64, + "G(i)": 725.68, + "H_sun": 54.29, + "T2m": 20.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200417:1310", + "P": 2513.64, + "G(i)": 524.41, + "H_sun": 49.05, + "T2m": 21.62, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200417:1410", + "P": 1930.08, + "G(i)": 401.32, + "H_sun": 40.99, + "T2m": 22.1, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200417:1510", + "P": 911.7, + "G(i)": 198.19, + "H_sun": 31.38, + "T2m": 21.86, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200417:1610", + "P": 464.76, + "G(i)": 109.61, + "H_sun": 21.02, + "T2m": 21.13, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200417:1710", + "P": 166.56, + "G(i)": 48.18, + "H_sun": 10.43, + "T2m": 19.76, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200417:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.91, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200417:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.75, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200417:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200417:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.08, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200417:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200418:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200418:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200418:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200418:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200418:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200418:0510", + "P": 28.14, + "G(i)": 14.87, + "H_sun": 4.67, + "T2m": 10.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200418:0610", + "P": 434.58, + "G(i)": 99.69, + "H_sun": 15.21, + "T2m": 10.95, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200418:0710", + "P": 855.42, + "G(i)": 184.39, + "H_sun": 25.76, + "T2m": 12.8, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200418:0810", + "P": 1699.02, + "G(i)": 354.32, + "H_sun": 35.89, + "T2m": 15.01, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200418:0910", + "P": 2771.52, + "G(i)": 576.57, + "H_sun": 44.99, + "T2m": 16.8, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200418:1010", + "P": 3311.94, + "G(i)": 698.01, + "H_sun": 52.05, + "T2m": 18.48, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200418:1110", + "P": 3353.52, + "G(i)": 712.15, + "H_sun": 55.64, + "T2m": 20.14, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200418:1210", + "P": 3932.1, + "G(i)": 848.5, + "H_sun": 54.62, + "T2m": 21.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200418:1310", + "P": 2546.1, + "G(i)": 533.26, + "H_sun": 49.34, + "T2m": 22.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200418:1410", + "P": 1734.18, + "G(i)": 362.64, + "H_sun": 41.24, + "T2m": 22.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200418:1510", + "P": 2007.9, + "G(i)": 413.97, + "H_sun": 31.59, + "T2m": 22.19, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200418:1610", + "P": 2491.08, + "G(i)": 509.1, + "H_sun": 21.22, + "T2m": 21.49, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200418:1710", + "P": 1221.12, + "G(i)": 260.98, + "H_sun": 10.63, + "T2m": 20.19, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200418:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.36, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200418:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.4, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200418:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200418:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200418:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200418:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.24, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200419:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200419:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200419:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200419:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200419:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200419:0510", + "P": 41.46, + "G(i)": 18.36, + "H_sun": 4.96, + "T2m": 10.15, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200419:0610", + "P": 438.3, + "G(i)": 100.56, + "H_sun": 15.5, + "T2m": 11.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200419:0710", + "P": 740.46, + "G(i)": 189.05, + "H_sun": 26.05, + "T2m": 13.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200419:0810", + "P": 1549.26, + "G(i)": 322.55, + "H_sun": 36.19, + "T2m": 15.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200419:0910", + "P": 1577.16, + "G(i)": 328.34, + "H_sun": 45.31, + "T2m": 17.72, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200419:1010", + "P": 1715.76, + "G(i)": 358.33, + "H_sun": 52.4, + "T2m": 19.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200419:1110", + "P": 986.76, + "G(i)": 213.23, + "H_sun": 55.99, + "T2m": 20.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200419:1210", + "P": 1598.28, + "G(i)": 337.06, + "H_sun": 54.94, + "T2m": 20.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200419:1310", + "P": 613.74, + "G(i)": 139.99, + "H_sun": 49.61, + "T2m": 21.48, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200419:1410", + "P": 553.86, + "G(i)": 127.94, + "H_sun": 41.47, + "T2m": 21.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200419:1510", + "P": 284.34, + "G(i)": 73.24, + "H_sun": 31.81, + "T2m": 21.01, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200419:1610", + "P": 179.52, + "G(i)": 50.99, + "H_sun": 21.43, + "T2m": 20.06, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200419:1710", + "P": 100.8, + "G(i)": 33.38, + "H_sun": 10.83, + "T2m": 18.75, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200419:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200419:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200419:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200419:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200419:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200419:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200420:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200420:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200420:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200420:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200420:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.63, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200420:0510", + "P": 0.0, + "G(i)": 4.37, + "H_sun": 5.24, + "T2m": 13.6, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200420:0610", + "P": 76.26, + "G(i)": 27.11, + "H_sun": 15.77, + "T2m": 13.43, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200420:0710", + "P": 267.3, + "G(i)": 67.68, + "H_sun": 26.33, + "T2m": 13.68, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200420:0810", + "P": 365.82, + "G(i)": 87.15, + "H_sun": 36.48, + "T2m": 13.86, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200420:0910", + "P": 295.8, + "G(i)": 73.24, + "H_sun": 45.62, + "T2m": 13.59, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200420:1010", + "P": 623.7, + "G(i)": 136.28, + "H_sun": 52.74, + "T2m": 13.36, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1110", + "P": 600.12, + "G(i)": 131.65, + "H_sun": 56.34, + "T2m": 13.11, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200420:1210", + "P": 522.12, + "G(i)": 116.82, + "H_sun": 55.26, + "T2m": 13.02, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200420:1310", + "P": 339.12, + "G(i)": 81.59, + "H_sun": 49.89, + "T2m": 13.06, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200420:1410", + "P": 268.86, + "G(i)": 67.68, + "H_sun": 41.71, + "T2m": 12.93, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200420:1510", + "P": 287.46, + "G(i)": 71.39, + "H_sun": 32.02, + "T2m": 12.94, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1610", + "P": 218.28, + "G(i)": 57.48, + "H_sun": 21.63, + "T2m": 12.83, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200420:1710", + "P": 60.06, + "G(i)": 23.18, + "H_sun": 11.03, + "T2m": 12.82, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.72, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.33, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200420:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.19, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200420:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.97, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200420:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.76, + "WS10m": 4.07, + "Int": 0.0 + }, + { + "time": "20200420:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.54, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200421:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.37, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200421:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.08, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200421:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.82, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200421:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.56, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200421:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200421:0510", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 5.52, + "T2m": 10.18, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200421:0610", + "P": 101.04, + "G(i)": 32.35, + "H_sun": 16.05, + "T2m": 10.09, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200421:0710", + "P": 257.82, + "G(i)": 64.9, + "H_sun": 26.61, + "T2m": 10.53, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200421:0810", + "P": 314.04, + "G(i)": 76.02, + "H_sun": 36.77, + "T2m": 10.76, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200421:0910", + "P": 521.28, + "G(i)": 115.89, + "H_sun": 45.93, + "T2m": 11.14, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200421:1010", + "P": 481.92, + "G(i)": 108.47, + "H_sun": 53.07, + "T2m": 11.24, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200421:1110", + "P": 408.9, + "G(i)": 94.56, + "H_sun": 56.69, + "T2m": 11.38, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200421:1210", + "P": 360.9, + "G(i)": 85.29, + "H_sun": 55.58, + "T2m": 11.33, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200421:1310", + "P": 361.02, + "G(i)": 85.29, + "H_sun": 50.16, + "T2m": 11.26, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200421:1410", + "P": 472.14, + "G(i)": 106.62, + "H_sun": 41.94, + "T2m": 11.32, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200421:1510", + "P": 266.16, + "G(i)": 66.75, + "H_sun": 32.23, + "T2m": 11.26, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200421:1610", + "P": 242.82, + "G(i)": 62.12, + "H_sun": 21.82, + "T2m": 11.27, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200421:1710", + "P": 295.08, + "G(i)": 72.63, + "H_sun": 11.23, + "T2m": 11.17, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200421:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.82, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200421:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.12, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200421:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.06, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200421:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.01, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200421:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.0, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200421:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.02, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200422:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.12, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200422:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.34, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200422:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200422:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.32, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200422:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200422:0510", + "P": 22.02, + "G(i)": 13.12, + "H_sun": 5.79, + "T2m": 10.07, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200422:0610", + "P": 454.92, + "G(i)": 103.19, + "H_sun": 16.32, + "T2m": 10.48, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200422:0710", + "P": 855.06, + "G(i)": 206.57, + "H_sun": 26.88, + "T2m": 12.48, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200422:0810", + "P": 2050.2, + "G(i)": 427.06, + "H_sun": 37.06, + "T2m": 14.57, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200422:0910", + "P": 3292.2, + "G(i)": 664.77, + "H_sun": 46.24, + "T2m": 16.15, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200422:1010", + "P": 4232.28, + "G(i)": 866.75, + "H_sun": 53.4, + "T2m": 16.9, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200422:1110", + "P": 4687.86, + "G(i)": 974.58, + "H_sun": 57.03, + "T2m": 17.82, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200422:1210", + "P": 5084.04, + "G(i)": 1071.02, + "H_sun": 55.9, + "T2m": 18.74, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200422:1310", + "P": 5037.24, + "G(i)": 1065.61, + "H_sun": 50.43, + "T2m": 19.4, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200422:1410", + "P": 4553.22, + "G(i)": 953.77, + "H_sun": 42.18, + "T2m": 19.77, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200422:1510", + "P": 3856.26, + "G(i)": 793.5, + "H_sun": 32.44, + "T2m": 19.68, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200422:1610", + "P": 2780.82, + "G(i)": 565.9, + "H_sun": 22.02, + "T2m": 19.47, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200422:1710", + "P": 1416.12, + "G(i)": 299.99, + "H_sun": 11.43, + "T2m": 18.72, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200422:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200422:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200422:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200422:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200422:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200422:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.82, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200423:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200423:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200423:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200423:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200423:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200423:0510", + "P": 89.88, + "G(i)": 29.73, + "H_sun": 6.06, + "T2m": 8.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200423:0610", + "P": 252.6, + "G(i)": 63.84, + "H_sun": 16.59, + "T2m": 9.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200423:0710", + "P": 686.16, + "G(i)": 189.48, + "H_sun": 27.15, + "T2m": 12.28, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200423:0810", + "P": 2043.96, + "G(i)": 433.65, + "H_sun": 37.34, + "T2m": 15.21, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200423:0910", + "P": 3221.94, + "G(i)": 670.78, + "H_sun": 46.54, + "T2m": 17.27, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200423:1010", + "P": 4138.56, + "G(i)": 875.05, + "H_sun": 53.73, + "T2m": 18.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200423:1110", + "P": 4690.44, + "G(i)": 1018.24, + "H_sun": 57.37, + "T2m": 19.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200423:1210", + "P": 4888.8, + "G(i)": 1081.7, + "H_sun": 56.21, + "T2m": 20.08, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200423:1310", + "P": 4833.72, + "G(i)": 1069.79, + "H_sun": 50.7, + "T2m": 20.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200423:1410", + "P": 4491.42, + "G(i)": 976.98, + "H_sun": 42.4, + "T2m": 20.83, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200423:1510", + "P": 3846.54, + "G(i)": 814.69, + "H_sun": 32.64, + "T2m": 20.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200423:1610", + "P": 2829.66, + "G(i)": 584.43, + "H_sun": 22.22, + "T2m": 20.46, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200423:1710", + "P": 1489.14, + "G(i)": 316.56, + "H_sun": 11.63, + "T2m": 19.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200423:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.24, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200423:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.99, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200423:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200423:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200423:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200423:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200424:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200424:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.07, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200424:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200424:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200424:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.38, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200424:0510", + "P": 97.2, + "G(i)": 31.48, + "H_sun": 6.33, + "T2m": 9.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200424:0610", + "P": 290.88, + "G(i)": 71.71, + "H_sun": 16.85, + "T2m": 10.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200424:0710", + "P": 710.16, + "G(i)": 193.26, + "H_sun": 27.42, + "T2m": 13.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200424:0810", + "P": 2047.08, + "G(i)": 433.64, + "H_sun": 37.62, + "T2m": 16.49, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200424:0910", + "P": 3196.2, + "G(i)": 666.38, + "H_sun": 46.84, + "T2m": 18.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200424:1010", + "P": 4048.08, + "G(i)": 867.26, + "H_sun": 54.06, + "T2m": 19.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200424:1110", + "P": 4588.02, + "G(i)": 1007.19, + "H_sun": 57.7, + "T2m": 20.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200424:1210", + "P": 4844.16, + "G(i)": 1074.05, + "H_sun": 56.52, + "T2m": 22.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200424:1310", + "P": 4821.18, + "G(i)": 1062.39, + "H_sun": 50.97, + "T2m": 22.71, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200424:1410", + "P": 4447.26, + "G(i)": 963.13, + "H_sun": 42.63, + "T2m": 23.25, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200424:1510", + "P": 3714.0, + "G(i)": 785.04, + "H_sun": 32.85, + "T2m": 23.31, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200424:1610", + "P": 2707.44, + "G(i)": 560.77, + "H_sun": 22.41, + "T2m": 22.82, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200424:1710", + "P": 1451.04, + "G(i)": 310.18, + "H_sun": 11.82, + "T2m": 21.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200424:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.8, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200424:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.41, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200424:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200424:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.76, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200424:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.73, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200424:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.06, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200425:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.45, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200425:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200425:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200425:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.68, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200425:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200425:0510", + "P": 66.42, + "G(i)": 24.48, + "H_sun": 6.59, + "T2m": 10.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200425:0610", + "P": 369.6, + "G(i)": 87.45, + "H_sun": 17.11, + "T2m": 12.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200425:0710", + "P": 846.72, + "G(i)": 182.2, + "H_sun": 27.68, + "T2m": 14.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200425:0810", + "P": 1894.68, + "G(i)": 393.72, + "H_sun": 37.89, + "T2m": 16.81, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200425:0910", + "P": 3179.4, + "G(i)": 652.08, + "H_sun": 47.14, + "T2m": 18.4, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200425:1010", + "P": 4070.34, + "G(i)": 850.33, + "H_sun": 54.37, + "T2m": 19.76, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200425:1110", + "P": 4645.68, + "G(i)": 986.24, + "H_sun": 58.03, + "T2m": 20.8, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200425:1210", + "P": 4921.32, + "G(i)": 1051.6, + "H_sun": 56.83, + "T2m": 21.45, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200425:1310", + "P": 4879.74, + "G(i)": 1037.57, + "H_sun": 51.23, + "T2m": 21.65, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200425:1410", + "P": 4458.9, + "G(i)": 938.69, + "H_sun": 42.86, + "T2m": 21.72, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200425:1510", + "P": 3724.38, + "G(i)": 769.22, + "H_sun": 33.05, + "T2m": 21.48, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200425:1610", + "P": 2736.3, + "G(i)": 557.07, + "H_sun": 22.6, + "T2m": 20.89, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200425:1710", + "P": 1494.66, + "G(i)": 315.47, + "H_sun": 12.02, + "T2m": 19.71, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200425:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.09, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200425:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.28, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200425:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.96, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200425:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200425:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.57, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200425:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.99, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200426:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.64, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200426:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.19, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200426:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.82, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200426:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200426:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200426:0510", + "P": 124.86, + "G(i)": 37.6, + "H_sun": 6.85, + "T2m": 10.1, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200426:0610", + "P": 433.02, + "G(i)": 99.69, + "H_sun": 17.36, + "T2m": 11.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200426:0710", + "P": 930.84, + "G(i)": 216.78, + "H_sun": 27.93, + "T2m": 14.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200426:0810", + "P": 1029.84, + "G(i)": 217.34, + "H_sun": 38.16, + "T2m": 15.86, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200426:0910", + "P": 2162.22, + "G(i)": 444.99, + "H_sun": 47.42, + "T2m": 17.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200426:1010", + "P": 974.28, + "G(i)": 208.6, + "H_sun": 54.69, + "T2m": 18.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200426:1110", + "P": 3446.1, + "G(i)": 720.41, + "H_sun": 58.36, + "T2m": 19.58, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200426:1210", + "P": 3797.46, + "G(i)": 796.82, + "H_sun": 57.13, + "T2m": 20.1, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200426:1310", + "P": 4168.14, + "G(i)": 872.94, + "H_sun": 51.49, + "T2m": 20.43, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200426:1410", + "P": 979.8, + "G(i)": 210.14, + "H_sun": 43.08, + "T2m": 20.5, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200426:1510", + "P": 2693.28, + "G(i)": 547.38, + "H_sun": 33.25, + "T2m": 20.17, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200426:1610", + "P": 1102.74, + "G(i)": 231.96, + "H_sun": 22.79, + "T2m": 19.35, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200426:1710", + "P": 1316.82, + "G(i)": 279.03, + "H_sun": 12.21, + "T2m": 18.56, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200426:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.6, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200426:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.21, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200426:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.1, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200426:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.39, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200426:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200426:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200427:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200427:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200427:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200427:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.34, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0510", + "P": 106.98, + "G(i)": 34.1, + "H_sun": 7.11, + "T2m": 13.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200427:0610", + "P": 506.28, + "G(i)": 114.55, + "H_sun": 17.61, + "T2m": 13.55, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0710", + "P": 880.32, + "G(i)": 212.83, + "H_sun": 28.19, + "T2m": 14.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0810", + "P": 1731.9, + "G(i)": 358.83, + "H_sun": 38.42, + "T2m": 15.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200427:0910", + "P": 2350.02, + "G(i)": 482.87, + "H_sun": 47.71, + "T2m": 16.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200427:1010", + "P": 2041.62, + "G(i)": 419.57, + "H_sun": 55.0, + "T2m": 16.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200427:1110", + "P": 1936.02, + "G(i)": 398.9, + "H_sun": 58.68, + "T2m": 17.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200427:1210", + "P": 4600.2, + "G(i)": 985.38, + "H_sun": 57.43, + "T2m": 17.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200427:1310", + "P": 2879.52, + "G(i)": 591.27, + "H_sun": 51.74, + "T2m": 18.64, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200427:1410", + "P": 3613.26, + "G(i)": 746.65, + "H_sun": 43.3, + "T2m": 19.27, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200427:1510", + "P": 3229.38, + "G(i)": 660.6, + "H_sun": 33.45, + "T2m": 19.42, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200427:1610", + "P": 2125.62, + "G(i)": 431.05, + "H_sun": 22.98, + "T2m": 18.81, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200427:1710", + "P": 555.6, + "G(i)": 126.89, + "H_sun": 12.4, + "T2m": 18.09, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200427:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.32, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200427:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.2, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200427:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.55, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200427:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.86, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200427:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200427:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.3, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200428:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.09, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200428:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200428:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200428:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.52, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200428:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.41, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200428:0510", + "P": 44.04, + "G(i)": 19.24, + "H_sun": 7.36, + "T2m": 13.4, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200428:0610", + "P": 196.68, + "G(i)": 53.34, + "H_sun": 17.86, + "T2m": 13.74, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200428:0710", + "P": 966.0, + "G(i)": 207.48, + "H_sun": 28.43, + "T2m": 14.53, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200428:0810", + "P": 485.76, + "G(i)": 111.25, + "H_sun": 38.68, + "T2m": 15.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200428:0910", + "P": 1745.16, + "G(i)": 357.57, + "H_sun": 47.99, + "T2m": 15.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200428:1010", + "P": 2007.0, + "G(i)": 410.33, + "H_sun": 55.3, + "T2m": 16.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200428:1110", + "P": 2135.34, + "G(i)": 438.21, + "H_sun": 59.0, + "T2m": 17.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200428:1210", + "P": 3681.42, + "G(i)": 769.38, + "H_sun": 57.72, + "T2m": 17.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200428:1310", + "P": 814.74, + "G(i)": 176.15, + "H_sun": 52.0, + "T2m": 16.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200428:1410", + "P": 1056.66, + "G(i)": 222.78, + "H_sun": 43.52, + "T2m": 16.39, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200428:1510", + "P": 148.14, + "G(i)": 43.57, + "H_sun": 33.64, + "T2m": 16.14, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200428:1610", + "P": 520.38, + "G(i)": 118.69, + "H_sun": 23.17, + "T2m": 16.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200428:1710", + "P": 23.82, + "G(i)": 13.91, + "H_sun": 12.59, + "T2m": 15.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200428:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200428:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200428:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.06, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200428:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.46, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200428:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200428:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200429:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200429:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200429:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200429:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200429:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.1, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200429:0510", + "P": 157.68, + "G(i)": 44.6, + "H_sun": 7.6, + "T2m": 10.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200429:0610", + "P": 520.98, + "G(i)": 116.3, + "H_sun": 18.1, + "T2m": 11.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200429:0710", + "P": 915.12, + "G(i)": 194.97, + "H_sun": 28.68, + "T2m": 13.92, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200429:0810", + "P": 1673.58, + "G(i)": 345.58, + "H_sun": 38.93, + "T2m": 15.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200429:0910", + "P": 3253.38, + "G(i)": 673.81, + "H_sun": 48.26, + "T2m": 17.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200429:1010", + "P": 4073.82, + "G(i)": 870.92, + "H_sun": 55.61, + "T2m": 18.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200429:1110", + "P": 4560.36, + "G(i)": 1015.26, + "H_sun": 59.31, + "T2m": 19.97, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200429:1210", + "P": 4783.26, + "G(i)": 1083.12, + "H_sun": 58.01, + "T2m": 20.8, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200429:1310", + "P": 4728.42, + "G(i)": 1071.29, + "H_sun": 52.25, + "T2m": 21.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200429:1410", + "P": 4399.14, + "G(i)": 977.91, + "H_sun": 43.73, + "T2m": 21.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200429:1510", + "P": 3721.86, + "G(i)": 801.33, + "H_sun": 33.84, + "T2m": 22.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200429:1610", + "P": 2799.6, + "G(i)": 586.33, + "H_sun": 23.36, + "T2m": 22.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200429:1710", + "P": 1531.32, + "G(i)": 327.41, + "H_sun": 12.78, + "T2m": 21.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200429:1810", + "P": 4.98, + "G(i)": 7.87, + "H_sun": 2.46, + "T2m": 19.64, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200429:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.43, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200429:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.95, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200429:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.66, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200429:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200429:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200430:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200430:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.39, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200430:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.41, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200430:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200430:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200430:0510", + "P": 124.02, + "G(i)": 37.6, + "H_sun": 7.84, + "T2m": 11.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:0610", + "P": 310.08, + "G(i)": 76.08, + "H_sun": 18.33, + "T2m": 12.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200430:0710", + "P": 945.84, + "G(i)": 222.1, + "H_sun": 28.91, + "T2m": 14.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200430:0810", + "P": 1262.58, + "G(i)": 263.09, + "H_sun": 39.18, + "T2m": 15.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200430:0910", + "P": 1856.16, + "G(i)": 381.52, + "H_sun": 48.53, + "T2m": 16.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:1010", + "P": 2093.4, + "G(i)": 430.9, + "H_sun": 55.9, + "T2m": 17.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:1110", + "P": 1741.62, + "G(i)": 362.25, + "H_sun": 59.62, + "T2m": 17.97, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200430:1210", + "P": 586.26, + "G(i)": 132.58, + "H_sun": 58.3, + "T2m": 18.09, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200430:1310", + "P": 1355.94, + "G(i)": 283.32, + "H_sun": 52.49, + "T2m": 17.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:1410", + "P": 1597.38, + "G(i)": 331.09, + "H_sun": 43.94, + "T2m": 18.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200430:1510", + "P": 2479.2, + "G(i)": 510.58, + "H_sun": 34.03, + "T2m": 18.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200430:1610", + "P": 1423.38, + "G(i)": 293.84, + "H_sun": 23.55, + "T2m": 17.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200430:1710", + "P": 567.24, + "G(i)": 128.52, + "H_sun": 12.97, + "T2m": 16.84, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200430:1810", + "P": 0.9, + "G(i)": 6.12, + "H_sun": 2.65, + "T2m": 15.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200430:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.9, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200430:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.62, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200430:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200430:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200430:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200501:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200501:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200501:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.27, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200501:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200501:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0510", + "P": 153.9, + "G(i)": 43.72, + "H_sun": 8.08, + "T2m": 9.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0610", + "P": 435.48, + "G(i)": 99.69, + "H_sun": 18.56, + "T2m": 10.34, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0710", + "P": 998.16, + "G(i)": 212.69, + "H_sun": 29.15, + "T2m": 13.05, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0810", + "P": 1894.86, + "G(i)": 393.2, + "H_sun": 39.42, + "T2m": 14.91, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200501:0910", + "P": 2668.44, + "G(i)": 550.19, + "H_sun": 48.79, + "T2m": 16.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200501:1010", + "P": 3934.44, + "G(i)": 835.34, + "H_sun": 56.19, + "T2m": 18.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200501:1110", + "P": 2292.18, + "G(i)": 478.65, + "H_sun": 59.93, + "T2m": 19.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200501:1210", + "P": 2621.22, + "G(i)": 555.22, + "H_sun": 58.59, + "T2m": 20.69, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200501:1310", + "P": 3932.1, + "G(i)": 861.9, + "H_sun": 52.74, + "T2m": 21.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200501:1410", + "P": 1913.76, + "G(i)": 404.66, + "H_sun": 44.15, + "T2m": 22.0, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200501:1510", + "P": 304.56, + "G(i)": 77.88, + "H_sun": 34.22, + "T2m": 22.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200501:1610", + "P": 343.56, + "G(i)": 85.29, + "H_sun": 23.73, + "T2m": 20.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200501:1710", + "P": 507.06, + "G(i)": 117.66, + "H_sun": 13.15, + "T2m": 18.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200501:1810", + "P": 0.0, + "G(i)": 3.5, + "H_sun": 2.85, + "T2m": 17.4, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200501:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200501:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.33, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200501:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200501:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200501:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200502:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200502:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200502:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200502:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.66, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200502:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.22, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200502:0510", + "P": 145.62, + "G(i)": 41.97, + "H_sun": 8.31, + "T2m": 9.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200502:0610", + "P": 366.42, + "G(i)": 86.57, + "H_sun": 18.79, + "T2m": 11.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200502:0710", + "P": 900.3, + "G(i)": 220.82, + "H_sun": 29.37, + "T2m": 14.19, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200502:0810", + "P": 2110.26, + "G(i)": 446.76, + "H_sun": 39.66, + "T2m": 16.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200502:0910", + "P": 3243.66, + "G(i)": 674.31, + "H_sun": 49.05, + "T2m": 19.46, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200502:1010", + "P": 4090.5, + "G(i)": 863.52, + "H_sun": 56.48, + "T2m": 21.55, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200502:1110", + "P": 4650.24, + "G(i)": 998.23, + "H_sun": 60.23, + "T2m": 22.91, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200502:1210", + "P": 4873.02, + "G(i)": 1056.02, + "H_sun": 58.87, + "T2m": 23.87, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200502:1310", + "P": 4810.38, + "G(i)": 1047.51, + "H_sun": 52.98, + "T2m": 24.5, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200502:1410", + "P": 4427.22, + "G(i)": 954.99, + "H_sun": 44.36, + "T2m": 24.88, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200502:1510", + "P": 3727.8, + "G(i)": 785.07, + "H_sun": 34.41, + "T2m": 24.95, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200502:1610", + "P": 2788.44, + "G(i)": 578.31, + "H_sun": 23.91, + "T2m": 24.56, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200502:1710", + "P": 1135.8, + "G(i)": 246.97, + "H_sun": 13.34, + "T2m": 23.46, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200502:1810", + "P": 11.28, + "G(i)": 10.2, + "H_sun": 3.05, + "T2m": 21.51, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200502:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.8, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200502:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.44, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200502:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.39, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200502:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.35, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200502:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200503:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200503:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.29, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200503:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200503:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200503:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200503:0510", + "P": 156.84, + "G(i)": 44.6, + "H_sun": 8.54, + "T2m": 11.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200503:0610", + "P": 269.88, + "G(i)": 68.21, + "H_sun": 19.01, + "T2m": 13.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200503:0710", + "P": 757.38, + "G(i)": 204.82, + "H_sun": 29.6, + "T2m": 15.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200503:0810", + "P": 2080.44, + "G(i)": 441.01, + "H_sun": 39.9, + "T2m": 18.07, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200503:0910", + "P": 3211.68, + "G(i)": 663.95, + "H_sun": 49.31, + "T2m": 19.69, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200503:1010", + "P": 4043.7, + "G(i)": 848.23, + "H_sun": 56.76, + "T2m": 20.79, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200503:1110", + "P": 4578.84, + "G(i)": 979.19, + "H_sun": 60.53, + "T2m": 21.54, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200503:1210", + "P": 4854.78, + "G(i)": 1047.53, + "H_sun": 59.15, + "T2m": 22.22, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200503:1310", + "P": 4784.46, + "G(i)": 1032.38, + "H_sun": 53.22, + "T2m": 22.66, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200503:1410", + "P": 4373.1, + "G(i)": 934.49, + "H_sun": 44.57, + "T2m": 22.88, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200503:1510", + "P": 3682.5, + "G(i)": 773.13, + "H_sun": 34.6, + "T2m": 22.79, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200503:1610", + "P": 2675.58, + "G(i)": 554.16, + "H_sun": 24.09, + "T2m": 22.34, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200503:1710", + "P": 1469.76, + "G(i)": 314.79, + "H_sun": 13.52, + "T2m": 21.61, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200503:1810", + "P": 26.88, + "G(i)": 15.82, + "H_sun": 3.24, + "T2m": 19.8, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200503:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200503:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.62, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200503:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200503:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.81, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200503:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.11, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200504:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200504:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200504:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200504:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.71, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200504:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.16, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200504:0510", + "P": 119.82, + "G(i)": 36.73, + "H_sun": 8.76, + "T2m": 11.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200504:0610", + "P": 552.0, + "G(i)": 123.3, + "H_sun": 19.23, + "T2m": 13.57, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200504:0710", + "P": 1107.0, + "G(i)": 240.13, + "H_sun": 29.82, + "T2m": 14.62, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200504:0810", + "P": 1914.12, + "G(i)": 395.04, + "H_sun": 40.12, + "T2m": 15.95, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200504:0910", + "P": 2637.3, + "G(i)": 540.93, + "H_sun": 49.56, + "T2m": 17.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200504:1010", + "P": 3845.16, + "G(i)": 808.11, + "H_sun": 57.04, + "T2m": 18.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200504:1110", + "P": 4594.98, + "G(i)": 993.05, + "H_sun": 60.82, + "T2m": 19.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200504:1210", + "P": 4786.02, + "G(i)": 1056.16, + "H_sun": 59.42, + "T2m": 20.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:1310", + "P": 4656.48, + "G(i)": 1041.43, + "H_sun": 53.45, + "T2m": 21.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200504:1410", + "P": 4287.3, + "G(i)": 949.69, + "H_sun": 44.77, + "T2m": 21.88, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200504:1510", + "P": 3677.1, + "G(i)": 786.75, + "H_sun": 34.78, + "T2m": 22.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:1610", + "P": 2705.58, + "G(i)": 566.96, + "H_sun": 24.27, + "T2m": 22.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:1710", + "P": 1500.36, + "G(i)": 322.12, + "H_sun": 13.7, + "T2m": 21.76, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200504:1810", + "P": 32.88, + "G(i)": 17.49, + "H_sun": 3.43, + "T2m": 20.16, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200504:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200504:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.63, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200504:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200504:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.36, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200505:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200505:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200505:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200505:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200505:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.11, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200505:0510", + "P": 168.96, + "G(i)": 47.22, + "H_sun": 8.98, + "T2m": 11.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200505:0610", + "P": 499.32, + "G(i)": 112.81, + "H_sun": 19.44, + "T2m": 12.46, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200505:0710", + "P": 792.12, + "G(i)": 208.92, + "H_sun": 30.03, + "T2m": 14.23, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200505:0810", + "P": 2047.26, + "G(i)": 429.29, + "H_sun": 40.35, + "T2m": 15.67, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200505:0910", + "P": 2927.82, + "G(i)": 608.37, + "H_sun": 49.8, + "T2m": 17.26, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200505:1010", + "P": 3474.66, + "G(i)": 735.67, + "H_sun": 57.31, + "T2m": 18.77, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200505:1110", + "P": 3715.26, + "G(i)": 802.22, + "H_sun": 61.11, + "T2m": 20.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200505:1210", + "P": 3524.34, + "G(i)": 761.61, + "H_sun": 59.69, + "T2m": 21.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200505:1310", + "P": 4440.72, + "G(i)": 980.4, + "H_sun": 53.68, + "T2m": 22.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200505:1410", + "P": 4138.26, + "G(i)": 896.43, + "H_sun": 44.97, + "T2m": 22.68, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200505:1510", + "P": 3443.82, + "G(i)": 726.99, + "H_sun": 34.97, + "T2m": 22.81, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200505:1610", + "P": 1849.14, + "G(i)": 384.22, + "H_sun": 24.45, + "T2m": 22.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200505:1710", + "P": 392.4, + "G(i)": 95.59, + "H_sun": 13.89, + "T2m": 21.54, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200505:1810", + "P": 14.22, + "G(i)": 11.13, + "H_sun": 3.62, + "T2m": 19.99, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200505:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.44, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200505:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.44, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200505:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200505:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200505:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200506:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200506:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.6, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200506:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200506:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200506:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200506:0510", + "P": 159.54, + "G(i)": 45.47, + "H_sun": 9.19, + "T2m": 13.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200506:0610", + "P": 301.98, + "G(i)": 75.2, + "H_sun": 19.65, + "T2m": 15.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200506:0710", + "P": 839.28, + "G(i)": 216.33, + "H_sun": 30.24, + "T2m": 16.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200506:0810", + "P": 2079.72, + "G(i)": 442.19, + "H_sun": 40.56, + "T2m": 17.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200506:0910", + "P": 3142.86, + "G(i)": 656.38, + "H_sun": 50.03, + "T2m": 19.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200506:1010", + "P": 3867.36, + "G(i)": 820.23, + "H_sun": 57.57, + "T2m": 21.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200506:1110", + "P": 4373.76, + "G(i)": 935.61, + "H_sun": 61.39, + "T2m": 21.68, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200506:1210", + "P": 4648.2, + "G(i)": 1004.06, + "H_sun": 59.96, + "T2m": 22.58, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200506:1310", + "P": 4697.82, + "G(i)": 1006.59, + "H_sun": 53.91, + "T2m": 22.79, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200506:1410", + "P": 4310.34, + "G(i)": 903.03, + "H_sun": 45.17, + "T2m": 22.31, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200506:1510", + "P": 3718.14, + "G(i)": 763.11, + "H_sun": 35.15, + "T2m": 21.45, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200506:1610", + "P": 1861.32, + "G(i)": 380.23, + "H_sun": 24.63, + "T2m": 20.98, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200506:1710", + "P": 1231.5, + "G(i)": 261.54, + "H_sun": 14.06, + "T2m": 20.12, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200506:1810", + "P": 28.92, + "G(i)": 16.21, + "H_sun": 3.81, + "T2m": 18.79, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200506:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.95, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200506:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.46, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200506:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.62, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200506:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.05, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200506:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200507:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200507:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200507:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200507:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.41, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200507:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200507:0510", + "P": 163.74, + "G(i)": 46.35, + "H_sun": 9.4, + "T2m": 13.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200507:0610", + "P": 530.76, + "G(i)": 119.8, + "H_sun": 19.85, + "T2m": 14.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200507:0710", + "P": 1037.22, + "G(i)": 239.9, + "H_sun": 30.44, + "T2m": 15.65, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200507:0810", + "P": 2143.8, + "G(i)": 449.29, + "H_sun": 40.78, + "T2m": 16.6, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200507:0910", + "P": 3246.48, + "G(i)": 670.41, + "H_sun": 50.27, + "T2m": 17.69, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200507:1010", + "P": 4011.12, + "G(i)": 855.43, + "H_sun": 57.83, + "T2m": 19.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200507:1110", + "P": 4483.38, + "G(i)": 991.04, + "H_sun": 61.67, + "T2m": 20.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200507:1210", + "P": 4637.28, + "G(i)": 1053.17, + "H_sun": 60.22, + "T2m": 21.31, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200507:1310", + "P": 4578.9, + "G(i)": 1037.7, + "H_sun": 54.13, + "T2m": 21.93, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200507:1410", + "P": 4243.56, + "G(i)": 946.8, + "H_sun": 45.37, + "T2m": 22.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200507:1510", + "P": 3621.54, + "G(i)": 785.68, + "H_sun": 35.33, + "T2m": 22.99, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200507:1610", + "P": 2704.56, + "G(i)": 572.83, + "H_sun": 24.8, + "T2m": 23.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200507:1710", + "P": 1539.96, + "G(i)": 333.58, + "H_sun": 14.24, + "T2m": 23.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200507:1810", + "P": 195.0, + "G(i)": 64.47, + "H_sun": 4.0, + "T2m": 22.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200507:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200507:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200507:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200507:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200507:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200508:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200508:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200508:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200508:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200508:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200508:0510", + "P": 145.86, + "G(i)": 42.85, + "H_sun": 9.6, + "T2m": 14.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200508:0610", + "P": 500.22, + "G(i)": 114.55, + "H_sun": 20.04, + "T2m": 15.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200508:0710", + "P": 1058.34, + "G(i)": 228.51, + "H_sun": 30.63, + "T2m": 17.38, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200508:0810", + "P": 1764.78, + "G(i)": 369.62, + "H_sun": 40.98, + "T2m": 18.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200508:0910", + "P": 2332.56, + "G(i)": 487.09, + "H_sun": 50.49, + "T2m": 19.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200508:1010", + "P": 3590.34, + "G(i)": 767.03, + "H_sun": 58.09, + "T2m": 20.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200508:1110", + "P": 4313.52, + "G(i)": 950.24, + "H_sun": 61.94, + "T2m": 21.43, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200508:1210", + "P": 4651.56, + "G(i)": 1057.53, + "H_sun": 60.47, + "T2m": 22.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200508:1310", + "P": 3205.5, + "G(i)": 692.54, + "H_sun": 54.36, + "T2m": 23.06, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200508:1410", + "P": 3686.58, + "G(i)": 799.15, + "H_sun": 45.56, + "T2m": 23.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200508:1510", + "P": 2681.94, + "G(i)": 565.04, + "H_sun": 35.51, + "T2m": 24.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200508:1610", + "P": 2555.64, + "G(i)": 534.38, + "H_sun": 24.97, + "T2m": 23.95, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200508:1710", + "P": 1554.18, + "G(i)": 333.33, + "H_sun": 14.42, + "T2m": 23.07, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200508:1810", + "P": 133.8, + "G(i)": 46.49, + "H_sun": 4.19, + "T2m": 21.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200508:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.12, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200508:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200508:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200508:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200508:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200509:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.8, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200509:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.34, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200509:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200509:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200509:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.41, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200509:0510", + "P": 91.74, + "G(i)": 30.61, + "H_sun": 9.8, + "T2m": 12.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200509:0610", + "P": 612.48, + "G(i)": 135.54, + "H_sun": 20.24, + "T2m": 14.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200509:0710", + "P": 901.92, + "G(i)": 224.9, + "H_sun": 30.83, + "T2m": 16.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200509:0810", + "P": 2085.84, + "G(i)": 441.84, + "H_sun": 41.18, + "T2m": 18.79, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200509:0910", + "P": 2918.22, + "G(i)": 608.91, + "H_sun": 50.71, + "T2m": 20.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200509:1010", + "P": 3769.26, + "G(i)": 803.33, + "H_sun": 58.34, + "T2m": 21.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200509:1110", + "P": 4385.46, + "G(i)": 951.45, + "H_sun": 62.21, + "T2m": 22.01, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200509:1210", + "P": 4681.5, + "G(i)": 1014.33, + "H_sun": 60.73, + "T2m": 22.3, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200509:1310", + "P": 3644.04, + "G(i)": 766.72, + "H_sun": 54.57, + "T2m": 22.19, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200509:1410", + "P": 4082.4, + "G(i)": 861.44, + "H_sun": 45.75, + "T2m": 22.1, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200509:1510", + "P": 3123.42, + "G(i)": 645.04, + "H_sun": 35.68, + "T2m": 22.2, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200509:1610", + "P": 625.26, + "G(i)": 141.5, + "H_sun": 25.14, + "T2m": 21.67, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200509:1710", + "P": 276.9, + "G(i)": 71.52, + "H_sun": 14.59, + "T2m": 20.58, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200509:1810", + "P": 20.22, + "G(i)": 12.98, + "H_sun": 4.37, + "T2m": 19.39, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200509:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.8, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200509:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.08, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200509:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.56, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200509:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200509:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200510:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200510:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.29, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200510:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.01, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200510:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200510:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200510:0510", + "P": 129.66, + "G(i)": 39.35, + "H_sun": 9.99, + "T2m": 14.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200510:0610", + "P": 595.5, + "G(i)": 132.92, + "H_sun": 20.42, + "T2m": 15.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200510:0710", + "P": 1087.14, + "G(i)": 244.9, + "H_sun": 31.01, + "T2m": 16.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200510:0810", + "P": 1977.84, + "G(i)": 415.74, + "H_sun": 41.38, + "T2m": 16.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200510:0910", + "P": 2917.5, + "G(i)": 606.48, + "H_sun": 50.93, + "T2m": 17.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200510:1010", + "P": 1128.48, + "G(i)": 238.27, + "H_sun": 58.58, + "T2m": 17.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200510:1110", + "P": 4048.62, + "G(i)": 852.47, + "H_sun": 62.48, + "T2m": 18.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200510:1210", + "P": 3571.26, + "G(i)": 745.3, + "H_sun": 60.98, + "T2m": 18.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200510:1310", + "P": 2053.26, + "G(i)": 421.42, + "H_sun": 54.79, + "T2m": 18.61, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200510:1410", + "P": 487.44, + "G(i)": 113.11, + "H_sun": 45.94, + "T2m": 18.69, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200510:1510", + "P": 501.42, + "G(i)": 115.89, + "H_sun": 35.85, + "T2m": 18.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200510:1610", + "P": 203.04, + "G(i)": 55.63, + "H_sun": 25.31, + "T2m": 18.28, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200510:1710", + "P": 47.46, + "G(i)": 20.4, + "H_sun": 14.76, + "T2m": 17.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200510:1810", + "P": 41.7, + "G(i)": 19.45, + "H_sun": 4.55, + "T2m": 16.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200510:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200510:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.41, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200510:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200510:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.87, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200510:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.84, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200511:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200511:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.44, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200511:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.27, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200511:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.15, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200511:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.96, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200511:0510", + "P": 188.1, + "G(i)": 51.59, + "H_sun": 10.17, + "T2m": 13.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200511:0610", + "P": 110.46, + "G(i)": 34.98, + "H_sun": 20.6, + "T2m": 14.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200511:0710", + "P": 198.72, + "G(i)": 53.77, + "H_sun": 31.19, + "T2m": 13.51, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200511:0810", + "P": 1515.72, + "G(i)": 311.71, + "H_sun": 41.57, + "T2m": 14.18, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200511:0910", + "P": 1209.78, + "G(i)": 251.06, + "H_sun": 51.13, + "T2m": 15.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200511:1010", + "P": 1048.02, + "G(i)": 219.72, + "H_sun": 58.82, + "T2m": 15.57, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200511:1110", + "P": 2818.86, + "G(i)": 577.59, + "H_sun": 62.73, + "T2m": 16.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200511:1210", + "P": 2972.88, + "G(i)": 609.31, + "H_sun": 61.22, + "T2m": 17.09, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200511:1310", + "P": 1596.12, + "G(i)": 328.84, + "H_sun": 55.0, + "T2m": 17.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200511:1410", + "P": 1393.56, + "G(i)": 287.86, + "H_sun": 46.12, + "T2m": 16.89, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200511:1510", + "P": 631.38, + "G(i)": 139.99, + "H_sun": 36.03, + "T2m": 16.18, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200511:1610", + "P": 805.2, + "G(i)": 174.1, + "H_sun": 25.48, + "T2m": 16.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200511:1710", + "P": 147.78, + "G(i)": 43.57, + "H_sun": 14.93, + "T2m": 16.57, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200511:1810", + "P": 33.66, + "G(i)": 16.69, + "H_sun": 4.73, + "T2m": 16.26, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200511:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200511:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.57, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200511:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200511:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200511:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200512:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.9, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200512:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200512:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200512:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.66, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200512:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200512:0510", + "P": 193.74, + "G(i)": 52.47, + "H_sun": 10.36, + "T2m": 12.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200512:0610", + "P": 553.62, + "G(i)": 124.17, + "H_sun": 20.78, + "T2m": 14.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200512:0710", + "P": 1025.22, + "G(i)": 217.38, + "H_sun": 31.37, + "T2m": 14.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200512:0810", + "P": 1881.72, + "G(i)": 390.1, + "H_sun": 41.75, + "T2m": 15.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200512:0910", + "P": 3032.64, + "G(i)": 629.11, + "H_sun": 51.34, + "T2m": 17.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200512:1010", + "P": 3307.56, + "G(i)": 691.69, + "H_sun": 59.05, + "T2m": 18.63, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200512:1110", + "P": 3136.26, + "G(i)": 661.62, + "H_sun": 62.99, + "T2m": 19.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200512:1210", + "P": 3159.72, + "G(i)": 670.41, + "H_sun": 61.46, + "T2m": 20.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200512:1310", + "P": 3459.3, + "G(i)": 736.2, + "H_sun": 55.21, + "T2m": 20.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200512:1410", + "P": 4209.48, + "G(i)": 908.59, + "H_sun": 46.3, + "T2m": 21.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200512:1510", + "P": 3129.06, + "G(i)": 648.37, + "H_sun": 36.19, + "T2m": 21.58, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200512:1610", + "P": 2772.0, + "G(i)": 568.67, + "H_sun": 25.64, + "T2m": 20.91, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200512:1710", + "P": 1447.08, + "G(i)": 306.44, + "H_sun": 15.1, + "T2m": 20.09, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200512:1810", + "P": 223.86, + "G(i)": 69.01, + "H_sun": 4.91, + "T2m": 18.99, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200512:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.39, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200512:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200512:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.69, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200512:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.07, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200512:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.97, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200513:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200513:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200513:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200513:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.95, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200513:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.66, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200513:0510", + "P": 10.2, + "G(i)": 9.62, + "H_sun": 10.53, + "T2m": 14.34, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200513:0610", + "P": 72.3, + "G(i)": 26.23, + "H_sun": 20.95, + "T2m": 14.06, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200513:0710", + "P": 208.26, + "G(i)": 55.63, + "H_sun": 31.54, + "T2m": 13.42, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200513:0810", + "P": 253.92, + "G(i)": 64.9, + "H_sun": 41.93, + "T2m": 13.47, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200513:0910", + "P": 489.6, + "G(i)": 111.25, + "H_sun": 51.53, + "T2m": 14.03, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200513:1010", + "P": 731.04, + "G(i)": 157.61, + "H_sun": 59.27, + "T2m": 14.59, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200513:1110", + "P": 656.88, + "G(i)": 143.7, + "H_sun": 63.23, + "T2m": 14.83, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200513:1210", + "P": 430.5, + "G(i)": 100.13, + "H_sun": 61.7, + "T2m": 14.82, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200513:1310", + "P": 397.2, + "G(i)": 93.64, + "H_sun": 55.41, + "T2m": 14.66, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200513:1410", + "P": 284.4, + "G(i)": 71.39, + "H_sun": 46.48, + "T2m": 14.9, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200513:1510", + "P": 224.46, + "G(i)": 59.33, + "H_sun": 36.36, + "T2m": 15.19, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200513:1610", + "P": 189.24, + "G(i)": 51.92, + "H_sun": 25.81, + "T2m": 14.51, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200513:1710", + "P": 331.74, + "G(i)": 80.77, + "H_sun": 15.27, + "T2m": 14.4, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200513:1810", + "P": 1.8, + "G(i)": 6.49, + "H_sun": 5.09, + "T2m": 14.17, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200513:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.59, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200513:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.52, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200513:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200513:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200513:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.53, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200514:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200514:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200514:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200514:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.59, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200514:0510", + "P": 80.28, + "G(i)": 27.98, + "H_sun": 10.7, + "T2m": 12.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:0610", + "P": 519.84, + "G(i)": 117.18, + "H_sun": 21.11, + "T2m": 13.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200514:0710", + "P": 1116.36, + "G(i)": 236.88, + "H_sun": 31.7, + "T2m": 14.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200514:0810", + "P": 1362.36, + "G(i)": 281.76, + "H_sun": 42.1, + "T2m": 14.86, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200514:0910", + "P": 1861.74, + "G(i)": 381.3, + "H_sun": 51.72, + "T2m": 15.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200514:1010", + "P": 3308.28, + "G(i)": 685.48, + "H_sun": 59.49, + "T2m": 16.76, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200514:1110", + "P": 4226.94, + "G(i)": 904.96, + "H_sun": 63.48, + "T2m": 17.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:1210", + "P": 2551.14, + "G(i)": 528.36, + "H_sun": 61.93, + "T2m": 17.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:1310", + "P": 3842.88, + "G(i)": 821.9, + "H_sun": 55.62, + "T2m": 18.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200514:1410", + "P": 3706.26, + "G(i)": 786.52, + "H_sun": 46.66, + "T2m": 18.38, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200514:1510", + "P": 3401.34, + "G(i)": 710.98, + "H_sun": 36.52, + "T2m": 19.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200514:1610", + "P": 1013.16, + "G(i)": 215.01, + "H_sun": 25.97, + "T2m": 18.91, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200514:1710", + "P": 846.84, + "G(i)": 184.35, + "H_sun": 15.43, + "T2m": 18.71, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200514:1810", + "P": 90.3, + "G(i)": 32.41, + "H_sun": 5.26, + "T2m": 17.92, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200514:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200514:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.53, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200514:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.14, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200514:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200515:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.7, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200515:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200515:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.9, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200515:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.85, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:0510", + "P": 135.24, + "G(i)": 40.23, + "H_sun": 10.87, + "T2m": 12.84, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:0610", + "P": 322.5, + "G(i)": 78.7, + "H_sun": 21.27, + "T2m": 13.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200515:0710", + "P": 983.34, + "G(i)": 209.99, + "H_sun": 31.86, + "T2m": 15.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200515:0810", + "P": 1834.44, + "G(i)": 382.72, + "H_sun": 42.27, + "T2m": 16.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200515:0910", + "P": 3032.04, + "G(i)": 630.75, + "H_sun": 51.91, + "T2m": 18.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200515:1010", + "P": 3689.1, + "G(i)": 778.81, + "H_sun": 59.71, + "T2m": 18.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200515:1110", + "P": 2331.78, + "G(i)": 485.06, + "H_sun": 63.71, + "T2m": 20.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:1210", + "P": 1648.86, + "G(i)": 346.51, + "H_sun": 62.16, + "T2m": 20.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:1310", + "P": 3996.0, + "G(i)": 863.86, + "H_sun": 55.81, + "T2m": 21.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:1410", + "P": 3767.94, + "G(i)": 799.61, + "H_sun": 46.83, + "T2m": 21.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:1510", + "P": 1979.58, + "G(i)": 409.57, + "H_sun": 36.69, + "T2m": 20.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:1610", + "P": 720.6, + "G(i)": 160.31, + "H_sun": 26.13, + "T2m": 20.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200515:1710", + "P": 153.54, + "G(i)": 45.43, + "H_sun": 15.6, + "T2m": 20.08, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200515:1810", + "P": 113.46, + "G(i)": 38.37, + "H_sun": 5.43, + "T2m": 19.25, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200515:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.67, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200516:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.29, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200516:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200516:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200516:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200516:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200516:0510", + "P": 259.2, + "G(i)": 66.46, + "H_sun": 11.03, + "T2m": 14.89, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200516:0610", + "P": 637.38, + "G(i)": 140.79, + "H_sun": 21.42, + "T2m": 15.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200516:0710", + "P": 971.52, + "G(i)": 206.74, + "H_sun": 32.01, + "T2m": 15.86, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200516:0810", + "P": 616.38, + "G(i)": 137.21, + "H_sun": 42.43, + "T2m": 16.7, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200516:0910", + "P": 901.74, + "G(i)": 192.84, + "H_sun": 52.09, + "T2m": 17.5, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200516:1010", + "P": 2147.28, + "G(i)": 439.94, + "H_sun": 59.91, + "T2m": 18.08, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200516:1110", + "P": 3170.04, + "G(i)": 660.66, + "H_sun": 63.95, + "T2m": 18.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200516:1210", + "P": 2031.66, + "G(i)": 419.66, + "H_sun": 62.38, + "T2m": 18.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200516:1310", + "P": 1770.54, + "G(i)": 366.77, + "H_sun": 56.01, + "T2m": 19.6, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200516:1410", + "P": 321.9, + "G(i)": 80.66, + "H_sun": 47.01, + "T2m": 20.18, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200516:1510", + "P": 254.22, + "G(i)": 66.75, + "H_sun": 36.85, + "T2m": 20.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200516:1610", + "P": 237.12, + "G(i)": 63.04, + "H_sun": 26.28, + "T2m": 19.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200516:1710", + "P": 146.16, + "G(i)": 43.57, + "H_sun": 15.76, + "T2m": 19.01, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200516:1810", + "P": 11.58, + "G(i)": 10.2, + "H_sun": 5.6, + "T2m": 18.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200516:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.95, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200516:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.44, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200516:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200516:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.31, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200516:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.06, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200517:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200517:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200517:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.46, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200517:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.35, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200517:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200517:0510", + "P": 40.44, + "G(i)": 18.36, + "H_sun": 11.18, + "T2m": 14.32, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200517:0610", + "P": 298.74, + "G(i)": 74.33, + "H_sun": 21.57, + "T2m": 14.63, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200517:0710", + "P": 279.54, + "G(i)": 70.46, + "H_sun": 32.16, + "T2m": 14.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200517:0810", + "P": 1432.44, + "G(i)": 294.73, + "H_sun": 42.58, + "T2m": 15.12, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200517:0910", + "P": 1846.5, + "G(i)": 376.64, + "H_sun": 52.26, + "T2m": 15.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:1010", + "P": 2855.16, + "G(i)": 581.6, + "H_sun": 60.11, + "T2m": 16.25, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200517:1110", + "P": 3257.4, + "G(i)": 668.99, + "H_sun": 64.17, + "T2m": 16.85, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200517:1210", + "P": 2424.3, + "G(i)": 496.71, + "H_sun": 62.6, + "T2m": 17.51, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:1310", + "P": 2843.94, + "G(i)": 584.9, + "H_sun": 56.2, + "T2m": 17.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200517:1410", + "P": 2661.66, + "G(i)": 545.44, + "H_sun": 47.17, + "T2m": 18.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200517:1510", + "P": 2794.68, + "G(i)": 571.15, + "H_sun": 37.0, + "T2m": 18.45, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200517:1610", + "P": 1628.4, + "G(i)": 334.33, + "H_sun": 26.44, + "T2m": 18.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:1710", + "P": 1555.68, + "G(i)": 326.77, + "H_sun": 15.92, + "T2m": 18.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200517:1810", + "P": 337.62, + "G(i)": 95.06, + "H_sun": 5.77, + "T2m": 17.28, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200517:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.46, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200517:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.48, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200517:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.0, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200517:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200518:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200518:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200518:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.03, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200518:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200518:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200518:0510", + "P": 274.08, + "G(i)": 69.08, + "H_sun": 11.33, + "T2m": 13.39, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200518:0610", + "P": 394.74, + "G(i)": 93.57, + "H_sun": 21.71, + "T2m": 15.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200518:0710", + "P": 921.24, + "G(i)": 230.41, + "H_sun": 32.3, + "T2m": 17.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200518:0810", + "P": 2044.8, + "G(i)": 430.09, + "H_sun": 42.73, + "T2m": 18.29, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200518:0910", + "P": 2941.68, + "G(i)": 611.15, + "H_sun": 52.43, + "T2m": 19.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200518:1010", + "P": 3300.42, + "G(i)": 695.51, + "H_sun": 60.31, + "T2m": 20.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200518:1110", + "P": 3816.0, + "G(i)": 824.31, + "H_sun": 64.39, + "T2m": 21.97, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200518:1210", + "P": 4270.92, + "G(i)": 945.99, + "H_sun": 62.81, + "T2m": 22.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200518:1310", + "P": 3906.0, + "G(i)": 865.0, + "H_sun": 56.38, + "T2m": 23.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200518:1410", + "P": 4157.16, + "G(i)": 924.39, + "H_sun": 47.34, + "T2m": 23.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200518:1510", + "P": 3503.34, + "G(i)": 752.9, + "H_sun": 37.16, + "T2m": 24.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200518:1610", + "P": 1443.72, + "G(i)": 305.86, + "H_sun": 26.59, + "T2m": 23.97, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200518:1710", + "P": 1351.44, + "G(i)": 292.91, + "H_sun": 16.07, + "T2m": 23.55, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200518:1810", + "P": 260.82, + "G(i)": 77.24, + "H_sun": 5.93, + "T2m": 23.13, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200518:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200518:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200518:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200518:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200518:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200519:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200519:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200519:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.17, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200519:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200519:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200519:0510", + "P": 57.78, + "G(i)": 22.74, + "H_sun": 11.47, + "T2m": 13.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200519:0610", + "P": 416.52, + "G(i)": 97.94, + "H_sun": 21.85, + "T2m": 15.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200519:0710", + "P": 481.74, + "G(i)": 111.25, + "H_sun": 32.44, + "T2m": 16.84, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200519:0810", + "P": 549.36, + "G(i)": 125.16, + "H_sun": 42.87, + "T2m": 18.54, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200519:0910", + "P": 1634.1, + "G(i)": 339.52, + "H_sun": 52.59, + "T2m": 20.21, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200519:1010", + "P": 2205.6, + "G(i)": 458.87, + "H_sun": 60.5, + "T2m": 21.83, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200519:1110", + "P": 2815.8, + "G(i)": 597.61, + "H_sun": 64.61, + "T2m": 23.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200519:1210", + "P": 3014.46, + "G(i)": 650.44, + "H_sun": 63.02, + "T2m": 23.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200519:1310", + "P": 1819.26, + "G(i)": 382.97, + "H_sun": 56.57, + "T2m": 22.88, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200519:1410", + "P": 586.5, + "G(i)": 135.36, + "H_sun": 47.5, + "T2m": 22.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200519:1510", + "P": 201.9, + "G(i)": 56.55, + "H_sun": 37.31, + "T2m": 23.15, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200519:1610", + "P": 1084.08, + "G(i)": 234.84, + "H_sun": 26.74, + "T2m": 22.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200519:1710", + "P": 198.36, + "G(i)": 55.63, + "H_sun": 16.23, + "T2m": 22.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200519:1810", + "P": 0.0, + "G(i)": 4.64, + "H_sun": 6.09, + "T2m": 21.17, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200519:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.65, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200519:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.34, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200519:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.23, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200519:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.21, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200519:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200520:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.78, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200520:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.4, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200520:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200520:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200520:0510", + "P": 253.56, + "G(i)": 64.71, + "H_sun": 11.61, + "T2m": 12.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200520:0610", + "P": 318.84, + "G(i)": 78.7, + "H_sun": 21.98, + "T2m": 15.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200520:0710", + "P": 1000.02, + "G(i)": 242.02, + "H_sun": 32.57, + "T2m": 18.25, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:0810", + "P": 1918.5, + "G(i)": 406.88, + "H_sun": 43.01, + "T2m": 20.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:0910", + "P": 3160.56, + "G(i)": 673.06, + "H_sun": 52.74, + "T2m": 22.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:1010", + "P": 3932.1, + "G(i)": 859.65, + "H_sun": 60.68, + "T2m": 23.95, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:1110", + "P": 4454.82, + "G(i)": 1000.39, + "H_sun": 64.82, + "T2m": 25.07, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:1210", + "P": 4651.74, + "G(i)": 1064.16, + "H_sun": 63.23, + "T2m": 25.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:1310", + "P": 4573.62, + "G(i)": 1045.3, + "H_sun": 56.75, + "T2m": 26.24, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:1410", + "P": 4296.72, + "G(i)": 957.53, + "H_sun": 47.66, + "T2m": 26.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200520:1510", + "P": 3644.58, + "G(i)": 794.88, + "H_sun": 37.46, + "T2m": 26.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200520:1610", + "P": 2734.44, + "G(i)": 585.28, + "H_sun": 26.89, + "T2m": 26.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200520:1710", + "P": 1579.14, + "G(i)": 345.21, + "H_sun": 16.38, + "T2m": 25.42, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200520:1810", + "P": 358.5, + "G(i)": 102.55, + "H_sun": 6.25, + "T2m": 24.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200520:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200520:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200520:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.11, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200520:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.73, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200520:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.93, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200521:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.77, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200521:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.33, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200521:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.06, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200521:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.73, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200521:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.46, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200521:0510", + "P": 241.56, + "G(i)": 62.96, + "H_sun": 11.74, + "T2m": 15.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200521:0610", + "P": 666.78, + "G(i)": 147.78, + "H_sun": 22.11, + "T2m": 17.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200521:0710", + "P": 1145.76, + "G(i)": 258.68, + "H_sun": 32.7, + "T2m": 19.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200521:0810", + "P": 2096.58, + "G(i)": 449.07, + "H_sun": 43.14, + "T2m": 20.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200521:0910", + "P": 3083.04, + "G(i)": 660.29, + "H_sun": 52.89, + "T2m": 21.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1010", + "P": 3824.82, + "G(i)": 843.48, + "H_sun": 60.86, + "T2m": 23.14, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200521:1110", + "P": 4350.06, + "G(i)": 978.29, + "H_sun": 65.02, + "T2m": 24.14, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200521:1210", + "P": 4561.02, + "G(i)": 1033.57, + "H_sun": 63.42, + "T2m": 24.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200521:1310", + "P": 4502.34, + "G(i)": 1025.39, + "H_sun": 56.92, + "T2m": 25.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200521:1410", + "P": 4140.24, + "G(i)": 931.9, + "H_sun": 47.82, + "T2m": 25.92, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200521:1510", + "P": 3552.06, + "G(i)": 783.19, + "H_sun": 37.61, + "T2m": 25.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1610", + "P": 2643.66, + "G(i)": 567.57, + "H_sun": 27.04, + "T2m": 25.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200521:1710", + "P": 1522.98, + "G(i)": 334.03, + "H_sun": 16.53, + "T2m": 25.69, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1810", + "P": 335.1, + "G(i)": 96.38, + "H_sun": 6.41, + "T2m": 24.81, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200521:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200521:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200521:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200521:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200522:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.21, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200522:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200522:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200522:0510", + "P": 288.3, + "G(i)": 72.58, + "H_sun": 11.87, + "T2m": 15.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200522:0610", + "P": 660.54, + "G(i)": 146.91, + "H_sun": 22.23, + "T2m": 17.93, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200522:0710", + "P": 1130.04, + "G(i)": 258.34, + "H_sun": 32.82, + "T2m": 20.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200522:0810", + "P": 2025.96, + "G(i)": 435.31, + "H_sun": 43.27, + "T2m": 21.77, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200522:0910", + "P": 2984.04, + "G(i)": 638.74, + "H_sun": 53.03, + "T2m": 23.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200522:1010", + "P": 3516.12, + "G(i)": 762.38, + "H_sun": 61.03, + "T2m": 24.45, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:1110", + "P": 3875.28, + "G(i)": 851.89, + "H_sun": 65.22, + "T2m": 25.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200522:1210", + "P": 3963.36, + "G(i)": 872.27, + "H_sun": 63.62, + "T2m": 26.2, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200522:1310", + "P": 3108.36, + "G(i)": 670.51, + "H_sun": 57.09, + "T2m": 26.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200522:1410", + "P": 3502.44, + "G(i)": 760.49, + "H_sun": 47.97, + "T2m": 26.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200522:1510", + "P": 3436.08, + "G(i)": 741.56, + "H_sun": 37.75, + "T2m": 26.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200522:1610", + "P": 2531.94, + "G(i)": 538.69, + "H_sun": 27.18, + "T2m": 25.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:1710", + "P": 1596.6, + "G(i)": 346.9, + "H_sun": 16.67, + "T2m": 24.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:1810", + "P": 363.42, + "G(i)": 102.7, + "H_sun": 6.56, + "T2m": 23.79, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200522:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.78, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200522:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200522:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200522:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200522:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200523:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200523:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200523:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200523:0510", + "P": 265.86, + "G(i)": 68.21, + "H_sun": 11.99, + "T2m": 16.35, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200523:0610", + "P": 542.88, + "G(i)": 124.17, + "H_sun": 22.35, + "T2m": 18.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200523:0710", + "P": 1090.2, + "G(i)": 236.21, + "H_sun": 32.93, + "T2m": 19.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200523:0810", + "P": 1689.42, + "G(i)": 356.8, + "H_sun": 43.39, + "T2m": 21.03, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200523:0910", + "P": 2967.84, + "G(i)": 626.79, + "H_sun": 53.17, + "T2m": 22.39, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200523:1010", + "P": 3470.1, + "G(i)": 741.63, + "H_sun": 61.19, + "T2m": 23.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200523:1110", + "P": 4012.26, + "G(i)": 876.15, + "H_sun": 65.41, + "T2m": 24.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:1210", + "P": 2692.56, + "G(i)": 571.01, + "H_sun": 63.81, + "T2m": 25.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200523:1310", + "P": 3870.72, + "G(i)": 827.91, + "H_sun": 57.26, + "T2m": 25.01, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200523:1410", + "P": 2239.26, + "G(i)": 471.96, + "H_sun": 48.12, + "T2m": 24.43, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200523:1510", + "P": 927.36, + "G(i)": 203.81, + "H_sun": 37.9, + "T2m": 23.87, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200523:1610", + "P": 880.56, + "G(i)": 193.44, + "H_sun": 27.32, + "T2m": 23.22, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200523:1710", + "P": 39.06, + "G(i)": 18.54, + "H_sun": 16.82, + "T2m": 22.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200523:1810", + "P": 90.48, + "G(i)": 31.79, + "H_sun": 6.72, + "T2m": 22.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200523:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200523:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200523:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200523:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200524:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200524:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.05, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200524:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200524:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.14, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200524:0410", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 2.31, + "T2m": 14.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200524:0510", + "P": 280.92, + "G(i)": 70.83, + "H_sun": 12.11, + "T2m": 14.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200524:0610", + "P": 413.52, + "G(i)": 97.94, + "H_sun": 22.46, + "T2m": 16.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200524:0710", + "P": 894.72, + "G(i)": 231.81, + "H_sun": 33.04, + "T2m": 18.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200524:0810", + "P": 2184.72, + "G(i)": 462.08, + "H_sun": 43.5, + "T2m": 19.59, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200524:0910", + "P": 3250.38, + "G(i)": 676.28, + "H_sun": 53.3, + "T2m": 20.77, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200524:1010", + "P": 4063.44, + "G(i)": 863.83, + "H_sun": 61.35, + "T2m": 21.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200524:1110", + "P": 4534.5, + "G(i)": 986.77, + "H_sun": 65.59, + "T2m": 22.71, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200524:1210", + "P": 4554.84, + "G(i)": 996.31, + "H_sun": 63.99, + "T2m": 23.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200524:1310", + "P": 4535.04, + "G(i)": 992.72, + "H_sun": 57.43, + "T2m": 23.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200524:1410", + "P": 4231.2, + "G(i)": 919.53, + "H_sun": 48.27, + "T2m": 23.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200524:1510", + "P": 3391.98, + "G(i)": 722.18, + "H_sun": 38.04, + "T2m": 23.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200524:1610", + "P": 2737.26, + "G(i)": 577.62, + "H_sun": 27.46, + "T2m": 23.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200524:1710", + "P": 1589.46, + "G(i)": 343.54, + "H_sun": 16.96, + "T2m": 23.11, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200524:1810", + "P": 313.62, + "G(i)": 88.23, + "H_sun": 6.86, + "T2m": 22.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200524:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200524:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200524:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200524:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200524:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200525:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200525:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.08, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200525:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.69, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200525:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200525:0410", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 2.43, + "T2m": 12.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200525:0510", + "P": 243.84, + "G(i)": 62.96, + "H_sun": 12.22, + "T2m": 13.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200525:0610", + "P": 402.66, + "G(i)": 95.32, + "H_sun": 22.56, + "T2m": 15.58, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200525:0710", + "P": 902.1, + "G(i)": 230.76, + "H_sun": 33.14, + "T2m": 17.55, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200525:0810", + "P": 2151.66, + "G(i)": 457.03, + "H_sun": 43.61, + "T2m": 18.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200525:0910", + "P": 3197.28, + "G(i)": 670.65, + "H_sun": 53.42, + "T2m": 19.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200525:1010", + "P": 3962.22, + "G(i)": 850.89, + "H_sun": 61.5, + "T2m": 21.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200525:1110", + "P": 4427.7, + "G(i)": 987.61, + "H_sun": 65.77, + "T2m": 22.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200525:1210", + "P": 4554.3, + "G(i)": 1025.28, + "H_sun": 64.17, + "T2m": 23.32, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200525:1310", + "P": 4650.18, + "G(i)": 1043.54, + "H_sun": 57.59, + "T2m": 24.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200525:1410", + "P": 4219.32, + "G(i)": 938.81, + "H_sun": 48.42, + "T2m": 24.44, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200525:1510", + "P": 3584.94, + "G(i)": 785.74, + "H_sun": 38.17, + "T2m": 24.7, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200525:1610", + "P": 2708.88, + "G(i)": 576.73, + "H_sun": 27.59, + "T2m": 24.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200525:1710", + "P": 1569.18, + "G(i)": 339.1, + "H_sun": 17.1, + "T2m": 24.24, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200525:1810", + "P": 373.8, + "G(i)": 103.98, + "H_sun": 7.01, + "T2m": 23.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200525:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.41, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200525:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.14, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200525:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200525:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200525:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200526:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200526:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.38, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200526:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200526:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.4, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200526:0410", + "P": 0.0, + "G(i)": 4.37, + "H_sun": 2.55, + "T2m": 15.06, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200526:0510", + "P": 311.16, + "G(i)": 76.95, + "H_sun": 12.32, + "T2m": 15.32, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200526:0610", + "P": 493.8, + "G(i)": 113.68, + "H_sun": 22.66, + "T2m": 17.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200526:0710", + "P": 1048.86, + "G(i)": 249.17, + "H_sun": 33.24, + "T2m": 18.86, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200526:0810", + "P": 2152.86, + "G(i)": 455.19, + "H_sun": 43.71, + "T2m": 19.85, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200526:0910", + "P": 3198.9, + "G(i)": 664.6, + "H_sun": 53.54, + "T2m": 20.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200526:1010", + "P": 3991.26, + "G(i)": 845.44, + "H_sun": 61.64, + "T2m": 21.71, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200526:1110", + "P": 4332.42, + "G(i)": 939.11, + "H_sun": 65.94, + "T2m": 22.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200526:1210", + "P": 4527.84, + "G(i)": 1011.48, + "H_sun": 64.35, + "T2m": 23.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200526:1310", + "P": 4138.08, + "G(i)": 931.73, + "H_sun": 57.74, + "T2m": 23.9, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200526:1410", + "P": 3525.6, + "G(i)": 768.67, + "H_sun": 48.56, + "T2m": 24.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200526:1510", + "P": 2581.14, + "G(i)": 549.07, + "H_sun": 38.31, + "T2m": 24.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200526:1610", + "P": 2321.76, + "G(i)": 490.69, + "H_sun": 27.73, + "T2m": 24.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200526:1710", + "P": 1596.96, + "G(i)": 346.56, + "H_sun": 17.23, + "T2m": 23.97, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200526:1810", + "P": 400.62, + "G(i)": 110.93, + "H_sun": 7.15, + "T2m": 23.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200526:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.28, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200526:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.49, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200526:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.35, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200526:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.53, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200526:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.86, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200527:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.33, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200527:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.92, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200527:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.51, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200527:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.95, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200527:0410", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 2.66, + "T2m": 14.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200527:0510", + "P": 199.56, + "G(i)": 54.22, + "H_sun": 12.42, + "T2m": 15.01, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200527:0610", + "P": 656.7, + "G(i)": 145.16, + "H_sun": 22.75, + "T2m": 16.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200527:0710", + "P": 952.2, + "G(i)": 236.13, + "H_sun": 33.33, + "T2m": 16.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200527:0810", + "P": 2165.52, + "G(i)": 453.58, + "H_sun": 43.81, + "T2m": 17.46, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200527:0910", + "P": 3210.3, + "G(i)": 661.49, + "H_sun": 53.65, + "T2m": 17.91, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200527:1010", + "P": 4009.86, + "G(i)": 844.08, + "H_sun": 61.78, + "T2m": 18.46, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200527:1110", + "P": 4477.26, + "G(i)": 969.37, + "H_sun": 66.11, + "T2m": 19.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200527:1210", + "P": 4206.48, + "G(i)": 916.7, + "H_sun": 64.52, + "T2m": 20.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200527:1310", + "P": 3988.5, + "G(i)": 869.4, + "H_sun": 57.89, + "T2m": 20.97, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200527:1410", + "P": 3808.56, + "G(i)": 828.12, + "H_sun": 48.7, + "T2m": 21.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200527:1510", + "P": 3626.1, + "G(i)": 784.37, + "H_sun": 38.44, + "T2m": 21.84, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200527:1610", + "P": 2781.78, + "G(i)": 590.55, + "H_sun": 27.86, + "T2m": 22.01, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200527:1710", + "P": 1589.1, + "G(i)": 341.12, + "H_sun": 17.37, + "T2m": 21.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200527:1810", + "P": 367.86, + "G(i)": 100.81, + "H_sun": 7.29, + "T2m": 21.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200527:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200527:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.14, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200527:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200527:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.54, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200527:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.95, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200528:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.39, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.69, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200528:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.0, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0410", + "P": 3.0, + "G(i)": 7.0, + "H_sun": 2.76, + "T2m": 14.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200528:0510", + "P": 276.78, + "G(i)": 69.96, + "H_sun": 12.52, + "T2m": 14.48, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200528:0610", + "P": 383.1, + "G(i)": 91.82, + "H_sun": 22.84, + "T2m": 16.36, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0710", + "P": 913.02, + "G(i)": 232.63, + "H_sun": 33.42, + "T2m": 18.51, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0810", + "P": 2098.92, + "G(i)": 452.95, + "H_sun": 43.9, + "T2m": 20.16, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200528:0910", + "P": 3101.94, + "G(i)": 661.07, + "H_sun": 53.75, + "T2m": 21.49, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200528:1010", + "P": 3859.98, + "G(i)": 840.07, + "H_sun": 61.91, + "T2m": 22.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200528:1110", + "P": 4405.08, + "G(i)": 964.76, + "H_sun": 66.27, + "T2m": 23.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200528:1210", + "P": 4551.42, + "G(i)": 1010.73, + "H_sun": 64.68, + "T2m": 24.05, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200528:1310", + "P": 4147.2, + "G(i)": 912.89, + "H_sun": 58.04, + "T2m": 24.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200528:1410", + "P": 4181.28, + "G(i)": 925.36, + "H_sun": 48.83, + "T2m": 24.72, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200528:1510", + "P": 3613.32, + "G(i)": 780.82, + "H_sun": 38.57, + "T2m": 24.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200528:1610", + "P": 2730.0, + "G(i)": 573.44, + "H_sun": 27.98, + "T2m": 24.16, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200528:1710", + "P": 1325.76, + "G(i)": 284.77, + "H_sun": 17.5, + "T2m": 23.35, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200528:1810", + "P": 200.46, + "G(i)": 58.72, + "H_sun": 7.43, + "T2m": 22.1, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200528:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.38, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200528:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.01, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200528:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.83, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200528:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200528:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.02, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200529:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200529:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.9, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200529:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200529:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.26, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200529:0410", + "P": 0.96, + "G(i)": 6.12, + "H_sun": 2.86, + "T2m": 14.15, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200529:0510", + "P": 50.76, + "G(i)": 20.99, + "H_sun": 12.61, + "T2m": 14.07, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200529:0610", + "P": 429.72, + "G(i)": 99.69, + "H_sun": 22.92, + "T2m": 14.12, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200529:0710", + "P": 620.52, + "G(i)": 136.28, + "H_sun": 33.5, + "T2m": 14.2, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200529:0810", + "P": 1273.08, + "G(i)": 261.08, + "H_sun": 43.99, + "T2m": 14.65, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200529:0910", + "P": 1467.66, + "G(i)": 298.56, + "H_sun": 53.85, + "T2m": 15.01, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200529:1010", + "P": 1141.62, + "G(i)": 237.34, + "H_sun": 62.03, + "T2m": 16.12, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200529:1110", + "P": 2622.84, + "G(i)": 531.84, + "H_sun": 66.42, + "T2m": 17.16, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200529:1210", + "P": 1068.18, + "G(i)": 225.29, + "H_sun": 64.84, + "T2m": 17.77, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200529:1310", + "P": 4106.46, + "G(i)": 861.89, + "H_sun": 58.19, + "T2m": 18.86, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200529:1410", + "P": 4230.66, + "G(i)": 891.84, + "H_sun": 48.96, + "T2m": 19.33, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200529:1510", + "P": 2953.38, + "G(i)": 606.89, + "H_sun": 38.69, + "T2m": 19.63, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200529:1610", + "P": 1932.72, + "G(i)": 395.92, + "H_sun": 28.11, + "T2m": 19.48, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200529:1710", + "P": 1143.78, + "G(i)": 243.04, + "H_sun": 17.62, + "T2m": 19.03, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200529:1810", + "P": 430.86, + "G(i)": 114.54, + "H_sun": 7.56, + "T2m": 18.32, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200529:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.63, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200529:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200529:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200529:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200529:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.32, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200530:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.1, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200530:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.85, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200530:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200530:0410", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 2.95, + "T2m": 13.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:0510", + "P": 325.8, + "G(i)": 79.58, + "H_sun": 12.69, + "T2m": 13.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200530:0610", + "P": 654.6, + "G(i)": 144.29, + "H_sun": 23.0, + "T2m": 15.09, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200530:0710", + "P": 1030.2, + "G(i)": 246.56, + "H_sun": 33.57, + "T2m": 16.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200530:0810", + "P": 2159.76, + "G(i)": 456.83, + "H_sun": 44.07, + "T2m": 17.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200530:0910", + "P": 3185.52, + "G(i)": 665.06, + "H_sun": 53.94, + "T2m": 18.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200530:1010", + "P": 3933.84, + "G(i)": 845.61, + "H_sun": 62.15, + "T2m": 19.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200530:1110", + "P": 4504.2, + "G(i)": 991.7, + "H_sun": 66.57, + "T2m": 20.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:1210", + "P": 4701.66, + "G(i)": 1054.8, + "H_sun": 64.99, + "T2m": 21.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200530:1310", + "P": 4642.08, + "G(i)": 1037.27, + "H_sun": 58.33, + "T2m": 22.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:1410", + "P": 4333.8, + "G(i)": 958.62, + "H_sun": 49.09, + "T2m": 22.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200530:1510", + "P": 3648.66, + "G(i)": 784.52, + "H_sun": 38.81, + "T2m": 22.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200530:1610", + "P": 2736.3, + "G(i)": 577.95, + "H_sun": 28.23, + "T2m": 22.51, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200530:1710", + "P": 1681.8, + "G(i)": 359.99, + "H_sun": 17.75, + "T2m": 22.14, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200530:1810", + "P": 462.48, + "G(i)": 123.86, + "H_sun": 7.69, + "T2m": 20.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200530:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200530:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200530:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200530:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200530:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.4, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200531:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200531:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200531:0410", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 3.04, + "T2m": 11.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200531:0510", + "P": 228.12, + "G(i)": 59.46, + "H_sun": 12.76, + "T2m": 12.28, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200531:0610", + "P": 513.0, + "G(i)": 116.3, + "H_sun": 23.07, + "T2m": 14.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200531:0710", + "P": 851.82, + "G(i)": 182.48, + "H_sun": 33.64, + "T2m": 15.74, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200531:0810", + "P": 1790.16, + "G(i)": 370.09, + "H_sun": 44.14, + "T2m": 16.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200531:0910", + "P": 2388.0, + "G(i)": 493.14, + "H_sun": 54.03, + "T2m": 17.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200531:1010", + "P": 2585.4, + "G(i)": 539.38, + "H_sun": 62.26, + "T2m": 18.36, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:1110", + "P": 2366.28, + "G(i)": 495.67, + "H_sun": 66.71, + "T2m": 19.34, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200531:1210", + "P": 4452.9, + "G(i)": 992.63, + "H_sun": 65.14, + "T2m": 20.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200531:1310", + "P": 3711.66, + "G(i)": 804.41, + "H_sun": 58.46, + "T2m": 21.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:1410", + "P": 4077.84, + "G(i)": 894.61, + "H_sun": 49.21, + "T2m": 22.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:1510", + "P": 3612.12, + "G(i)": 778.24, + "H_sun": 38.93, + "T2m": 22.64, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200531:1610", + "P": 2760.36, + "G(i)": 582.38, + "H_sun": 28.35, + "T2m": 22.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:1710", + "P": 1605.84, + "G(i)": 345.12, + "H_sun": 17.87, + "T2m": 22.33, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:1810", + "P": 417.0, + "G(i)": 112.67, + "H_sun": 7.81, + "T2m": 21.62, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200531:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200531:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200531:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200531:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200601:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200601:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200601:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200601:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.03, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200601:0410", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 3.12, + "T2m": 14.65, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200601:0510", + "P": 294.18, + "G(i)": 73.45, + "H_sun": 12.84, + "T2m": 14.56, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200601:0610", + "P": 701.64, + "G(i)": 153.9, + "H_sun": 23.13, + "T2m": 15.92, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200601:0710", + "P": 1031.94, + "G(i)": 221.38, + "H_sun": 33.71, + "T2m": 18.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200601:0810", + "P": 1732.2, + "G(i)": 362.86, + "H_sun": 44.21, + "T2m": 19.22, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200601:0910", + "P": 3084.96, + "G(i)": 652.26, + "H_sun": 54.11, + "T2m": 20.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200601:1010", + "P": 3730.74, + "G(i)": 816.15, + "H_sun": 62.37, + "T2m": 21.83, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200601:1110", + "P": 4276.68, + "G(i)": 954.17, + "H_sun": 66.84, + "T2m": 22.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200601:1210", + "P": 4423.68, + "G(i)": 994.97, + "H_sun": 65.28, + "T2m": 23.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200601:1310", + "P": 4459.32, + "G(i)": 1006.91, + "H_sun": 58.59, + "T2m": 24.24, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200601:1410", + "P": 4123.5, + "G(i)": 917.35, + "H_sun": 49.33, + "T2m": 24.69, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200601:1510", + "P": 3591.3, + "G(i)": 775.01, + "H_sun": 39.05, + "T2m": 24.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200601:1610", + "P": 2758.86, + "G(i)": 584.22, + "H_sun": 28.46, + "T2m": 24.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200601:1710", + "P": 1308.84, + "G(i)": 284.05, + "H_sun": 17.99, + "T2m": 24.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200601:1810", + "P": 484.68, + "G(i)": 130.17, + "H_sun": 7.94, + "T2m": 22.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200601:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200601:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200601:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200601:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200601:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200602:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200602:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200602:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200602:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200602:0410", + "P": 5.22, + "G(i)": 7.87, + "H_sun": 3.19, + "T2m": 15.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200602:0510", + "P": 258.12, + "G(i)": 66.46, + "H_sun": 12.9, + "T2m": 15.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200602:0610", + "P": 372.36, + "G(i)": 90.07, + "H_sun": 23.2, + "T2m": 17.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200602:0710", + "P": 894.36, + "G(i)": 231.41, + "H_sun": 33.77, + "T2m": 19.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200602:0810", + "P": 2090.46, + "G(i)": 454.47, + "H_sun": 44.27, + "T2m": 21.91, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200602:0910", + "P": 3113.04, + "G(i)": 668.41, + "H_sun": 54.19, + "T2m": 23.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200602:1010", + "P": 3878.7, + "G(i)": 848.19, + "H_sun": 62.47, + "T2m": 24.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200602:1110", + "P": 4446.78, + "G(i)": 990.29, + "H_sun": 66.97, + "T2m": 25.87, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200602:1210", + "P": 4698.84, + "G(i)": 1053.56, + "H_sun": 65.42, + "T2m": 26.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200602:1310", + "P": 4625.76, + "G(i)": 1037.49, + "H_sun": 58.72, + "T2m": 27.22, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200602:1410", + "P": 4090.98, + "G(i)": 904.05, + "H_sun": 49.45, + "T2m": 27.34, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200602:1510", + "P": 3700.56, + "G(i)": 803.34, + "H_sun": 39.16, + "T2m": 27.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200602:1610", + "P": 2736.18, + "G(i)": 576.94, + "H_sun": 28.58, + "T2m": 26.77, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200602:1710", + "P": 1755.9, + "G(i)": 377.79, + "H_sun": 18.1, + "T2m": 25.57, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200602:1810", + "P": 468.12, + "G(i)": 125.73, + "H_sun": 8.06, + "T2m": 23.91, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200602:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.15, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200602:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.64, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200602:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200602:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200602:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200603:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.73, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200603:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200603:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200603:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200603:0410", + "P": 10.02, + "G(i)": 9.62, + "H_sun": 3.26, + "T2m": 16.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200603:0510", + "P": 235.8, + "G(i)": 62.09, + "H_sun": 12.96, + "T2m": 16.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200603:0610", + "P": 328.62, + "G(i)": 81.32, + "H_sun": 23.25, + "T2m": 17.54, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200603:0710", + "P": 882.54, + "G(i)": 228.78, + "H_sun": 33.82, + "T2m": 19.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200603:0810", + "P": 2095.26, + "G(i)": 451.57, + "H_sun": 44.33, + "T2m": 21.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200603:0910", + "P": 3064.5, + "G(i)": 652.13, + "H_sun": 54.25, + "T2m": 22.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200603:1010", + "P": 3167.64, + "G(i)": 675.91, + "H_sun": 62.56, + "T2m": 23.97, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200603:1110", + "P": 4038.24, + "G(i)": 869.76, + "H_sun": 67.09, + "T2m": 24.99, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200603:1210", + "P": 3683.16, + "G(i)": 785.4, + "H_sun": 65.55, + "T2m": 25.32, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200603:1310", + "P": 4209.96, + "G(i)": 903.86, + "H_sun": 58.84, + "T2m": 25.03, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200603:1410", + "P": 4098.42, + "G(i)": 878.89, + "H_sun": 49.57, + "T2m": 24.57, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200603:1510", + "P": 2819.88, + "G(i)": 589.16, + "H_sun": 39.27, + "T2m": 23.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200603:1610", + "P": 151.32, + "G(i)": 45.43, + "H_sun": 28.68, + "T2m": 23.09, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200603:1710", + "P": 60.36, + "G(i)": 24.1, + "H_sun": 18.21, + "T2m": 22.63, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200603:1810", + "P": 83.34, + "G(i)": 29.67, + "H_sun": 8.17, + "T2m": 21.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200603:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.82, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200603:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200603:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.32, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200603:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.11, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200603:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200604:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200604:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.5, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200604:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200604:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200604:0410", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 3.33, + "T2m": 16.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200604:0510", + "P": 36.54, + "G(i)": 17.49, + "H_sun": 13.02, + "T2m": 16.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200604:0610", + "P": 112.32, + "G(i)": 35.85, + "H_sun": 23.3, + "T2m": 17.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200604:0710", + "P": 271.62, + "G(i)": 69.53, + "H_sun": 33.87, + "T2m": 17.36, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200604:0810", + "P": 987.54, + "G(i)": 209.18, + "H_sun": 44.38, + "T2m": 17.46, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200604:0910", + "P": 736.8, + "G(i)": 161.32, + "H_sun": 54.32, + "T2m": 18.19, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200604:1010", + "P": 1013.7, + "G(i)": 215.09, + "H_sun": 62.64, + "T2m": 18.7, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200604:1110", + "P": 3112.38, + "G(i)": 633.7, + "H_sun": 67.21, + "T2m": 19.27, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200604:1210", + "P": 998.64, + "G(i)": 212.31, + "H_sun": 65.67, + "T2m": 19.16, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200604:1310", + "P": 523.02, + "G(i)": 119.6, + "H_sun": 58.96, + "T2m": 18.16, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200604:1410", + "P": 429.0, + "G(i)": 101.05, + "H_sun": 49.68, + "T2m": 17.69, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200604:1510", + "P": 466.74, + "G(i)": 108.47, + "H_sun": 39.38, + "T2m": 17.47, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200604:1610", + "P": 1267.68, + "G(i)": 262.52, + "H_sun": 28.79, + "T2m": 17.38, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200604:1710", + "P": 1189.38, + "G(i)": 251.0, + "H_sun": 18.32, + "T2m": 17.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200604:1810", + "P": 198.78, + "G(i)": 56.43, + "H_sun": 8.28, + "T2m": 17.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200604:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200604:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.54, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200604:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200604:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200604:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.45, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200605:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200605:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200605:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200605:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200605:0410", + "P": 31.08, + "G(i)": 15.74, + "H_sun": 3.38, + "T2m": 11.88, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200605:0510", + "P": 328.74, + "G(i)": 79.58, + "H_sun": 13.07, + "T2m": 12.44, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200605:0610", + "P": 711.42, + "G(i)": 154.78, + "H_sun": 23.35, + "T2m": 15.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200605:0710", + "P": 1196.34, + "G(i)": 264.6, + "H_sun": 33.91, + "T2m": 16.91, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200605:0810", + "P": 2128.26, + "G(i)": 451.02, + "H_sun": 44.43, + "T2m": 18.66, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200605:0910", + "P": 3173.22, + "G(i)": 666.6, + "H_sun": 54.37, + "T2m": 20.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200605:1010", + "P": 3805.68, + "G(i)": 820.89, + "H_sun": 62.72, + "T2m": 22.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200605:1110", + "P": 4396.26, + "G(i)": 976.66, + "H_sun": 67.31, + "T2m": 23.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200605:1210", + "P": 4668.6, + "G(i)": 1050.57, + "H_sun": 65.79, + "T2m": 24.16, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200605:1310", + "P": 4591.32, + "G(i)": 1029.56, + "H_sun": 59.07, + "T2m": 25.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200605:1410", + "P": 4338.48, + "G(i)": 963.3, + "H_sun": 49.78, + "T2m": 25.41, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200605:1510", + "P": 3690.24, + "G(i)": 802.37, + "H_sun": 39.48, + "T2m": 25.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200605:1610", + "P": 2892.24, + "G(i)": 616.12, + "H_sun": 28.89, + "T2m": 25.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200605:1710", + "P": 1527.18, + "G(i)": 330.4, + "H_sun": 18.43, + "T2m": 25.28, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200605:1810", + "P": 509.4, + "G(i)": 135.54, + "H_sun": 8.39, + "T2m": 23.75, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200605:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.71, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200605:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.01, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200605:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.79, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200605:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200605:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.51, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200606:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200606:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200606:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200606:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200606:0410", + "P": 33.6, + "G(i)": 16.61, + "H_sun": 3.44, + "T2m": 15.37, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200606:0510", + "P": 215.94, + "G(i)": 57.71, + "H_sun": 13.11, + "T2m": 15.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200606:0610", + "P": 303.48, + "G(i)": 76.08, + "H_sun": 23.38, + "T2m": 16.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200606:0710", + "P": 851.88, + "G(i)": 223.72, + "H_sun": 33.95, + "T2m": 18.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200606:0810", + "P": 2057.76, + "G(i)": 443.55, + "H_sun": 44.47, + "T2m": 20.58, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200606:0910", + "P": 2978.1, + "G(i)": 633.29, + "H_sun": 54.43, + "T2m": 22.1, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200606:1010", + "P": 3601.32, + "G(i)": 777.08, + "H_sun": 62.79, + "T2m": 23.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200606:1110", + "P": 2903.46, + "G(i)": 619.19, + "H_sun": 67.41, + "T2m": 24.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200606:1210", + "P": 3516.48, + "G(i)": 756.14, + "H_sun": 65.91, + "T2m": 24.77, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200606:1310", + "P": 4525.26, + "G(i)": 986.26, + "H_sun": 59.18, + "T2m": 25.03, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200606:1410", + "P": 4152.18, + "G(i)": 879.62, + "H_sun": 49.89, + "T2m": 24.17, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200606:1510", + "P": 3522.24, + "G(i)": 737.91, + "H_sun": 39.58, + "T2m": 23.78, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200606:1610", + "P": 2675.4, + "G(i)": 557.14, + "H_sun": 28.99, + "T2m": 23.57, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200606:1710", + "P": 1582.26, + "G(i)": 337.57, + "H_sun": 18.53, + "T2m": 23.0, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200606:1810", + "P": 481.86, + "G(i)": 127.27, + "H_sun": 8.49, + "T2m": 22.35, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200606:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200606:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200606:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.79, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200606:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.15, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200606:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200607:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.36, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200607:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200607:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200607:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200607:0410", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 3.48, + "T2m": 16.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200607:0510", + "P": 201.66, + "G(i)": 55.09, + "H_sun": 13.15, + "T2m": 16.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200607:0610", + "P": 112.44, + "G(i)": 35.85, + "H_sun": 23.42, + "T2m": 17.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200607:0710", + "P": 861.9, + "G(i)": 186.65, + "H_sun": 33.98, + "T2m": 18.41, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200607:0810", + "P": 350.76, + "G(i)": 86.22, + "H_sun": 44.5, + "T2m": 19.38, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200607:0910", + "P": 1280.76, + "G(i)": 270.29, + "H_sun": 54.47, + "T2m": 20.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200607:1010", + "P": 2141.28, + "G(i)": 446.54, + "H_sun": 62.86, + "T2m": 21.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200607:1110", + "P": 2925.06, + "G(i)": 612.36, + "H_sun": 67.51, + "T2m": 21.37, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200607:1210", + "P": 3378.54, + "G(i)": 711.26, + "H_sun": 66.01, + "T2m": 21.77, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200607:1310", + "P": 2625.3, + "G(i)": 548.77, + "H_sun": 59.29, + "T2m": 22.54, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200607:1410", + "P": 3934.5, + "G(i)": 836.54, + "H_sun": 49.98, + "T2m": 22.92, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200607:1510", + "P": 1505.88, + "G(i)": 315.81, + "H_sun": 39.68, + "T2m": 22.05, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200607:1610", + "P": 2152.32, + "G(i)": 448.32, + "H_sun": 29.09, + "T2m": 21.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200607:1710", + "P": 72.6, + "G(i)": 26.89, + "H_sun": 18.62, + "T2m": 20.08, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200607:1810", + "P": 6.3, + "G(i)": 8.34, + "H_sun": 8.59, + "T2m": 18.68, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200607:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.22, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200607:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.79, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200607:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200607:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200607:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.43, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200608:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.21, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200608:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200608:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200608:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:0410", + "P": 33.66, + "G(i)": 16.61, + "H_sun": 3.52, + "T2m": 15.31, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200608:0510", + "P": 57.36, + "G(i)": 22.74, + "H_sun": 13.19, + "T2m": 15.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200608:0610", + "P": 474.72, + "G(i)": 109.31, + "H_sun": 23.45, + "T2m": 15.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200608:0710", + "P": 411.42, + "G(i)": 97.35, + "H_sun": 34.01, + "T2m": 16.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200608:0810", + "P": 1275.06, + "G(i)": 267.27, + "H_sun": 44.53, + "T2m": 17.53, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200608:0910", + "P": 1378.5, + "G(i)": 287.46, + "H_sun": 54.51, + "T2m": 18.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1010", + "P": 3019.68, + "G(i)": 627.65, + "H_sun": 62.92, + "T2m": 18.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200608:1110", + "P": 2015.22, + "G(i)": 418.28, + "H_sun": 67.59, + "T2m": 19.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1210", + "P": 4007.82, + "G(i)": 853.59, + "H_sun": 66.12, + "T2m": 19.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1310", + "P": 525.96, + "G(i)": 121.45, + "H_sun": 59.39, + "T2m": 19.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1410", + "P": 628.5, + "G(i)": 141.85, + "H_sun": 50.08, + "T2m": 20.03, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200608:1510", + "P": 179.16, + "G(i)": 50.99, + "H_sun": 39.77, + "T2m": 20.35, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200608:1610", + "P": 2812.5, + "G(i)": 583.64, + "H_sun": 29.18, + "T2m": 19.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200608:1710", + "P": 1220.82, + "G(i)": 261.06, + "H_sun": 18.72, + "T2m": 19.67, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200608:1810", + "P": 510.78, + "G(i)": 132.22, + "H_sun": 8.69, + "T2m": 18.94, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200608:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200608:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200608:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200608:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200608:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.98, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200609:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.31, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200609:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.27, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200609:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200609:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200609:0410", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 3.56, + "T2m": 13.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200609:0510", + "P": 339.54, + "G(i)": 82.2, + "H_sun": 13.21, + "T2m": 13.91, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200609:0610", + "P": 694.62, + "G(i)": 151.28, + "H_sun": 23.47, + "T2m": 14.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200609:0710", + "P": 1193.46, + "G(i)": 252.65, + "H_sun": 34.03, + "T2m": 14.84, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200609:0810", + "P": 1848.06, + "G(i)": 381.02, + "H_sun": 44.56, + "T2m": 15.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200609:0910", + "P": 3009.72, + "G(i)": 622.59, + "H_sun": 54.54, + "T2m": 16.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200609:1010", + "P": 3830.58, + "G(i)": 809.97, + "H_sun": 62.97, + "T2m": 17.35, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1110", + "P": 3207.42, + "G(i)": 673.14, + "H_sun": 67.67, + "T2m": 17.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1210", + "P": 3046.62, + "G(i)": 634.24, + "H_sun": 66.21, + "T2m": 18.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200609:1310", + "P": 1826.7, + "G(i)": 378.17, + "H_sun": 59.48, + "T2m": 19.05, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200609:1410", + "P": 331.74, + "G(i)": 82.51, + "H_sun": 50.17, + "T2m": 19.62, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200609:1510", + "P": 428.1, + "G(i)": 101.98, + "H_sun": 39.86, + "T2m": 19.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200609:1610", + "P": 897.3, + "G(i)": 194.31, + "H_sun": 29.27, + "T2m": 19.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1710", + "P": 757.98, + "G(i)": 165.75, + "H_sun": 18.81, + "T2m": 17.44, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200609:1810", + "P": 573.3, + "G(i)": 146.18, + "H_sun": 8.78, + "T2m": 16.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.73, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200609:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200609:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.58, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200609:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.04, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200609:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200610:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200610:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200610:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200610:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200610:0410", + "P": 3.18, + "G(i)": 7.0, + "H_sun": 3.59, + "T2m": 10.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200610:0510", + "P": 338.7, + "G(i)": 81.32, + "H_sun": 13.24, + "T2m": 11.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:0610", + "P": 383.82, + "G(i)": 90.94, + "H_sun": 23.49, + "T2m": 13.71, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200610:0710", + "P": 885.72, + "G(i)": 227.41, + "H_sun": 34.05, + "T2m": 15.93, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:0810", + "P": 2112.96, + "G(i)": 448.87, + "H_sun": 44.58, + "T2m": 17.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:0910", + "P": 3121.26, + "G(i)": 655.75, + "H_sun": 54.57, + "T2m": 19.11, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:1010", + "P": 3713.88, + "G(i)": 795.89, + "H_sun": 63.02, + "T2m": 20.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:1110", + "P": 4038.9, + "G(i)": 886.95, + "H_sun": 67.75, + "T2m": 21.06, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200610:1210", + "P": 2084.28, + "G(i)": 440.82, + "H_sun": 66.3, + "T2m": 21.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200610:1310", + "P": 490.68, + "G(i)": 115.89, + "H_sun": 59.57, + "T2m": 22.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:1410", + "P": 238.08, + "G(i)": 63.97, + "H_sun": 50.26, + "T2m": 22.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200610:1510", + "P": 1583.58, + "G(i)": 331.4, + "H_sun": 39.94, + "T2m": 21.62, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200610:1610", + "P": 2634.84, + "G(i)": 543.66, + "H_sun": 29.35, + "T2m": 20.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200610:1710", + "P": 880.08, + "G(i)": 191.93, + "H_sun": 18.89, + "T2m": 19.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200610:1810", + "P": 190.14, + "G(i)": 54.26, + "H_sun": 8.87, + "T2m": 19.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200610:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.88, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200610:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.72, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200611:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200611:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200611:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200611:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200611:0410", + "P": 21.66, + "G(i)": 13.12, + "H_sun": 3.61, + "T2m": 12.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200611:0510", + "P": 340.26, + "G(i)": 82.2, + "H_sun": 13.25, + "T2m": 13.31, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200611:0610", + "P": 692.58, + "G(i)": 151.28, + "H_sun": 23.5, + "T2m": 14.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200611:0710", + "P": 1190.94, + "G(i)": 262.56, + "H_sun": 34.06, + "T2m": 15.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200611:0810", + "P": 1099.32, + "G(i)": 230.69, + "H_sun": 44.59, + "T2m": 16.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200611:0910", + "P": 2490.96, + "G(i)": 510.95, + "H_sun": 54.59, + "T2m": 17.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200611:1010", + "P": 2389.08, + "G(i)": 494.36, + "H_sun": 63.05, + "T2m": 18.69, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200611:1110", + "P": 1509.06, + "G(i)": 316.69, + "H_sun": 67.81, + "T2m": 19.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200611:1210", + "P": 1653.42, + "G(i)": 347.37, + "H_sun": 66.39, + "T2m": 19.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200611:1310", + "P": 1459.8, + "G(i)": 306.12, + "H_sun": 59.66, + "T2m": 19.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200611:1410", + "P": 2583.0, + "G(i)": 536.98, + "H_sun": 50.34, + "T2m": 19.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200611:1510", + "P": 1469.1, + "G(i)": 308.11, + "H_sun": 40.02, + "T2m": 20.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200611:1610", + "P": 675.9, + "G(i)": 151.34, + "H_sun": 29.44, + "T2m": 19.65, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200611:1710", + "P": 514.98, + "G(i)": 119.08, + "H_sun": 18.98, + "T2m": 19.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200611:1810", + "P": 404.58, + "G(i)": 104.76, + "H_sun": 8.95, + "T2m": 18.52, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200611:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200611:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.9, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200611:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200611:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200611:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.2, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200612:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.81, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200612:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0410", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 3.63, + "T2m": 14.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0510", + "P": 75.72, + "G(i)": 27.11, + "H_sun": 13.27, + "T2m": 14.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200612:0610", + "P": 457.92, + "G(i)": 105.81, + "H_sun": 23.51, + "T2m": 15.19, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200612:0710", + "P": 912.6, + "G(i)": 194.25, + "H_sun": 34.07, + "T2m": 15.79, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:0810", + "P": 1602.42, + "G(i)": 330.25, + "H_sun": 44.6, + "T2m": 16.84, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200612:0910", + "P": 2408.1, + "G(i)": 492.0, + "H_sun": 54.61, + "T2m": 17.58, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200612:1010", + "P": 2110.32, + "G(i)": 433.91, + "H_sun": 63.09, + "T2m": 18.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:1110", + "P": 2410.8, + "G(i)": 496.36, + "H_sun": 67.87, + "T2m": 18.94, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:1210", + "P": 332.22, + "G(i)": 82.51, + "H_sun": 66.46, + "T2m": 19.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200612:1310", + "P": 401.16, + "G(i)": 96.42, + "H_sun": 59.74, + "T2m": 19.53, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200612:1410", + "P": 326.16, + "G(i)": 81.59, + "H_sun": 50.42, + "T2m": 20.34, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:1510", + "P": 1529.46, + "G(i)": 319.14, + "H_sun": 40.1, + "T2m": 20.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200612:1610", + "P": 1116.78, + "G(i)": 237.66, + "H_sun": 29.51, + "T2m": 20.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200612:1710", + "P": 1038.06, + "G(i)": 223.37, + "H_sun": 19.05, + "T2m": 19.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200612:1810", + "P": 459.42, + "G(i)": 118.4, + "H_sun": 9.03, + "T2m": 19.35, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200612:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200612:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200612:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.45, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200612:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.82, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200612:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200613:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200613:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200613:0410", + "P": 0.0, + "G(i)": 4.37, + "H_sun": 3.65, + "T2m": 14.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200613:0510", + "P": 319.74, + "G(i)": 78.7, + "H_sun": 13.28, + "T2m": 15.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0610", + "P": 602.64, + "G(i)": 134.67, + "H_sun": 23.52, + "T2m": 16.3, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0710", + "P": 883.08, + "G(i)": 190.55, + "H_sun": 34.07, + "T2m": 17.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0810", + "P": 1238.04, + "G(i)": 261.09, + "H_sun": 44.61, + "T2m": 18.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200613:0910", + "P": 1484.64, + "G(i)": 311.56, + "H_sun": 54.62, + "T2m": 18.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200613:1010", + "P": 1067.16, + "G(i)": 229.0, + "H_sun": 63.12, + "T2m": 19.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200613:1110", + "P": 740.52, + "G(i)": 164.1, + "H_sun": 67.92, + "T2m": 19.56, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200613:1210", + "P": 426.78, + "G(i)": 101.98, + "H_sun": 66.53, + "T2m": 20.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200613:1310", + "P": 303.6, + "G(i)": 76.95, + "H_sun": 59.81, + "T2m": 19.86, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200613:1410", + "P": 254.1, + "G(i)": 66.75, + "H_sun": 50.49, + "T2m": 19.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200613:1510", + "P": 214.62, + "G(i)": 58.41, + "H_sun": 40.18, + "T2m": 19.44, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200613:1610", + "P": 176.16, + "G(i)": 50.06, + "H_sun": 29.59, + "T2m": 18.6, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200613:1710", + "P": 707.34, + "G(i)": 156.81, + "H_sun": 19.13, + "T2m": 18.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200613:1810", + "P": 180.06, + "G(i)": 51.48, + "H_sun": 9.11, + "T2m": 17.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200613:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.57, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200613:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200613:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.24, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200613:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.91, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200613:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200614:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.14, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200614:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200614:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200614:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.53, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200614:0410", + "P": 24.6, + "G(i)": 13.99, + "H_sun": 3.65, + "T2m": 13.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200614:0510", + "P": 274.8, + "G(i)": 69.08, + "H_sun": 13.28, + "T2m": 12.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200614:0610", + "P": 298.26, + "G(i)": 74.33, + "H_sun": 23.52, + "T2m": 14.87, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200614:0710", + "P": 858.48, + "G(i)": 223.24, + "H_sun": 34.07, + "T2m": 17.68, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200614:0810", + "P": 2088.9, + "G(i)": 445.36, + "H_sun": 44.6, + "T2m": 19.79, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200614:0910", + "P": 3133.26, + "G(i)": 661.42, + "H_sun": 54.63, + "T2m": 22.25, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200614:1010", + "P": 3888.18, + "G(i)": 844.04, + "H_sun": 63.14, + "T2m": 24.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200614:1110", + "P": 4381.74, + "G(i)": 973.85, + "H_sun": 67.97, + "T2m": 25.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200614:1210", + "P": 4649.04, + "G(i)": 1050.17, + "H_sun": 66.6, + "T2m": 26.62, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200614:1310", + "P": 4513.02, + "G(i)": 1026.19, + "H_sun": 59.88, + "T2m": 27.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200614:1410", + "P": 4284.9, + "G(i)": 969.09, + "H_sun": 50.56, + "T2m": 27.62, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200614:1510", + "P": 3649.38, + "G(i)": 806.1, + "H_sun": 40.25, + "T2m": 27.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200614:1610", + "P": 2825.52, + "G(i)": 611.31, + "H_sun": 29.66, + "T2m": 27.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200614:1710", + "P": 1745.46, + "G(i)": 382.46, + "H_sun": 19.2, + "T2m": 27.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200614:1810", + "P": 529.38, + "G(i)": 139.73, + "H_sun": 9.18, + "T2m": 25.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200614:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.15, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200614:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200614:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.7, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200614:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.58, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200614:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.98, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200615:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200615:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200615:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200615:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200615:0410", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 3.66, + "T2m": 15.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200615:0510", + "P": 232.56, + "G(i)": 61.21, + "H_sun": 13.28, + "T2m": 15.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200615:0610", + "P": 481.5, + "G(i)": 111.93, + "H_sun": 23.51, + "T2m": 18.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:0710", + "P": 1171.02, + "G(i)": 256.81, + "H_sun": 34.06, + "T2m": 21.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200615:0810", + "P": 1849.98, + "G(i)": 395.01, + "H_sun": 44.6, + "T2m": 23.34, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200615:0910", + "P": 2930.1, + "G(i)": 625.06, + "H_sun": 54.63, + "T2m": 24.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200615:1010", + "P": 3733.26, + "G(i)": 820.96, + "H_sun": 63.15, + "T2m": 25.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:1110", + "P": 4271.34, + "G(i)": 969.21, + "H_sun": 68.01, + "T2m": 26.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200615:1210", + "P": 4496.76, + "G(i)": 1039.68, + "H_sun": 66.66, + "T2m": 27.2, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200615:1310", + "P": 4396.44, + "G(i)": 1021.94, + "H_sun": 59.95, + "T2m": 27.56, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200615:1410", + "P": 4111.8, + "G(i)": 936.57, + "H_sun": 50.63, + "T2m": 27.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200615:1510", + "P": 3572.04, + "G(i)": 791.73, + "H_sun": 40.31, + "T2m": 27.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200615:1610", + "P": 1218.84, + "G(i)": 266.09, + "H_sun": 29.72, + "T2m": 27.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200615:1710", + "P": 485.04, + "G(i)": 116.45, + "H_sun": 19.26, + "T2m": 25.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200615:1810", + "P": 5.88, + "G(i)": 8.34, + "H_sun": 9.24, + "T2m": 24.63, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200615:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200615:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200615:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200616:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200616:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200616:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200616:0410", + "P": 36.48, + "G(i)": 17.49, + "H_sun": 3.65, + "T2m": 16.98, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:0510", + "P": 209.16, + "G(i)": 56.84, + "H_sun": 13.27, + "T2m": 17.51, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200616:0610", + "P": 370.86, + "G(i)": 90.07, + "H_sun": 23.5, + "T2m": 18.1, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200616:0710", + "P": 868.68, + "G(i)": 224.61, + "H_sun": 34.05, + "T2m": 19.29, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:0810", + "P": 2046.42, + "G(i)": 440.77, + "H_sun": 44.59, + "T2m": 20.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200616:0910", + "P": 2718.42, + "G(i)": 574.31, + "H_sun": 54.62, + "T2m": 21.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200616:1010", + "P": 3514.74, + "G(i)": 754.56, + "H_sun": 63.16, + "T2m": 22.48, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:1110", + "P": 4134.48, + "G(i)": 907.71, + "H_sun": 68.04, + "T2m": 23.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200616:1210", + "P": 4347.0, + "G(i)": 974.77, + "H_sun": 66.71, + "T2m": 24.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200616:1310", + "P": 2398.8, + "G(i)": 518.08, + "H_sun": 60.01, + "T2m": 25.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200616:1410", + "P": 772.5, + "G(i)": 175.22, + "H_sun": 50.69, + "T2m": 25.66, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200616:1510", + "P": 174.36, + "G(i)": 50.99, + "H_sun": 40.37, + "T2m": 25.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200616:1610", + "P": 146.58, + "G(i)": 44.5, + "H_sun": 29.78, + "T2m": 23.75, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200616:1710", + "P": 198.18, + "G(i)": 55.63, + "H_sun": 19.33, + "T2m": 22.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200616:1810", + "P": 83.16, + "G(i)": 29.67, + "H_sun": 9.31, + "T2m": 22.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200616:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200616:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.92, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200616:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200616:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200616:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.68, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200617:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200617:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.71, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200617:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200617:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200617:0410", + "P": 7.62, + "G(i)": 8.74, + "H_sun": 3.65, + "T2m": 15.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200617:0510", + "P": 332.4, + "G(i)": 81.32, + "H_sun": 13.26, + "T2m": 15.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200617:0610", + "P": 577.98, + "G(i)": 130.29, + "H_sun": 23.48, + "T2m": 16.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200617:0710", + "P": 1155.18, + "G(i)": 249.36, + "H_sun": 34.03, + "T2m": 17.79, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200617:0810", + "P": 2025.9, + "G(i)": 429.41, + "H_sun": 44.57, + "T2m": 18.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200617:0910", + "P": 2696.58, + "G(i)": 565.8, + "H_sun": 54.61, + "T2m": 20.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200617:1010", + "P": 2883.12, + "G(i)": 608.37, + "H_sun": 63.16, + "T2m": 21.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200617:1110", + "P": 3240.24, + "G(i)": 690.29, + "H_sun": 68.07, + "T2m": 22.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200617:1210", + "P": 4275.0, + "G(i)": 933.33, + "H_sun": 66.76, + "T2m": 22.81, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200617:1310", + "P": 3505.74, + "G(i)": 754.1, + "H_sun": 60.06, + "T2m": 23.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200617:1410", + "P": 2342.82, + "G(i)": 495.58, + "H_sun": 50.75, + "T2m": 23.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200617:1510", + "P": 368.58, + "G(i)": 90.86, + "H_sun": 40.43, + "T2m": 21.68, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200617:1610", + "P": 257.34, + "G(i)": 67.68, + "H_sun": 29.84, + "T2m": 20.85, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200617:1710", + "P": 174.36, + "G(i)": 50.06, + "H_sun": 19.38, + "T2m": 20.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200617:1810", + "P": 460.86, + "G(i)": 118.42, + "H_sun": 9.36, + "T2m": 20.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200617:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200617:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200617:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200617:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200617:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200618:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200618:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200618:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:0410", + "P": 37.08, + "G(i)": 17.49, + "H_sun": 3.63, + "T2m": 14.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200618:0510", + "P": 259.56, + "G(i)": 66.46, + "H_sun": 13.24, + "T2m": 14.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200618:0610", + "P": 356.34, + "G(i)": 86.57, + "H_sun": 23.46, + "T2m": 16.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:0710", + "P": 846.84, + "G(i)": 221.52, + "H_sun": 34.01, + "T2m": 18.67, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200618:0810", + "P": 2041.32, + "G(i)": 437.85, + "H_sun": 44.55, + "T2m": 19.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200618:0910", + "P": 2575.62, + "G(i)": 544.44, + "H_sun": 54.6, + "T2m": 21.14, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200618:1010", + "P": 3387.66, + "G(i)": 727.86, + "H_sun": 63.16, + "T2m": 22.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200618:1110", + "P": 4216.44, + "G(i)": 925.61, + "H_sun": 68.08, + "T2m": 23.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200618:1210", + "P": 4124.22, + "G(i)": 907.3, + "H_sun": 66.8, + "T2m": 23.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200618:1310", + "P": 2995.26, + "G(i)": 629.3, + "H_sun": 60.11, + "T2m": 22.99, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200618:1410", + "P": 2041.08, + "G(i)": 426.15, + "H_sun": 50.8, + "T2m": 23.27, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200618:1510", + "P": 181.02, + "G(i)": 51.92, + "H_sun": 40.48, + "T2m": 23.05, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200618:1610", + "P": 1061.04, + "G(i)": 227.77, + "H_sun": 29.9, + "T2m": 21.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200618:1710", + "P": 1832.46, + "G(i)": 389.37, + "H_sun": 19.44, + "T2m": 21.09, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:1810", + "P": 14.16, + "G(i)": 11.13, + "H_sun": 9.42, + "T2m": 20.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200618:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.95, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200618:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200618:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200618:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200618:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.64, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200619:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.35, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200619:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.98, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200619:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.58, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200619:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200619:0410", + "P": 33.84, + "G(i)": 16.61, + "H_sun": 3.61, + "T2m": 14.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200619:0510", + "P": 229.5, + "G(i)": 60.34, + "H_sun": 13.22, + "T2m": 14.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200619:0610", + "P": 364.92, + "G(i)": 88.32, + "H_sun": 23.44, + "T2m": 16.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200619:0710", + "P": 858.3, + "G(i)": 223.12, + "H_sun": 33.99, + "T2m": 18.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:0810", + "P": 2051.46, + "G(i)": 437.33, + "H_sun": 44.53, + "T2m": 19.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:0910", + "P": 2965.02, + "G(i)": 623.65, + "H_sun": 54.58, + "T2m": 21.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200619:1010", + "P": 3878.4, + "G(i)": 841.83, + "H_sun": 63.15, + "T2m": 22.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200619:1110", + "P": 3954.3, + "G(i)": 876.97, + "H_sun": 68.09, + "T2m": 22.94, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200619:1210", + "P": 4137.78, + "G(i)": 920.99, + "H_sun": 66.83, + "T2m": 23.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200619:1310", + "P": 4275.78, + "G(i)": 952.19, + "H_sun": 60.16, + "T2m": 24.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200619:1410", + "P": 4232.4, + "G(i)": 942.86, + "H_sun": 50.85, + "T2m": 24.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200619:1510", + "P": 3654.24, + "G(i)": 798.48, + "H_sun": 40.53, + "T2m": 24.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200619:1610", + "P": 2829.66, + "G(i)": 602.8, + "H_sun": 29.94, + "T2m": 24.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200619:1710", + "P": 1009.86, + "G(i)": 221.65, + "H_sun": 19.49, + "T2m": 23.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200619:1810", + "P": 79.02, + "G(i)": 28.74, + "H_sun": 9.46, + "T2m": 22.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.07, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200619:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200619:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.41, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200620:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200620:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200620:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200620:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.85, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200620:0410", + "P": 18.36, + "G(i)": 12.24, + "H_sun": 3.59, + "T2m": 14.96, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200620:0510", + "P": 290.1, + "G(i)": 72.58, + "H_sun": 13.19, + "T2m": 14.37, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200620:0610", + "P": 476.82, + "G(i)": 110.18, + "H_sun": 23.41, + "T2m": 16.25, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200620:0710", + "P": 1103.52, + "G(i)": 255.1, + "H_sun": 33.96, + "T2m": 19.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200620:0810", + "P": 2016.12, + "G(i)": 434.25, + "H_sun": 44.5, + "T2m": 21.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200620:0910", + "P": 3062.82, + "G(i)": 653.89, + "H_sun": 54.55, + "T2m": 22.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200620:1010", + "P": 3830.58, + "G(i)": 838.9, + "H_sun": 63.13, + "T2m": 24.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200620:1110", + "P": 4340.82, + "G(i)": 970.62, + "H_sun": 68.1, + "T2m": 24.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200620:1210", + "P": 4601.76, + "G(i)": 1042.62, + "H_sun": 66.86, + "T2m": 25.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200620:1310", + "P": 4510.98, + "G(i)": 1019.24, + "H_sun": 60.2, + "T2m": 25.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200620:1410", + "P": 4315.14, + "G(i)": 958.77, + "H_sun": 50.89, + "T2m": 26.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200620:1510", + "P": 3718.32, + "G(i)": 808.53, + "H_sun": 40.58, + "T2m": 26.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200620:1610", + "P": 2848.92, + "G(i)": 606.93, + "H_sun": 29.99, + "T2m": 26.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200620:1710", + "P": 1758.72, + "G(i)": 379.24, + "H_sun": 19.53, + "T2m": 25.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200620:1810", + "P": 528.9, + "G(i)": 136.89, + "H_sun": 9.51, + "T2m": 24.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200620:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200620:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.36, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200620:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200620:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200620:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200621:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200621:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.64, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:0410", + "P": 33.66, + "G(i)": 16.61, + "H_sun": 3.56, + "T2m": 15.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200621:0510", + "P": 336.66, + "G(i)": 82.2, + "H_sun": 13.16, + "T2m": 15.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200621:0610", + "P": 362.94, + "G(i)": 88.32, + "H_sun": 23.38, + "T2m": 17.96, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200621:0710", + "P": 856.32, + "G(i)": 223.65, + "H_sun": 33.92, + "T2m": 20.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200621:0810", + "P": 2025.0, + "G(i)": 441.0, + "H_sun": 44.47, + "T2m": 23.21, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200621:0910", + "P": 3048.66, + "G(i)": 655.28, + "H_sun": 54.52, + "T2m": 25.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200621:1010", + "P": 3764.04, + "G(i)": 833.57, + "H_sun": 63.11, + "T2m": 26.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200621:1110", + "P": 4058.22, + "G(i)": 921.82, + "H_sun": 68.1, + "T2m": 27.21, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200621:1210", + "P": 4332.48, + "G(i)": 1010.13, + "H_sun": 66.88, + "T2m": 27.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200621:1310", + "P": 4374.6, + "G(i)": 1008.27, + "H_sun": 60.23, + "T2m": 28.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200621:1410", + "P": 4170.3, + "G(i)": 943.58, + "H_sun": 50.93, + "T2m": 28.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:1510", + "P": 3652.5, + "G(i)": 805.53, + "H_sun": 40.62, + "T2m": 28.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200621:1610", + "P": 2836.5, + "G(i)": 613.85, + "H_sun": 30.03, + "T2m": 28.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200621:1710", + "P": 1751.1, + "G(i)": 384.01, + "H_sun": 19.57, + "T2m": 28.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200621:1810", + "P": 543.6, + "G(i)": 142.46, + "H_sun": 9.54, + "T2m": 26.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200621:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200621:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.39, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200621:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200621:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.64, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200621:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.82, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200622:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.15, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200622:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.08, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200622:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200622:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200622:0410", + "P": 32.76, + "G(i)": 16.61, + "H_sun": 3.53, + "T2m": 19.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200622:0510", + "P": 216.24, + "G(i)": 58.59, + "H_sun": 13.12, + "T2m": 18.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200622:0610", + "P": 347.04, + "G(i)": 85.7, + "H_sun": 23.34, + "T2m": 19.58, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200622:0710", + "P": 805.44, + "G(i)": 217.52, + "H_sun": 33.88, + "T2m": 22.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200622:0810", + "P": 1998.36, + "G(i)": 439.69, + "H_sun": 44.43, + "T2m": 25.07, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200622:0910", + "P": 3015.66, + "G(i)": 654.56, + "H_sun": 54.49, + "T2m": 26.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200622:1010", + "P": 3735.12, + "G(i)": 836.25, + "H_sun": 63.08, + "T2m": 28.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200622:1110", + "P": 4180.68, + "G(i)": 971.96, + "H_sun": 68.09, + "T2m": 29.02, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200622:1210", + "P": 4484.64, + "G(i)": 1045.33, + "H_sun": 66.89, + "T2m": 29.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200622:1310", + "P": 4452.18, + "G(i)": 1017.2, + "H_sun": 60.26, + "T2m": 30.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200622:1410", + "P": 4287.0, + "G(i)": 962.18, + "H_sun": 50.97, + "T2m": 30.45, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200622:1510", + "P": 3670.32, + "G(i)": 807.41, + "H_sun": 40.65, + "T2m": 30.4, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200622:1610", + "P": 2806.26, + "G(i)": 610.91, + "H_sun": 30.07, + "T2m": 30.09, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200622:1710", + "P": 1698.42, + "G(i)": 376.11, + "H_sun": 19.6, + "T2m": 29.48, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200622:1810", + "P": 544.26, + "G(i)": 144.1, + "H_sun": 9.58, + "T2m": 29.06, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200622:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200622:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200622:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200622:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200622:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200623:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200623:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:0410", + "P": 29.64, + "G(i)": 15.74, + "H_sun": 3.49, + "T2m": 19.49, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200623:0510", + "P": 236.04, + "G(i)": 62.96, + "H_sun": 13.08, + "T2m": 19.66, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200623:0610", + "P": 404.58, + "G(i)": 97.94, + "H_sun": 23.3, + "T2m": 21.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:0710", + "P": 835.2, + "G(i)": 221.97, + "H_sun": 33.84, + "T2m": 23.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:0810", + "P": 1980.12, + "G(i)": 438.11, + "H_sun": 44.39, + "T2m": 25.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200623:0910", + "P": 2978.82, + "G(i)": 650.8, + "H_sun": 54.45, + "T2m": 26.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200623:1010", + "P": 3695.64, + "G(i)": 832.29, + "H_sun": 63.05, + "T2m": 28.37, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200623:1110", + "P": 4143.54, + "G(i)": 967.15, + "H_sun": 68.07, + "T2m": 29.48, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200623:1210", + "P": 4409.52, + "G(i)": 1033.2, + "H_sun": 66.9, + "T2m": 30.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:1310", + "P": 4361.94, + "G(i)": 1010.76, + "H_sun": 60.28, + "T2m": 30.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200623:1410", + "P": 4124.16, + "G(i)": 945.21, + "H_sun": 50.99, + "T2m": 31.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200623:1510", + "P": 3556.68, + "G(i)": 796.49, + "H_sun": 40.69, + "T2m": 31.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:1610", + "P": 2770.56, + "G(i)": 606.96, + "H_sun": 30.1, + "T2m": 31.2, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200623:1710", + "P": 1687.14, + "G(i)": 373.86, + "H_sun": 19.64, + "T2m": 30.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:1810", + "P": 545.82, + "G(i)": 144.1, + "H_sun": 9.6, + "T2m": 29.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200623:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200623:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.88, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200623:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.0, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200623:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200623:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.77, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200624:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200624:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200624:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200624:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200624:0410", + "P": 33.0, + "G(i)": 16.61, + "H_sun": 3.44, + "T2m": 18.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200624:0510", + "P": 254.04, + "G(i)": 66.46, + "H_sun": 13.03, + "T2m": 18.76, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200624:0610", + "P": 400.74, + "G(i)": 97.06, + "H_sun": 23.25, + "T2m": 20.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200624:0710", + "P": 812.04, + "G(i)": 218.55, + "H_sun": 33.79, + "T2m": 23.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200624:0810", + "P": 1987.8, + "G(i)": 437.98, + "H_sun": 44.34, + "T2m": 25.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:0910", + "P": 3013.5, + "G(i)": 651.97, + "H_sun": 54.4, + "T2m": 26.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:1010", + "P": 3775.5, + "G(i)": 833.83, + "H_sun": 63.01, + "T2m": 28.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:1110", + "P": 4269.96, + "G(i)": 964.28, + "H_sun": 68.05, + "T2m": 28.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:1210", + "P": 4506.36, + "G(i)": 1036.36, + "H_sun": 66.9, + "T2m": 29.73, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200624:1310", + "P": 4395.24, + "G(i)": 1013.07, + "H_sun": 60.3, + "T2m": 30.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200624:1410", + "P": 4118.58, + "G(i)": 942.08, + "H_sun": 51.02, + "T2m": 30.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200624:1510", + "P": 3494.94, + "G(i)": 778.04, + "H_sun": 40.71, + "T2m": 30.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200624:1610", + "P": 2768.7, + "G(i)": 601.15, + "H_sun": 30.13, + "T2m": 30.51, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200624:1710", + "P": 1669.98, + "G(i)": 367.47, + "H_sun": 19.66, + "T2m": 29.74, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200624:1810", + "P": 510.18, + "G(i)": 133.88, + "H_sun": 9.63, + "T2m": 27.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200624:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.28, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200624:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.06, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200624:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200624:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.07, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200624:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.39, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200625:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200625:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200625:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.18, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0410", + "P": 23.64, + "G(i)": 13.99, + "H_sun": 3.4, + "T2m": 19.04, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200625:0510", + "P": 186.66, + "G(i)": 52.47, + "H_sun": 12.98, + "T2m": 19.72, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0610", + "P": 640.26, + "G(i)": 144.29, + "H_sun": 23.2, + "T2m": 20.57, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0710", + "P": 998.7, + "G(i)": 219.12, + "H_sun": 33.74, + "T2m": 22.86, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200625:0810", + "P": 1806.48, + "G(i)": 387.0, + "H_sun": 44.29, + "T2m": 23.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200625:0910", + "P": 2937.48, + "G(i)": 625.14, + "H_sun": 54.36, + "T2m": 24.53, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200625:1010", + "P": 3575.64, + "G(i)": 771.73, + "H_sun": 62.97, + "T2m": 25.52, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200625:1110", + "P": 4007.1, + "G(i)": 879.97, + "H_sun": 68.02, + "T2m": 26.82, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200625:1210", + "P": 4390.38, + "G(i)": 985.49, + "H_sun": 66.89, + "T2m": 27.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200625:1310", + "P": 4306.26, + "G(i)": 972.46, + "H_sun": 60.31, + "T2m": 28.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200625:1410", + "P": 3988.26, + "G(i)": 884.02, + "H_sun": 51.04, + "T2m": 28.75, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200625:1510", + "P": 2752.98, + "G(i)": 592.52, + "H_sun": 40.74, + "T2m": 28.38, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200625:1610", + "P": 1645.2, + "G(i)": 353.73, + "H_sun": 30.15, + "T2m": 27.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200625:1710", + "P": 537.06, + "G(i)": 127.72, + "H_sun": 19.68, + "T2m": 26.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200625:1810", + "P": 38.28, + "G(i)": 18.54, + "H_sun": 9.65, + "T2m": 25.91, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200625:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.6, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200625:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200625:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200625:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200625:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.81, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200626:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.0, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200626:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200626:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.87, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200626:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200626:0410", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 3.34, + "T2m": 19.96, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200626:0510", + "P": 39.06, + "G(i)": 18.36, + "H_sun": 12.93, + "T2m": 19.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200626:0610", + "P": 515.28, + "G(i)": 119.8, + "H_sun": 23.14, + "T2m": 20.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200626:0710", + "P": 1121.1, + "G(i)": 246.1, + "H_sun": 33.69, + "T2m": 21.07, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200626:0810", + "P": 1268.7, + "G(i)": 272.36, + "H_sun": 44.23, + "T2m": 22.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200626:0910", + "P": 1959.36, + "G(i)": 418.71, + "H_sun": 54.3, + "T2m": 23.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200626:1010", + "P": 3446.94, + "G(i)": 757.45, + "H_sun": 62.92, + "T2m": 24.77, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200626:1110", + "P": 3906.9, + "G(i)": 870.81, + "H_sun": 67.98, + "T2m": 25.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200626:1210", + "P": 4060.56, + "G(i)": 917.18, + "H_sun": 66.88, + "T2m": 26.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200626:1310", + "P": 1907.1, + "G(i)": 412.93, + "H_sun": 60.31, + "T2m": 27.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200626:1410", + "P": 2031.42, + "G(i)": 437.03, + "H_sun": 51.05, + "T2m": 27.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200626:1510", + "P": 2036.28, + "G(i)": 436.12, + "H_sun": 40.75, + "T2m": 27.5, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200626:1610", + "P": 1865.58, + "G(i)": 394.24, + "H_sun": 30.17, + "T2m": 25.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200626:1710", + "P": 1582.62, + "G(i)": 340.44, + "H_sun": 19.7, + "T2m": 24.36, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200626:1810", + "P": 597.54, + "G(i)": 153.38, + "H_sun": 9.66, + "T2m": 24.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200626:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.53, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200626:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200626:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.07, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200626:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.52, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200626:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.03, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200627:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.06, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200627:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200627:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200627:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200627:0410", + "P": 12.18, + "G(i)": 10.49, + "H_sun": 3.28, + "T2m": 20.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:0510", + "P": 239.22, + "G(i)": 63.84, + "H_sun": 12.87, + "T2m": 20.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:0610", + "P": 630.48, + "G(i)": 143.41, + "H_sun": 23.08, + "T2m": 21.63, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200627:0710", + "P": 1106.88, + "G(i)": 253.19, + "H_sun": 33.63, + "T2m": 22.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200627:0810", + "P": 1847.1, + "G(i)": 401.41, + "H_sun": 44.18, + "T2m": 23.43, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200627:0910", + "P": 2896.98, + "G(i)": 626.93, + "H_sun": 54.24, + "T2m": 24.66, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200627:1010", + "P": 3651.18, + "G(i)": 802.83, + "H_sun": 62.86, + "T2m": 25.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:1110", + "P": 4157.16, + "G(i)": 931.87, + "H_sun": 67.94, + "T2m": 27.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200627:1210", + "P": 4367.04, + "G(i)": 990.19, + "H_sun": 66.86, + "T2m": 28.27, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200627:1310", + "P": 4225.98, + "G(i)": 952.95, + "H_sun": 60.31, + "T2m": 28.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200627:1410", + "P": 2794.26, + "G(i)": 609.56, + "H_sun": 51.06, + "T2m": 29.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200627:1510", + "P": 171.3, + "G(i)": 50.99, + "H_sun": 40.77, + "T2m": 28.52, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200627:1610", + "P": 111.18, + "G(i)": 37.08, + "H_sun": 30.18, + "T2m": 28.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:1710", + "P": 84.66, + "G(i)": 30.59, + "H_sun": 19.71, + "T2m": 27.21, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200627:1810", + "P": 394.98, + "G(i)": 104.15, + "H_sun": 9.67, + "T2m": 25.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200627:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200627:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.8, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200627:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200628:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.01, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200628:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200628:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200628:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200628:0410", + "P": 20.64, + "G(i)": 13.12, + "H_sun": 3.22, + "T2m": 19.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200628:0510", + "P": 303.96, + "G(i)": 76.95, + "H_sun": 12.81, + "T2m": 19.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200628:0610", + "P": 646.86, + "G(i)": 146.91, + "H_sun": 23.02, + "T2m": 21.94, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200628:0710", + "P": 801.0, + "G(i)": 214.48, + "H_sun": 33.57, + "T2m": 23.23, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200628:0810", + "P": 1922.94, + "G(i)": 426.3, + "H_sun": 44.11, + "T2m": 25.06, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200628:0910", + "P": 2909.7, + "G(i)": 637.18, + "H_sun": 54.18, + "T2m": 26.65, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200628:1010", + "P": 3647.46, + "G(i)": 812.96, + "H_sun": 62.8, + "T2m": 28.11, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200628:1110", + "P": 4121.76, + "G(i)": 934.92, + "H_sun": 67.89, + "T2m": 29.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200628:1210", + "P": 4379.82, + "G(i)": 999.28, + "H_sun": 66.84, + "T2m": 29.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200628:1310", + "P": 4356.12, + "G(i)": 993.51, + "H_sun": 60.31, + "T2m": 30.55, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200628:1410", + "P": 4158.0, + "G(i)": 930.72, + "H_sun": 51.07, + "T2m": 30.65, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200628:1510", + "P": 3511.5, + "G(i)": 773.69, + "H_sun": 40.77, + "T2m": 30.35, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200628:1610", + "P": 2528.58, + "G(i)": 544.65, + "H_sun": 30.19, + "T2m": 29.93, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200628:1710", + "P": 1485.78, + "G(i)": 325.25, + "H_sun": 19.72, + "T2m": 28.86, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200628:1810", + "P": 468.36, + "G(i)": 122.87, + "H_sun": 9.67, + "T2m": 27.5, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200628:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.67, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200628:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.28, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200628:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200628:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.3, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200628:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200629:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200629:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.32, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200629:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200629:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200629:0410", + "P": 20.76, + "G(i)": 13.12, + "H_sun": 3.15, + "T2m": 18.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200629:0510", + "P": 248.76, + "G(i)": 65.58, + "H_sun": 12.74, + "T2m": 19.67, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200629:0610", + "P": 399.3, + "G(i)": 97.06, + "H_sun": 22.95, + "T2m": 21.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200629:0710", + "P": 805.32, + "G(i)": 214.05, + "H_sun": 33.5, + "T2m": 23.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200629:0810", + "P": 1915.02, + "G(i)": 422.53, + "H_sun": 44.05, + "T2m": 25.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200629:0910", + "P": 2900.64, + "G(i)": 631.23, + "H_sun": 54.11, + "T2m": 26.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200629:1010", + "P": 3539.94, + "G(i)": 793.66, + "H_sun": 62.74, + "T2m": 27.88, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200629:1110", + "P": 4068.12, + "G(i)": 931.84, + "H_sun": 67.83, + "T2m": 29.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200629:1210", + "P": 4297.86, + "G(i)": 995.27, + "H_sun": 66.8, + "T2m": 30.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200629:1310", + "P": 4254.24, + "G(i)": 997.01, + "H_sun": 60.3, + "T2m": 31.54, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200629:1410", + "P": 3946.14, + "G(i)": 920.95, + "H_sun": 51.06, + "T2m": 31.92, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200629:1510", + "P": 3443.7, + "G(i)": 786.95, + "H_sun": 40.78, + "T2m": 32.31, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200629:1610", + "P": 2671.14, + "G(i)": 589.4, + "H_sun": 30.19, + "T2m": 32.06, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200629:1710", + "P": 1621.14, + "G(i)": 358.28, + "H_sun": 19.72, + "T2m": 31.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200629:1810", + "P": 506.82, + "G(i)": 133.61, + "H_sun": 9.67, + "T2m": 29.49, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200629:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.85, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200629:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.63, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200629:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200629:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200629:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200630:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200630:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200630:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200630:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.6, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200630:0410", + "P": 17.7, + "G(i)": 12.24, + "H_sun": 3.08, + "T2m": 20.29, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200630:0510", + "P": 293.58, + "G(i)": 75.2, + "H_sun": 12.67, + "T2m": 20.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200630:0610", + "P": 616.98, + "G(i)": 140.79, + "H_sun": 22.88, + "T2m": 21.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200630:0710", + "P": 1071.36, + "G(i)": 248.09, + "H_sun": 33.43, + "T2m": 23.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200630:0810", + "P": 1771.32, + "G(i)": 381.79, + "H_sun": 43.97, + "T2m": 24.29, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200630:0910", + "P": 2605.68, + "G(i)": 561.07, + "H_sun": 54.04, + "T2m": 25.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200630:1010", + "P": 2863.26, + "G(i)": 626.38, + "H_sun": 62.66, + "T2m": 26.43, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200630:1110", + "P": 3676.32, + "G(i)": 825.4, + "H_sun": 67.77, + "T2m": 27.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200630:1210", + "P": 4033.8, + "G(i)": 913.35, + "H_sun": 66.76, + "T2m": 28.27, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200630:1310", + "P": 3175.86, + "G(i)": 694.16, + "H_sun": 60.28, + "T2m": 28.98, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200630:1410", + "P": 3822.84, + "G(i)": 840.54, + "H_sun": 51.06, + "T2m": 29.54, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200630:1510", + "P": 3376.56, + "G(i)": 735.97, + "H_sun": 40.77, + "T2m": 29.49, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200630:1610", + "P": 2578.8, + "G(i)": 552.62, + "H_sun": 30.19, + "T2m": 29.18, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200630:1710", + "P": 1421.58, + "G(i)": 310.83, + "H_sun": 19.71, + "T2m": 28.55, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200630:1810", + "P": 494.82, + "G(i)": 129.16, + "H_sun": 9.66, + "T2m": 27.49, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200630:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200630:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.75, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200630:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200630:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.26, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200630:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200701:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200701:0410", + "P": 9.72, + "G(i)": 9.62, + "H_sun": 3.01, + "T2m": 20.36, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200701:0510", + "P": 293.22, + "G(i)": 75.2, + "H_sun": 12.59, + "T2m": 21.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200701:0610", + "P": 444.66, + "G(i)": 106.68, + "H_sun": 22.81, + "T2m": 22.33, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200701:0710", + "P": 969.9, + "G(i)": 234.97, + "H_sun": 33.35, + "T2m": 23.96, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200701:0810", + "P": 1873.68, + "G(i)": 416.22, + "H_sun": 43.9, + "T2m": 25.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200701:0910", + "P": 2801.22, + "G(i)": 611.22, + "H_sun": 53.96, + "T2m": 26.57, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200701:1010", + "P": 3422.7, + "G(i)": 757.11, + "H_sun": 62.59, + "T2m": 27.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200701:1110", + "P": 3665.76, + "G(i)": 815.38, + "H_sun": 67.7, + "T2m": 28.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200701:1210", + "P": 390.84, + "G(i)": 98.27, + "H_sun": 66.72, + "T2m": 29.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:1310", + "P": 424.92, + "G(i)": 105.69, + "H_sun": 60.25, + "T2m": 29.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200701:1410", + "P": 3941.64, + "G(i)": 884.11, + "H_sun": 51.05, + "T2m": 29.41, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200701:1510", + "P": 3454.14, + "G(i)": 759.24, + "H_sun": 40.77, + "T2m": 29.64, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:1610", + "P": 2704.5, + "G(i)": 584.96, + "H_sun": 30.18, + "T2m": 29.33, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200701:1710", + "P": 337.44, + "G(i)": 86.86, + "H_sun": 19.7, + "T2m": 28.42, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200701:1810", + "P": 492.84, + "G(i)": 128.39, + "H_sun": 9.64, + "T2m": 26.61, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200701:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.09, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200701:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200701:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200701:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200701:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.84, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200702:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200702:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.02, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200702:0410", + "P": 20.4, + "G(i)": 13.12, + "H_sun": 2.92, + "T2m": 21.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200702:0510", + "P": 246.06, + "G(i)": 65.58, + "H_sun": 12.51, + "T2m": 21.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200702:0610", + "P": 375.3, + "G(i)": 92.69, + "H_sun": 22.73, + "T2m": 22.98, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200702:0710", + "P": 795.36, + "G(i)": 213.29, + "H_sun": 33.28, + "T2m": 24.06, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200702:0810", + "P": 1911.3, + "G(i)": 425.36, + "H_sun": 43.82, + "T2m": 25.75, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200702:0910", + "P": 2881.56, + "G(i)": 633.98, + "H_sun": 53.88, + "T2m": 27.31, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200702:1010", + "P": 3624.36, + "G(i)": 811.86, + "H_sun": 62.51, + "T2m": 28.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200702:1110", + "P": 4099.62, + "G(i)": 935.96, + "H_sun": 67.62, + "T2m": 30.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200702:1210", + "P": 4282.56, + "G(i)": 983.41, + "H_sun": 66.66, + "T2m": 31.09, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:1310", + "P": 4205.94, + "G(i)": 959.1, + "H_sun": 60.22, + "T2m": 32.02, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200702:1410", + "P": 1878.84, + "G(i)": 411.9, + "H_sun": 51.03, + "T2m": 31.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200702:1510", + "P": 2836.26, + "G(i)": 619.88, + "H_sun": 40.76, + "T2m": 31.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200702:1610", + "P": 1081.26, + "G(i)": 241.3, + "H_sun": 30.17, + "T2m": 30.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200702:1710", + "P": 54.54, + "G(i)": 23.18, + "H_sun": 19.69, + "T2m": 29.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:1810", + "P": 164.28, + "G(i)": 49.77, + "H_sun": 9.63, + "T2m": 28.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200702:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200702:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.85, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200702:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.17, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200702:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200702:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.2, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200703:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200703:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200703:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200703:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200703:0410", + "P": 12.48, + "G(i)": 10.49, + "H_sun": 2.84, + "T2m": 18.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200703:0510", + "P": 271.14, + "G(i)": 69.96, + "H_sun": 12.43, + "T2m": 19.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200703:0610", + "P": 407.94, + "G(i)": 97.94, + "H_sun": 22.65, + "T2m": 20.04, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200703:0710", + "P": 784.68, + "G(i)": 210.93, + "H_sun": 33.19, + "T2m": 23.41, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200703:0810", + "P": 1930.86, + "G(i)": 424.89, + "H_sun": 43.74, + "T2m": 25.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200703:0910", + "P": 2815.98, + "G(i)": 604.88, + "H_sun": 53.8, + "T2m": 26.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200703:1010", + "P": 3610.86, + "G(i)": 783.34, + "H_sun": 62.42, + "T2m": 27.37, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200703:1110", + "P": 4265.64, + "G(i)": 942.07, + "H_sun": 67.54, + "T2m": 28.0, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200703:1210", + "P": 4467.42, + "G(i)": 1003.17, + "H_sun": 66.6, + "T2m": 27.74, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200703:1310", + "P": 4471.56, + "G(i)": 986.1, + "H_sun": 60.19, + "T2m": 26.65, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200703:1410", + "P": 2217.54, + "G(i)": 469.05, + "H_sun": 51.01, + "T2m": 25.96, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200703:1510", + "P": 544.26, + "G(i)": 127.94, + "H_sun": 40.74, + "T2m": 25.17, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200703:1610", + "P": 116.94, + "G(i)": 38.01, + "H_sun": 30.15, + "T2m": 25.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200703:1710", + "P": 67.38, + "G(i)": 25.96, + "H_sun": 19.67, + "T2m": 23.69, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200703:1810", + "P": 11.16, + "G(i)": 10.2, + "H_sun": 9.6, + "T2m": 22.58, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200703:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.7, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200703:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.99, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200703:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200703:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.73, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200703:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.53, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200704:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.35, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200704:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.31, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200704:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.17, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200704:0410", + "P": 7.44, + "G(i)": 8.74, + "H_sun": 2.75, + "T2m": 17.99, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200704:0510", + "P": 208.68, + "G(i)": 56.84, + "H_sun": 12.34, + "T2m": 18.34, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:0610", + "P": 335.1, + "G(i)": 83.07, + "H_sun": 22.56, + "T2m": 19.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:0710", + "P": 770.22, + "G(i)": 207.32, + "H_sun": 33.11, + "T2m": 20.68, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200704:0810", + "P": 1960.98, + "G(i)": 425.03, + "H_sun": 43.65, + "T2m": 22.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200704:0910", + "P": 2984.46, + "G(i)": 635.17, + "H_sun": 53.71, + "T2m": 23.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200704:1010", + "P": 3742.56, + "G(i)": 816.11, + "H_sun": 62.33, + "T2m": 24.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200704:1110", + "P": 4183.32, + "G(i)": 941.5, + "H_sun": 67.45, + "T2m": 25.85, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200704:1210", + "P": 4446.24, + "G(i)": 1013.86, + "H_sun": 66.54, + "T2m": 26.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200704:1310", + "P": 4462.74, + "G(i)": 1010.05, + "H_sun": 60.14, + "T2m": 27.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200704:1410", + "P": 4180.08, + "G(i)": 936.29, + "H_sun": 50.98, + "T2m": 27.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200704:1510", + "P": 3608.52, + "G(i)": 795.96, + "H_sun": 40.72, + "T2m": 27.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200704:1610", + "P": 2783.34, + "G(i)": 604.13, + "H_sun": 30.13, + "T2m": 27.92, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200704:1710", + "P": 1714.26, + "G(i)": 375.6, + "H_sun": 19.65, + "T2m": 27.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200704:1810", + "P": 571.86, + "G(i)": 148.49, + "H_sun": 9.57, + "T2m": 26.92, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200704:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.33, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200704:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.18, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200704:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.88, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200704:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200705:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200705:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200705:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.39, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200705:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.21, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200705:0410", + "P": 12.24, + "G(i)": 10.49, + "H_sun": 2.66, + "T2m": 20.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200705:0510", + "P": 210.42, + "G(i)": 57.71, + "H_sun": 12.25, + "T2m": 20.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200705:0610", + "P": 356.1, + "G(i)": 88.32, + "H_sun": 22.47, + "T2m": 21.56, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200705:0710", + "P": 761.94, + "G(i)": 207.55, + "H_sun": 33.02, + "T2m": 23.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200705:0810", + "P": 1893.42, + "G(i)": 421.1, + "H_sun": 43.56, + "T2m": 25.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200705:0910", + "P": 2870.1, + "G(i)": 630.21, + "H_sun": 53.62, + "T2m": 27.02, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200705:1010", + "P": 3620.28, + "G(i)": 809.33, + "H_sun": 62.23, + "T2m": 28.24, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200705:1110", + "P": 4097.4, + "G(i)": 933.98, + "H_sun": 67.36, + "T2m": 29.24, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200705:1210", + "P": 4350.12, + "G(i)": 1005.73, + "H_sun": 66.46, + "T2m": 30.03, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200705:1310", + "P": 4348.2, + "G(i)": 1002.48, + "H_sun": 60.1, + "T2m": 30.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200705:1410", + "P": 4095.9, + "G(i)": 933.99, + "H_sun": 50.94, + "T2m": 31.04, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200705:1510", + "P": 3520.14, + "G(i)": 788.6, + "H_sun": 40.69, + "T2m": 31.23, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200705:1610", + "P": 2740.08, + "G(i)": 601.64, + "H_sun": 30.11, + "T2m": 31.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200705:1710", + "P": 1666.98, + "G(i)": 370.17, + "H_sun": 19.62, + "T2m": 30.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200705:1810", + "P": 562.02, + "G(i)": 147.97, + "H_sun": 9.54, + "T2m": 29.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200705:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200705:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200705:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200705:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200705:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200706:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200706:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200706:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200706:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200706:0410", + "P": 9.6, + "G(i)": 9.62, + "H_sun": 2.56, + "T2m": 21.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200706:0510", + "P": 225.54, + "G(i)": 61.21, + "H_sun": 12.16, + "T2m": 21.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200706:0610", + "P": 370.98, + "G(i)": 91.82, + "H_sun": 22.38, + "T2m": 22.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200706:0710", + "P": 752.76, + "G(i)": 207.23, + "H_sun": 32.93, + "T2m": 25.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200706:0810", + "P": 1888.08, + "G(i)": 422.88, + "H_sun": 43.47, + "T2m": 26.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200706:0910", + "P": 2862.3, + "G(i)": 633.94, + "H_sun": 53.52, + "T2m": 28.36, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200706:1010", + "P": 3584.04, + "G(i)": 811.2, + "H_sun": 62.13, + "T2m": 29.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200706:1110", + "P": 4082.22, + "G(i)": 941.54, + "H_sun": 67.25, + "T2m": 30.58, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200706:1210", + "P": 4341.6, + "G(i)": 1008.47, + "H_sun": 66.38, + "T2m": 31.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200706:1310", + "P": 4344.12, + "G(i)": 1005.21, + "H_sun": 60.04, + "T2m": 31.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200706:1410", + "P": 4084.26, + "G(i)": 931.0, + "H_sun": 50.9, + "T2m": 32.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200706:1510", + "P": 3566.64, + "G(i)": 791.44, + "H_sun": 40.66, + "T2m": 32.21, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200706:1610", + "P": 2675.64, + "G(i)": 581.02, + "H_sun": 30.08, + "T2m": 31.86, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200706:1710", + "P": 1658.4, + "G(i)": 365.93, + "H_sun": 19.58, + "T2m": 30.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200706:1810", + "P": 511.68, + "G(i)": 134.75, + "H_sun": 9.5, + "T2m": 29.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200706:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.68, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200706:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200706:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200706:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.83, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200706:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.75, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200707:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.9, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200707:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200707:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200707:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200707:0410", + "P": 7.32, + "G(i)": 8.74, + "H_sun": 2.46, + "T2m": 18.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200707:0510", + "P": 215.82, + "G(i)": 58.59, + "H_sun": 12.06, + "T2m": 19.51, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200707:0610", + "P": 394.56, + "G(i)": 95.32, + "H_sun": 22.28, + "T2m": 20.35, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200707:0710", + "P": 821.94, + "G(i)": 213.69, + "H_sun": 32.83, + "T2m": 22.44, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200707:0810", + "P": 1969.74, + "G(i)": 421.28, + "H_sun": 43.37, + "T2m": 22.87, + "WS10m": 4.34, + "Int": 0.0 + }, + { + "time": "20200707:0910", + "P": 2854.62, + "G(i)": 589.53, + "H_sun": 53.42, + "T2m": 23.46, + "WS10m": 4.41, + "Int": 0.0 + }, + { + "time": "20200707:1010", + "P": 3850.8, + "G(i)": 798.23, + "H_sun": 62.02, + "T2m": 23.86, + "WS10m": 4.48, + "Int": 0.0 + }, + { + "time": "20200707:1110", + "P": 4329.42, + "G(i)": 909.14, + "H_sun": 67.15, + "T2m": 24.19, + "WS10m": 4.28, + "Int": 0.0 + }, + { + "time": "20200707:1210", + "P": 4603.68, + "G(i)": 981.72, + "H_sun": 66.29, + "T2m": 24.6, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200707:1310", + "P": 4609.56, + "G(i)": 995.63, + "H_sun": 59.98, + "T2m": 24.9, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200707:1410", + "P": 4279.2, + "G(i)": 927.42, + "H_sun": 50.86, + "T2m": 25.17, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200707:1510", + "P": 3624.72, + "G(i)": 777.47, + "H_sun": 40.62, + "T2m": 25.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:1610", + "P": 2796.9, + "G(i)": 592.92, + "H_sun": 30.04, + "T2m": 25.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200707:1710", + "P": 1685.88, + "G(i)": 362.45, + "H_sun": 19.54, + "T2m": 24.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200707:1810", + "P": 529.14, + "G(i)": 135.34, + "H_sun": 9.45, + "T2m": 24.11, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200707:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200707:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.73, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.65, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.89, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.01, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.85, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.46, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.99, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0510", + "P": 230.04, + "G(i)": 61.21, + "H_sun": 11.95, + "T2m": 17.92, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200708:0610", + "P": 637.14, + "G(i)": 143.41, + "H_sun": 22.18, + "T2m": 19.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200708:0710", + "P": 1077.54, + "G(i)": 245.68, + "H_sun": 32.73, + "T2m": 20.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:0810", + "P": 1942.08, + "G(i)": 420.15, + "H_sun": 43.27, + "T2m": 21.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200708:0910", + "P": 2966.82, + "G(i)": 629.05, + "H_sun": 53.32, + "T2m": 23.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200708:1010", + "P": 3714.66, + "G(i)": 804.62, + "H_sun": 61.91, + "T2m": 24.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200708:1110", + "P": 4240.74, + "G(i)": 941.79, + "H_sun": 67.03, + "T2m": 25.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200708:1210", + "P": 4479.66, + "G(i)": 1008.97, + "H_sun": 66.2, + "T2m": 26.45, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200708:1310", + "P": 4468.44, + "G(i)": 1007.03, + "H_sun": 59.91, + "T2m": 27.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200708:1410", + "P": 4180.8, + "G(i)": 933.0, + "H_sun": 50.81, + "T2m": 27.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200708:1510", + "P": 3583.68, + "G(i)": 787.29, + "H_sun": 40.57, + "T2m": 28.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200708:1610", + "P": 2779.32, + "G(i)": 601.37, + "H_sun": 30.0, + "T2m": 28.16, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200708:1710", + "P": 1694.7, + "G(i)": 370.25, + "H_sun": 19.5, + "T2m": 27.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200708:1810", + "P": 528.3, + "G(i)": 137.38, + "H_sun": 9.4, + "T2m": 27.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200708:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.32, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200708:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200708:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.95, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.04, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200709:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200709:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200709:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.64, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200709:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200709:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200709:0510", + "P": 236.88, + "G(i)": 62.96, + "H_sun": 11.85, + "T2m": 19.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200709:0610", + "P": 399.66, + "G(i)": 97.06, + "H_sun": 22.08, + "T2m": 21.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200709:0710", + "P": 783.9, + "G(i)": 209.27, + "H_sun": 32.63, + "T2m": 23.07, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200709:0810", + "P": 1884.96, + "G(i)": 417.35, + "H_sun": 43.17, + "T2m": 24.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200709:0910", + "P": 2866.08, + "G(i)": 624.53, + "H_sun": 53.21, + "T2m": 26.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200709:1010", + "P": 3603.84, + "G(i)": 801.5, + "H_sun": 61.79, + "T2m": 27.59, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200709:1110", + "P": 4093.74, + "G(i)": 928.89, + "H_sun": 66.91, + "T2m": 28.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200709:1210", + "P": 4330.32, + "G(i)": 995.16, + "H_sun": 66.1, + "T2m": 29.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200709:1310", + "P": 4340.88, + "G(i)": 998.01, + "H_sun": 59.84, + "T2m": 30.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200709:1410", + "P": 4053.42, + "G(i)": 923.18, + "H_sun": 50.75, + "T2m": 31.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200709:1510", + "P": 3501.12, + "G(i)": 785.55, + "H_sun": 40.53, + "T2m": 31.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200709:1610", + "P": 2689.98, + "G(i)": 589.3, + "H_sun": 29.95, + "T2m": 31.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200709:1710", + "P": 1639.98, + "G(i)": 362.12, + "H_sun": 19.45, + "T2m": 30.66, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200709:1810", + "P": 493.38, + "G(i)": 130.13, + "H_sun": 9.34, + "T2m": 29.39, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200709:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.3, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200709:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200709:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200709:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200709:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200710:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200710:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200710:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200710:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200710:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.95, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200710:0510", + "P": 254.22, + "G(i)": 67.33, + "H_sun": 11.74, + "T2m": 21.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200710:0610", + "P": 477.9, + "G(i)": 113.68, + "H_sun": 21.98, + "T2m": 22.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200710:0710", + "P": 821.4, + "G(i)": 213.97, + "H_sun": 32.53, + "T2m": 25.03, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200710:0810", + "P": 1830.84, + "G(i)": 409.58, + "H_sun": 43.06, + "T2m": 26.63, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200710:0910", + "P": 2779.62, + "G(i)": 610.08, + "H_sun": 53.1, + "T2m": 28.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200710:1010", + "P": 3526.08, + "G(i)": 783.97, + "H_sun": 61.67, + "T2m": 29.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200710:1110", + "P": 4037.22, + "G(i)": 913.54, + "H_sun": 66.79, + "T2m": 30.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200710:1210", + "P": 4263.18, + "G(i)": 978.37, + "H_sun": 65.99, + "T2m": 30.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200710:1310", + "P": 4194.48, + "G(i)": 968.02, + "H_sun": 59.76, + "T2m": 31.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200710:1410", + "P": 3170.22, + "G(i)": 700.99, + "H_sun": 50.69, + "T2m": 31.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200710:1510", + "P": 2957.28, + "G(i)": 642.16, + "H_sun": 40.47, + "T2m": 30.13, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200710:1610", + "P": 393.84, + "G(i)": 99.2, + "H_sun": 29.9, + "T2m": 29.84, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200710:1710", + "P": 1218.66, + "G(i)": 270.04, + "H_sun": 19.39, + "T2m": 29.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200710:1810", + "P": 417.42, + "G(i)": 110.93, + "H_sun": 9.28, + "T2m": 28.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200710:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.84, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200710:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.25, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200710:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200710:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.64, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200710:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.76, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200711:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200711:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200711:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200711:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200711:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200711:0510", + "P": 252.42, + "G(i)": 66.46, + "H_sun": 11.63, + "T2m": 20.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200711:0610", + "P": 460.02, + "G(i)": 109.31, + "H_sun": 21.87, + "T2m": 21.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200711:0710", + "P": 804.0, + "G(i)": 209.14, + "H_sun": 32.42, + "T2m": 22.87, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200711:0810", + "P": 1869.6, + "G(i)": 408.68, + "H_sun": 42.95, + "T2m": 23.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200711:0910", + "P": 2802.3, + "G(i)": 603.44, + "H_sun": 52.98, + "T2m": 24.63, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200711:1010", + "P": 2721.3, + "G(i)": 588.19, + "H_sun": 61.54, + "T2m": 25.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200711:1110", + "P": 3238.98, + "G(i)": 710.38, + "H_sun": 66.65, + "T2m": 26.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200711:1210", + "P": 3789.42, + "G(i)": 846.84, + "H_sun": 65.88, + "T2m": 27.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200711:1310", + "P": 3605.28, + "G(i)": 800.8, + "H_sun": 59.67, + "T2m": 27.7, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200711:1410", + "P": 3768.54, + "G(i)": 837.67, + "H_sun": 50.62, + "T2m": 28.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200711:1510", + "P": 3398.52, + "G(i)": 745.3, + "H_sun": 40.41, + "T2m": 28.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200711:1610", + "P": 2406.0, + "G(i)": 516.51, + "H_sun": 29.84, + "T2m": 28.27, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200711:1710", + "P": 1697.4, + "G(i)": 370.55, + "H_sun": 19.33, + "T2m": 27.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200711:1810", + "P": 418.2, + "G(i)": 110.42, + "H_sun": 9.21, + "T2m": 26.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200711:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.51, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200711:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200711:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.54, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200711:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200711:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200712:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200712:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.07, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200712:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.51, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200712:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.86, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200712:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.26, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200712:0510", + "P": 232.32, + "G(i)": 62.09, + "H_sun": 11.51, + "T2m": 19.94, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200712:0610", + "P": 431.16, + "G(i)": 102.31, + "H_sun": 21.75, + "T2m": 19.72, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200712:0710", + "P": 821.58, + "G(i)": 211.33, + "H_sun": 32.31, + "T2m": 20.72, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200712:0810", + "P": 1923.36, + "G(i)": 411.26, + "H_sun": 42.84, + "T2m": 21.78, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200712:0910", + "P": 2494.8, + "G(i)": 520.59, + "H_sun": 52.86, + "T2m": 22.59, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200712:1010", + "P": 3625.92, + "G(i)": 766.56, + "H_sun": 61.41, + "T2m": 23.66, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200712:1110", + "P": 4320.18, + "G(i)": 937.26, + "H_sun": 66.52, + "T2m": 24.78, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200712:1210", + "P": 4531.26, + "G(i)": 999.27, + "H_sun": 65.76, + "T2m": 25.57, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200712:1310", + "P": 4491.06, + "G(i)": 996.12, + "H_sun": 59.58, + "T2m": 26.31, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200712:1410", + "P": 4134.42, + "G(i)": 916.13, + "H_sun": 50.55, + "T2m": 27.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200712:1510", + "P": 3621.42, + "G(i)": 789.48, + "H_sun": 40.35, + "T2m": 27.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200712:1610", + "P": 2788.68, + "G(i)": 597.24, + "H_sun": 29.77, + "T2m": 27.63, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200712:1710", + "P": 1729.62, + "G(i)": 375.47, + "H_sun": 19.26, + "T2m": 27.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200712:1810", + "P": 570.18, + "G(i)": 147.21, + "H_sun": 9.14, + "T2m": 26.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200712:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.8, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200712:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.49, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200712:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.39, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200712:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200712:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.52, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200713:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.99, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200713:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.73, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200713:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.52, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200713:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.44, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200713:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.21, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200713:0510", + "P": 244.44, + "G(i)": 64.71, + "H_sun": 11.39, + "T2m": 20.17, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200713:0610", + "P": 325.26, + "G(i)": 81.32, + "H_sun": 21.64, + "T2m": 20.25, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200713:0710", + "P": 586.56, + "G(i)": 133.5, + "H_sun": 32.2, + "T2m": 20.72, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200713:0810", + "P": 1901.16, + "G(i)": 403.69, + "H_sun": 42.73, + "T2m": 21.47, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200713:0910", + "P": 2971.74, + "G(i)": 617.03, + "H_sun": 52.74, + "T2m": 22.02, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200713:1010", + "P": 3733.98, + "G(i)": 787.08, + "H_sun": 61.27, + "T2m": 22.81, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200713:1110", + "P": 3079.32, + "G(i)": 649.71, + "H_sun": 66.37, + "T2m": 23.54, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200713:1210", + "P": 4232.76, + "G(i)": 916.73, + "H_sun": 65.63, + "T2m": 24.55, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200713:1310", + "P": 4110.96, + "G(i)": 894.73, + "H_sun": 59.48, + "T2m": 25.87, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200713:1410", + "P": 3578.76, + "G(i)": 777.32, + "H_sun": 50.47, + "T2m": 26.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200713:1510", + "P": 2552.22, + "G(i)": 544.57, + "H_sun": 40.28, + "T2m": 26.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200713:1610", + "P": 2232.72, + "G(i)": 473.66, + "H_sun": 29.7, + "T2m": 26.67, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200713:1710", + "P": 1567.2, + "G(i)": 337.8, + "H_sun": 19.19, + "T2m": 26.19, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200713:1810", + "P": 520.62, + "G(i)": 134.46, + "H_sun": 9.06, + "T2m": 25.25, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200713:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.61, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200713:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.61, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200713:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.44, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200713:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200713:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.58, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200714:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.28, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.12, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200714:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200714:0510", + "P": 254.4, + "G(i)": 66.46, + "H_sun": 11.27, + "T2m": 18.78, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0610", + "P": 531.66, + "G(i)": 122.42, + "H_sun": 21.52, + "T2m": 19.73, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200714:0710", + "P": 1044.18, + "G(i)": 227.23, + "H_sun": 32.08, + "T2m": 19.87, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200714:0810", + "P": 1899.54, + "G(i)": 403.4, + "H_sun": 42.61, + "T2m": 20.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200714:0910", + "P": 2839.02, + "G(i)": 595.0, + "H_sun": 52.61, + "T2m": 21.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200714:1010", + "P": 3702.66, + "G(i)": 790.52, + "H_sun": 61.13, + "T2m": 21.77, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200714:1110", + "P": 3994.68, + "G(i)": 870.56, + "H_sun": 66.22, + "T2m": 22.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200714:1210", + "P": 4082.64, + "G(i)": 902.43, + "H_sun": 65.5, + "T2m": 23.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200714:1310", + "P": 3001.08, + "G(i)": 645.33, + "H_sun": 59.38, + "T2m": 24.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200714:1410", + "P": 3436.02, + "G(i)": 741.64, + "H_sun": 50.38, + "T2m": 24.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200714:1510", + "P": 1855.08, + "G(i)": 392.34, + "H_sun": 40.2, + "T2m": 24.57, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200714:1610", + "P": 2953.5, + "G(i)": 623.59, + "H_sun": 29.63, + "T2m": 24.5, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:1710", + "P": 1272.42, + "G(i)": 274.71, + "H_sun": 19.11, + "T2m": 24.29, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:1810", + "P": 319.38, + "G(i)": 85.42, + "H_sun": 8.98, + "T2m": 23.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200714:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.29, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.03, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200714:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.82, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.83, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.12, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200715:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200715:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.04, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200715:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.51, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:0510", + "P": 60.12, + "G(i)": 23.61, + "H_sun": 11.14, + "T2m": 17.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200715:0610", + "P": 523.14, + "G(i)": 120.68, + "H_sun": 21.4, + "T2m": 19.02, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200715:0710", + "P": 1067.22, + "G(i)": 237.53, + "H_sun": 31.96, + "T2m": 20.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200715:0810", + "P": 1741.02, + "G(i)": 374.55, + "H_sun": 42.49, + "T2m": 21.57, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200715:0910", + "P": 2796.3, + "G(i)": 597.79, + "H_sun": 52.48, + "T2m": 22.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200715:1010", + "P": 3233.76, + "G(i)": 697.41, + "H_sun": 60.99, + "T2m": 24.0, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200715:1110", + "P": 3983.1, + "G(i)": 871.62, + "H_sun": 66.07, + "T2m": 24.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:1210", + "P": 3411.06, + "G(i)": 742.22, + "H_sun": 65.35, + "T2m": 25.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200715:1310", + "P": 3267.06, + "G(i)": 709.39, + "H_sun": 59.27, + "T2m": 26.46, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:1410", + "P": 3549.96, + "G(i)": 784.74, + "H_sun": 50.29, + "T2m": 27.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200715:1510", + "P": 3138.0, + "G(i)": 682.9, + "H_sun": 40.12, + "T2m": 26.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200715:1610", + "P": 1868.16, + "G(i)": 399.02, + "H_sun": 29.55, + "T2m": 25.94, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200715:1710", + "P": 586.92, + "G(i)": 137.23, + "H_sun": 19.03, + "T2m": 25.49, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200715:1810", + "P": 224.22, + "G(i)": 63.52, + "H_sun": 8.89, + "T2m": 24.52, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200715:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200715:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.65, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200715:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200715:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200715:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200716:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.8, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200716:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.02, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200716:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.01, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200716:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.54, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200716:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200716:0510", + "P": 237.84, + "G(i)": 62.96, + "H_sun": 11.02, + "T2m": 18.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200716:0610", + "P": 450.66, + "G(i)": 106.68, + "H_sun": 21.28, + "T2m": 19.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:0710", + "P": 762.54, + "G(i)": 201.88, + "H_sun": 31.84, + "T2m": 21.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200716:0810", + "P": 1866.96, + "G(i)": 407.99, + "H_sun": 42.36, + "T2m": 22.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200716:0910", + "P": 2868.12, + "G(i)": 611.36, + "H_sun": 52.35, + "T2m": 23.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200716:1010", + "P": 3563.64, + "G(i)": 778.66, + "H_sun": 60.84, + "T2m": 25.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1110", + "P": 4069.44, + "G(i)": 918.32, + "H_sun": 65.91, + "T2m": 26.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200716:1210", + "P": 4254.84, + "G(i)": 966.41, + "H_sun": 65.21, + "T2m": 27.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1310", + "P": 4347.96, + "G(i)": 981.1, + "H_sun": 59.15, + "T2m": 27.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200716:1410", + "P": 4044.72, + "G(i)": 901.29, + "H_sun": 50.2, + "T2m": 27.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200716:1510", + "P": 3501.9, + "G(i)": 769.72, + "H_sun": 40.03, + "T2m": 28.17, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200716:1610", + "P": 2681.64, + "G(i)": 579.77, + "H_sun": 29.46, + "T2m": 27.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1710", + "P": 1601.94, + "G(i)": 350.47, + "H_sun": 18.94, + "T2m": 27.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1810", + "P": 444.06, + "G(i)": 117.31, + "H_sun": 8.79, + "T2m": 26.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200716:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.37, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200716:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.8, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200716:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.7, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200716:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200716:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.79, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200717:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.96, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200717:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.72, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200717:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200717:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200717:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.72, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200717:0510", + "P": 174.18, + "G(i)": 49.84, + "H_sun": 10.89, + "T2m": 19.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200717:0610", + "P": 336.42, + "G(i)": 83.95, + "H_sun": 21.15, + "T2m": 20.61, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200717:0710", + "P": 878.4, + "G(i)": 218.48, + "H_sun": 31.72, + "T2m": 23.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200717:0810", + "P": 1841.64, + "G(i)": 407.13, + "H_sun": 42.23, + "T2m": 24.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200717:0910", + "P": 2878.98, + "G(i)": 614.43, + "H_sun": 52.21, + "T2m": 26.19, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200717:1010", + "P": 3646.8, + "G(i)": 785.66, + "H_sun": 60.69, + "T2m": 26.78, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200717:1110", + "P": 3759.9, + "G(i)": 821.35, + "H_sun": 65.74, + "T2m": 27.3, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200717:1210", + "P": 3851.28, + "G(i)": 851.2, + "H_sun": 65.05, + "T2m": 27.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200717:1310", + "P": 4333.32, + "G(i)": 973.59, + "H_sun": 59.02, + "T2m": 28.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200717:1410", + "P": 3920.46, + "G(i)": 869.19, + "H_sun": 50.09, + "T2m": 28.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200717:1510", + "P": 3486.06, + "G(i)": 763.44, + "H_sun": 39.94, + "T2m": 28.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200717:1610", + "P": 2696.34, + "G(i)": 582.67, + "H_sun": 29.37, + "T2m": 28.29, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200717:1710", + "P": 1609.08, + "G(i)": 352.97, + "H_sun": 18.85, + "T2m": 27.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200717:1810", + "P": 495.24, + "G(i)": 129.8, + "H_sun": 8.69, + "T2m": 26.75, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200717:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200717:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200717:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200717:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.15, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200717:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.85, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.27, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.62, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.21, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200718:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.82, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200718:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.56, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200718:0510", + "P": 134.52, + "G(i)": 41.1, + "H_sun": 10.75, + "T2m": 19.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200718:0610", + "P": 351.96, + "G(i)": 86.57, + "H_sun": 21.02, + "T2m": 19.74, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0710", + "P": 649.56, + "G(i)": 144.84, + "H_sun": 31.59, + "T2m": 18.81, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200718:0810", + "P": 1534.2, + "G(i)": 319.43, + "H_sun": 42.1, + "T2m": 19.4, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200718:0910", + "P": 1566.06, + "G(i)": 326.11, + "H_sun": 52.07, + "T2m": 20.34, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200718:1010", + "P": 3717.9, + "G(i)": 787.73, + "H_sun": 60.53, + "T2m": 21.89, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200718:1110", + "P": 3140.1, + "G(i)": 677.02, + "H_sun": 65.57, + "T2m": 22.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200718:1210", + "P": 3460.44, + "G(i)": 753.24, + "H_sun": 64.89, + "T2m": 24.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200718:1310", + "P": 3360.9, + "G(i)": 735.65, + "H_sun": 58.89, + "T2m": 25.15, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200718:1410", + "P": 3146.64, + "G(i)": 686.98, + "H_sun": 49.98, + "T2m": 25.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200718:1510", + "P": 3347.52, + "G(i)": 729.84, + "H_sun": 39.84, + "T2m": 26.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200718:1610", + "P": 2686.56, + "G(i)": 574.73, + "H_sun": 29.28, + "T2m": 26.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200718:1710", + "P": 1662.66, + "G(i)": 360.09, + "H_sun": 18.75, + "T2m": 26.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200718:1810", + "P": 498.36, + "G(i)": 129.84, + "H_sun": 8.58, + "T2m": 25.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200718:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.22, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200718:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200718:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200718:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.39, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200718:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.38, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200719:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.83, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200719:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200719:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200719:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200719:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200719:0510", + "P": 212.4, + "G(i)": 57.71, + "H_sun": 10.61, + "T2m": 18.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200719:0610", + "P": 353.82, + "G(i)": 87.45, + "H_sun": 20.89, + "T2m": 20.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200719:0710", + "P": 700.98, + "G(i)": 194.83, + "H_sun": 31.46, + "T2m": 22.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200719:0810", + "P": 1875.6, + "G(i)": 412.61, + "H_sun": 41.97, + "T2m": 23.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200719:0910", + "P": 2928.6, + "G(i)": 626.43, + "H_sun": 51.93, + "T2m": 24.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200719:1010", + "P": 3590.76, + "G(i)": 784.3, + "H_sun": 60.37, + "T2m": 25.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200719:1110", + "P": 3949.8, + "G(i)": 889.43, + "H_sun": 65.39, + "T2m": 26.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200719:1210", + "P": 4396.44, + "G(i)": 1008.94, + "H_sun": 64.73, + "T2m": 27.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200719:1310", + "P": 4472.4, + "G(i)": 1012.7, + "H_sun": 58.76, + "T2m": 28.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200719:1410", + "P": 4225.62, + "G(i)": 939.25, + "H_sun": 49.87, + "T2m": 29.21, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200719:1510", + "P": 3366.06, + "G(i)": 729.02, + "H_sun": 39.73, + "T2m": 29.16, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200719:1610", + "P": 2663.4, + "G(i)": 569.66, + "H_sun": 29.17, + "T2m": 28.97, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200719:1710", + "P": 1704.66, + "G(i)": 370.41, + "H_sun": 18.64, + "T2m": 28.37, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200719:1810", + "P": 511.08, + "G(i)": 133.97, + "H_sun": 8.47, + "T2m": 27.41, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200719:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200719:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200719:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.11, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200719:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.12, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200719:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.23, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200720:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200720:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200720:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200720:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200720:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200720:0510", + "P": 231.96, + "G(i)": 62.09, + "H_sun": 10.48, + "T2m": 19.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200720:0610", + "P": 412.62, + "G(i)": 99.69, + "H_sun": 20.76, + "T2m": 21.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200720:0710", + "P": 724.62, + "G(i)": 197.56, + "H_sun": 31.33, + "T2m": 22.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200720:0810", + "P": 1850.82, + "G(i)": 409.95, + "H_sun": 41.84, + "T2m": 24.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200720:0910", + "P": 2853.0, + "G(i)": 619.63, + "H_sun": 51.78, + "T2m": 25.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200720:1010", + "P": 3587.16, + "G(i)": 795.89, + "H_sun": 60.2, + "T2m": 27.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200720:1110", + "P": 3930.24, + "G(i)": 885.49, + "H_sun": 65.21, + "T2m": 28.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200720:1210", + "P": 4214.52, + "G(i)": 956.9, + "H_sun": 64.56, + "T2m": 29.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200720:1310", + "P": 4061.04, + "G(i)": 912.08, + "H_sun": 58.61, + "T2m": 30.56, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200720:1410", + "P": 3876.18, + "G(i)": 859.41, + "H_sun": 49.75, + "T2m": 30.93, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200720:1510", + "P": 3281.94, + "G(i)": 714.12, + "H_sun": 39.62, + "T2m": 30.98, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200720:1610", + "P": 2711.58, + "G(i)": 585.29, + "H_sun": 29.07, + "T2m": 30.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200720:1710", + "P": 1630.26, + "G(i)": 356.45, + "H_sun": 18.53, + "T2m": 29.78, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200720:1810", + "P": 462.6, + "G(i)": 123.09, + "H_sun": 8.35, + "T2m": 28.67, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200720:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.34, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200720:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.99, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200720:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200720:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.88, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200720:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200721:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200721:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200721:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.44, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200721:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200721:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200721:0510", + "P": 222.54, + "G(i)": 60.34, + "H_sun": 10.33, + "T2m": 20.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200721:0610", + "P": 563.28, + "G(i)": 130.29, + "H_sun": 20.62, + "T2m": 22.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200721:0710", + "P": 749.28, + "G(i)": 200.01, + "H_sun": 31.19, + "T2m": 23.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200721:0810", + "P": 1801.68, + "G(i)": 402.31, + "H_sun": 41.7, + "T2m": 25.49, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200721:0910", + "P": 2761.38, + "G(i)": 605.04, + "H_sun": 51.63, + "T2m": 27.16, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200721:1010", + "P": 3520.32, + "G(i)": 787.42, + "H_sun": 60.03, + "T2m": 28.25, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200721:1110", + "P": 3958.86, + "G(i)": 911.57, + "H_sun": 65.02, + "T2m": 29.36, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200721:1210", + "P": 4132.92, + "G(i)": 964.68, + "H_sun": 64.38, + "T2m": 30.44, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200721:1310", + "P": 4048.5, + "G(i)": 929.44, + "H_sun": 58.46, + "T2m": 31.32, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200721:1410", + "P": 3832.44, + "G(i)": 874.55, + "H_sun": 49.62, + "T2m": 31.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200721:1510", + "P": 1692.84, + "G(i)": 372.27, + "H_sun": 39.51, + "T2m": 31.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200721:1610", + "P": 964.56, + "G(i)": 217.86, + "H_sun": 28.95, + "T2m": 31.54, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200721:1710", + "P": 1669.92, + "G(i)": 367.0, + "H_sun": 18.42, + "T2m": 30.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200721:1810", + "P": 516.84, + "G(i)": 137.2, + "H_sun": 8.23, + "T2m": 28.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200721:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200721:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200721:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200721:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200721:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200722:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200722:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.05, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200722:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200722:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200722:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200722:0510", + "P": 209.16, + "G(i)": 57.71, + "H_sun": 10.19, + "T2m": 21.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200722:0610", + "P": 378.48, + "G(i)": 93.57, + "H_sun": 20.48, + "T2m": 23.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200722:0710", + "P": 771.12, + "G(i)": 202.32, + "H_sun": 31.06, + "T2m": 24.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200722:0810", + "P": 1793.34, + "G(i)": 400.73, + "H_sun": 41.56, + "T2m": 25.67, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200722:0910", + "P": 2740.14, + "G(i)": 598.79, + "H_sun": 51.48, + "T2m": 27.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200722:1010", + "P": 3526.26, + "G(i)": 788.07, + "H_sun": 59.86, + "T2m": 28.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200722:1110", + "P": 3968.46, + "G(i)": 902.76, + "H_sun": 64.82, + "T2m": 29.65, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200722:1210", + "P": 3938.64, + "G(i)": 902.81, + "H_sun": 64.19, + "T2m": 30.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200722:1310", + "P": 3753.12, + "G(i)": 854.23, + "H_sun": 58.31, + "T2m": 31.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200722:1410", + "P": 3485.94, + "G(i)": 795.68, + "H_sun": 49.49, + "T2m": 31.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200722:1510", + "P": 855.66, + "G(i)": 196.72, + "H_sun": 39.38, + "T2m": 31.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200722:1610", + "P": 613.92, + "G(i)": 145.94, + "H_sun": 28.83, + "T2m": 31.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200722:1710", + "P": 43.8, + "G(i)": 20.4, + "H_sun": 18.29, + "T2m": 30.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200722:1810", + "P": 13.2, + "G(i)": 11.13, + "H_sun": 8.1, + "T2m": 29.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200722:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200722:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.36, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200722:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.47, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200722:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200722:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200723:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.7, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200723:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.28, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200723:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200723:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200723:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200723:0510", + "P": 214.74, + "G(i)": 58.59, + "H_sun": 10.04, + "T2m": 20.31, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200723:0610", + "P": 488.88, + "G(i)": 115.43, + "H_sun": 20.34, + "T2m": 22.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200723:0710", + "P": 1019.64, + "G(i)": 232.02, + "H_sun": 30.92, + "T2m": 22.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200723:0810", + "P": 1819.68, + "G(i)": 399.8, + "H_sun": 41.41, + "T2m": 24.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200723:0910", + "P": 2844.24, + "G(i)": 618.12, + "H_sun": 51.32, + "T2m": 26.45, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200723:1010", + "P": 3605.16, + "G(i)": 807.16, + "H_sun": 59.68, + "T2m": 27.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200723:1110", + "P": 4040.82, + "G(i)": 931.83, + "H_sun": 64.63, + "T2m": 29.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200723:1210", + "P": 4322.58, + "G(i)": 1007.09, + "H_sun": 64.0, + "T2m": 30.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200723:1310", + "P": 4345.2, + "G(i)": 1004.59, + "H_sun": 58.14, + "T2m": 31.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200723:1410", + "P": 4023.18, + "G(i)": 924.37, + "H_sun": 49.35, + "T2m": 32.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200723:1510", + "P": 3488.52, + "G(i)": 783.64, + "H_sun": 39.26, + "T2m": 32.34, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200723:1610", + "P": 2612.1, + "G(i)": 569.56, + "H_sun": 28.71, + "T2m": 31.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200723:1710", + "P": 1573.98, + "G(i)": 346.82, + "H_sun": 18.17, + "T2m": 30.69, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200723:1810", + "P": 304.2, + "G(i)": 85.06, + "H_sun": 7.96, + "T2m": 29.49, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200723:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200723:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200723:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200723:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.15, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200723:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200724:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.29, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200724:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200724:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200724:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200724:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.68, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200724:0510", + "P": 194.94, + "G(i)": 54.22, + "H_sun": 9.89, + "T2m": 19.64, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200724:0610", + "P": 114.54, + "G(i)": 36.73, + "H_sun": 20.2, + "T2m": 20.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200724:0710", + "P": 823.08, + "G(i)": 180.56, + "H_sun": 30.78, + "T2m": 19.6, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200724:0810", + "P": 473.82, + "G(i)": 111.25, + "H_sun": 41.27, + "T2m": 20.41, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200724:0910", + "P": 625.44, + "G(i)": 141.85, + "H_sun": 51.17, + "T2m": 21.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200724:1010", + "P": 513.78, + "G(i)": 120.52, + "H_sun": 59.5, + "T2m": 22.83, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200724:1110", + "P": 292.38, + "G(i)": 76.02, + "H_sun": 64.42, + "T2m": 24.56, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200724:1210", + "P": 1047.6, + "G(i)": 229.92, + "H_sun": 63.8, + "T2m": 25.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200724:1310", + "P": 3084.54, + "G(i)": 659.23, + "H_sun": 57.98, + "T2m": 26.1, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200724:1410", + "P": 4088.7, + "G(i)": 903.47, + "H_sun": 49.2, + "T2m": 26.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200724:1510", + "P": 3522.3, + "G(i)": 775.79, + "H_sun": 39.12, + "T2m": 27.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200724:1610", + "P": 2722.8, + "G(i)": 590.68, + "H_sun": 28.58, + "T2m": 27.55, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200724:1710", + "P": 1651.08, + "G(i)": 359.28, + "H_sun": 18.03, + "T2m": 27.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200724:1810", + "P": 437.4, + "G(i)": 116.61, + "H_sun": 7.82, + "T2m": 26.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200724:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.46, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200724:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.93, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200724:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200724:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200724:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200725:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200725:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.08, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200725:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200725:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.86, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200725:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200725:0510", + "P": 182.64, + "G(i)": 51.59, + "H_sun": 9.74, + "T2m": 19.33, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200725:0610", + "P": 320.7, + "G(i)": 80.45, + "H_sun": 20.06, + "T2m": 19.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200725:0710", + "P": 652.38, + "G(i)": 186.67, + "H_sun": 30.63, + "T2m": 22.76, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200725:0810", + "P": 1823.58, + "G(i)": 407.43, + "H_sun": 41.12, + "T2m": 24.75, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200725:0910", + "P": 2851.56, + "G(i)": 622.61, + "H_sun": 51.0, + "T2m": 26.4, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200725:1010", + "P": 3664.8, + "G(i)": 814.76, + "H_sun": 59.31, + "T2m": 27.91, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200725:1110", + "P": 4145.52, + "G(i)": 937.21, + "H_sun": 64.21, + "T2m": 29.04, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200725:1210", + "P": 4429.62, + "G(i)": 1007.29, + "H_sun": 63.6, + "T2m": 29.79, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200725:1310", + "P": 4472.16, + "G(i)": 1011.35, + "H_sun": 57.8, + "T2m": 30.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200725:1410", + "P": 4183.2, + "G(i)": 930.32, + "H_sun": 49.05, + "T2m": 30.41, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200725:1510", + "P": 3616.68, + "G(i)": 788.53, + "H_sun": 38.98, + "T2m": 30.31, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200725:1610", + "P": 2740.2, + "G(i)": 587.14, + "H_sun": 28.44, + "T2m": 29.93, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200725:1710", + "P": 1704.6, + "G(i)": 371.25, + "H_sun": 17.89, + "T2m": 29.3, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200725:1810", + "P": 235.02, + "G(i)": 67.81, + "H_sun": 7.67, + "T2m": 28.04, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200725:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200725:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.77, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200725:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.52, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200725:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.43, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200725:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200726:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.2, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200726:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200726:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200726:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.31, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200726:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.0, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200726:0510", + "P": 26.28, + "G(i)": 14.87, + "H_sun": 9.59, + "T2m": 20.95, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200726:0610", + "P": 313.38, + "G(i)": 79.58, + "H_sun": 19.91, + "T2m": 21.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200726:0710", + "P": 646.8, + "G(i)": 184.48, + "H_sun": 30.49, + "T2m": 23.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200726:0810", + "P": 1787.82, + "G(i)": 393.82, + "H_sun": 40.97, + "T2m": 24.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200726:0910", + "P": 2280.84, + "G(i)": 494.62, + "H_sun": 50.84, + "T2m": 25.88, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200726:1010", + "P": 3572.64, + "G(i)": 799.58, + "H_sun": 59.12, + "T2m": 27.19, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200726:1110", + "P": 4073.76, + "G(i)": 923.47, + "H_sun": 64.0, + "T2m": 28.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200726:1210", + "P": 4332.84, + "G(i)": 986.14, + "H_sun": 63.39, + "T2m": 29.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200726:1310", + "P": 4138.02, + "G(i)": 950.02, + "H_sun": 57.62, + "T2m": 30.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200726:1410", + "P": 3890.7, + "G(i)": 883.25, + "H_sun": 48.89, + "T2m": 30.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200726:1510", + "P": 2734.62, + "G(i)": 599.28, + "H_sun": 38.84, + "T2m": 30.63, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200726:1610", + "P": 2083.38, + "G(i)": 449.71, + "H_sun": 28.3, + "T2m": 30.39, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200726:1710", + "P": 1538.34, + "G(i)": 336.69, + "H_sun": 17.75, + "T2m": 29.53, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200726:1810", + "P": 384.48, + "G(i)": 104.96, + "H_sun": 7.52, + "T2m": 28.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200726:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.39, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200726:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.18, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200726:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200726:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.21, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200726:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200727:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200727:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200727:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200727:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200727:0510", + "P": 187.8, + "G(i)": 53.34, + "H_sun": 9.43, + "T2m": 22.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:0610", + "P": 392.88, + "G(i)": 96.19, + "H_sun": 19.76, + "T2m": 22.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200727:0710", + "P": 678.18, + "G(i)": 187.8, + "H_sun": 30.34, + "T2m": 23.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200727:0810", + "P": 1797.84, + "G(i)": 396.86, + "H_sun": 40.82, + "T2m": 24.97, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200727:0910", + "P": 2816.7, + "G(i)": 601.08, + "H_sun": 50.67, + "T2m": 25.82, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200727:1010", + "P": 3591.3, + "G(i)": 777.45, + "H_sun": 58.93, + "T2m": 26.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200727:1110", + "P": 4034.88, + "G(i)": 895.13, + "H_sun": 63.78, + "T2m": 27.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200727:1210", + "P": 4168.86, + "G(i)": 941.68, + "H_sun": 63.18, + "T2m": 28.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200727:1310", + "P": 4057.5, + "G(i)": 923.26, + "H_sun": 57.43, + "T2m": 28.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:1410", + "P": 3918.0, + "G(i)": 886.43, + "H_sun": 48.73, + "T2m": 29.86, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200727:1510", + "P": 3346.26, + "G(i)": 742.5, + "H_sun": 38.69, + "T2m": 30.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200727:1610", + "P": 2523.0, + "G(i)": 552.3, + "H_sun": 28.15, + "T2m": 30.75, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:1710", + "P": 1473.9, + "G(i)": 326.98, + "H_sun": 17.6, + "T2m": 30.65, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200727:1810", + "P": 357.96, + "G(i)": 99.52, + "H_sun": 7.36, + "T2m": 29.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200727:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200727:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.68, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200727:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200727:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200727:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200728:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200728:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200728:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200728:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:0510", + "P": 140.82, + "G(i)": 42.85, + "H_sun": 9.27, + "T2m": 21.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:0610", + "P": 469.62, + "G(i)": 111.93, + "H_sun": 19.61, + "T2m": 23.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:0710", + "P": 753.42, + "G(i)": 198.26, + "H_sun": 30.19, + "T2m": 24.74, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200728:0810", + "P": 1756.68, + "G(i)": 394.78, + "H_sun": 40.66, + "T2m": 26.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200728:0910", + "P": 2593.86, + "G(i)": 569.8, + "H_sun": 50.5, + "T2m": 28.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200728:1010", + "P": 2716.86, + "G(i)": 599.54, + "H_sun": 58.73, + "T2m": 29.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:1110", + "P": 3960.78, + "G(i)": 901.09, + "H_sun": 63.55, + "T2m": 31.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:1210", + "P": 3594.96, + "G(i)": 817.9, + "H_sun": 62.95, + "T2m": 32.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200728:1310", + "P": 4014.84, + "G(i)": 941.72, + "H_sun": 57.24, + "T2m": 32.86, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200728:1410", + "P": 3470.34, + "G(i)": 797.44, + "H_sun": 48.56, + "T2m": 33.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200728:1510", + "P": 3090.06, + "G(i)": 691.38, + "H_sun": 38.53, + "T2m": 33.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:1610", + "P": 2267.4, + "G(i)": 501.32, + "H_sun": 28.0, + "T2m": 33.21, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:1710", + "P": 1107.3, + "G(i)": 251.38, + "H_sun": 17.44, + "T2m": 31.92, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200728:1810", + "P": 1.2, + "G(i)": 6.49, + "H_sun": 7.2, + "T2m": 30.77, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200728:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200728:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200728:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200728:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.87, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200729:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.16, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200729:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.24, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200729:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.26, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200729:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.61, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200729:0510", + "P": 177.96, + "G(i)": 51.59, + "H_sun": 9.11, + "T2m": 24.3, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200729:0610", + "P": 409.32, + "G(i)": 100.56, + "H_sun": 19.46, + "T2m": 24.92, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:0710", + "P": 691.68, + "G(i)": 189.2, + "H_sun": 30.04, + "T2m": 25.05, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200729:0810", + "P": 1744.14, + "G(i)": 392.02, + "H_sun": 40.51, + "T2m": 26.91, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200729:0910", + "P": 2700.18, + "G(i)": 595.54, + "H_sun": 50.33, + "T2m": 28.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200729:1010", + "P": 3434.88, + "G(i)": 774.43, + "H_sun": 58.53, + "T2m": 30.2, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:1110", + "P": 3609.6, + "G(i)": 827.72, + "H_sun": 63.33, + "T2m": 31.41, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:1210", + "P": 3601.62, + "G(i)": 830.13, + "H_sun": 62.73, + "T2m": 32.69, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200729:1310", + "P": 3481.08, + "G(i)": 796.71, + "H_sun": 57.04, + "T2m": 33.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200729:1410", + "P": 3456.24, + "G(i)": 783.31, + "H_sun": 48.38, + "T2m": 33.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200729:1510", + "P": 2680.44, + "G(i)": 596.22, + "H_sun": 38.37, + "T2m": 34.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200729:1610", + "P": 1444.14, + "G(i)": 320.65, + "H_sun": 27.84, + "T2m": 34.05, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200729:1710", + "P": 475.74, + "G(i)": 117.84, + "H_sun": 17.28, + "T2m": 32.94, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200729:1810", + "P": 75.72, + "G(i)": 29.19, + "H_sun": 7.03, + "T2m": 31.49, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200729:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.62, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200729:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200729:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200729:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200729:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200730:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.05, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200730:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.75, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200730:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.37, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200730:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.27, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200730:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.34, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200730:0510", + "P": 142.92, + "G(i)": 43.72, + "H_sun": 8.95, + "T2m": 23.97, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200730:0610", + "P": 507.84, + "G(i)": 120.68, + "H_sun": 19.3, + "T2m": 25.3, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200730:0710", + "P": 853.98, + "G(i)": 211.26, + "H_sun": 29.89, + "T2m": 26.6, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200730:0810", + "P": 1746.36, + "G(i)": 389.36, + "H_sun": 40.35, + "T2m": 27.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200730:0910", + "P": 2720.04, + "G(i)": 593.07, + "H_sun": 50.15, + "T2m": 29.53, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200730:1010", + "P": 3358.44, + "G(i)": 751.71, + "H_sun": 58.33, + "T2m": 30.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200730:1110", + "P": 3531.6, + "G(i)": 814.37, + "H_sun": 63.09, + "T2m": 32.13, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200730:1210", + "P": 3535.32, + "G(i)": 813.75, + "H_sun": 62.5, + "T2m": 33.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200730:1310", + "P": 3653.34, + "G(i)": 846.44, + "H_sun": 56.83, + "T2m": 34.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200730:1410", + "P": 3375.24, + "G(i)": 779.69, + "H_sun": 48.2, + "T2m": 34.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200730:1510", + "P": 3115.08, + "G(i)": 697.33, + "H_sun": 38.2, + "T2m": 34.75, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200730:1610", + "P": 2320.38, + "G(i)": 513.62, + "H_sun": 27.68, + "T2m": 34.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200730:1710", + "P": 1260.18, + "G(i)": 286.93, + "H_sun": 17.12, + "T2m": 33.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200730:1810", + "P": 392.46, + "G(i)": 110.67, + "H_sun": 6.86, + "T2m": 32.96, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200730:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 31.25, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200730:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.82, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200730:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200730:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200730:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200731:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200731:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.84, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200731:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200731:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.49, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200731:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200731:0510", + "P": 170.4, + "G(i)": 49.84, + "H_sun": 8.79, + "T2m": 24.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200731:0610", + "P": 368.76, + "G(i)": 92.69, + "H_sun": 19.15, + "T2m": 26.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200731:0710", + "P": 641.88, + "G(i)": 183.47, + "H_sun": 29.73, + "T2m": 26.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200731:0810", + "P": 1741.62, + "G(i)": 395.59, + "H_sun": 40.18, + "T2m": 28.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200731:0910", + "P": 2728.32, + "G(i)": 608.87, + "H_sun": 49.97, + "T2m": 30.55, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200731:1010", + "P": 3487.32, + "G(i)": 798.88, + "H_sun": 58.12, + "T2m": 32.1, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200731:1110", + "P": 3944.04, + "G(i)": 919.43, + "H_sun": 62.85, + "T2m": 33.65, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200731:1210", + "P": 4216.2, + "G(i)": 994.3, + "H_sun": 62.26, + "T2m": 35.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200731:1310", + "P": 4223.7, + "G(i)": 997.85, + "H_sun": 56.62, + "T2m": 36.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200731:1410", + "P": 3850.26, + "G(i)": 909.28, + "H_sun": 48.01, + "T2m": 36.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200731:1510", + "P": 3308.16, + "G(i)": 760.95, + "H_sun": 38.03, + "T2m": 37.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200731:1610", + "P": 2503.68, + "G(i)": 559.2, + "H_sun": 27.51, + "T2m": 35.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200731:1710", + "P": 1414.98, + "G(i)": 319.17, + "H_sun": 16.95, + "T2m": 34.52, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200731:1810", + "P": 274.62, + "G(i)": 81.06, + "H_sun": 6.68, + "T2m": 33.53, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200731:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 31.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200731:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200731:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200731:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200731:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.4, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200801:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.07, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200801:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200801:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200801:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200801:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.96, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200801:0510", + "P": 165.06, + "G(i)": 48.97, + "H_sun": 8.62, + "T2m": 25.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200801:0610", + "P": 385.62, + "G(i)": 96.19, + "H_sun": 18.99, + "T2m": 26.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200801:0710", + "P": 652.68, + "G(i)": 184.86, + "H_sun": 29.57, + "T2m": 27.58, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:0810", + "P": 1734.78, + "G(i)": 395.4, + "H_sun": 40.02, + "T2m": 29.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200801:0910", + "P": 2714.28, + "G(i)": 608.22, + "H_sun": 49.79, + "T2m": 32.05, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:1010", + "P": 3448.98, + "G(i)": 794.85, + "H_sun": 57.91, + "T2m": 33.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200801:1110", + "P": 3930.9, + "G(i)": 918.35, + "H_sun": 62.61, + "T2m": 35.32, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200801:1210", + "P": 4186.08, + "G(i)": 991.93, + "H_sun": 62.01, + "T2m": 36.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200801:1310", + "P": 4176.42, + "G(i)": 995.32, + "H_sun": 56.41, + "T2m": 37.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200801:1410", + "P": 3831.36, + "G(i)": 907.65, + "H_sun": 47.82, + "T2m": 37.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200801:1510", + "P": 3261.48, + "G(i)": 759.36, + "H_sun": 37.85, + "T2m": 37.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:1610", + "P": 2609.16, + "G(i)": 592.78, + "H_sun": 27.34, + "T2m": 37.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200801:1710", + "P": 1179.9, + "G(i)": 271.46, + "H_sun": 16.77, + "T2m": 35.41, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:1810", + "P": 0.0, + "G(i)": 5.56, + "H_sun": 6.49, + "T2m": 34.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200801:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 32.32, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200801:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.58, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200801:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.34, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200801:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.15, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200801:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.04, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200802:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.92, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200802:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200802:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200802:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.42, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200802:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200802:0510", + "P": 149.04, + "G(i)": 45.47, + "H_sun": 8.46, + "T2m": 25.79, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200802:0610", + "P": 331.92, + "G(i)": 84.82, + "H_sun": 18.83, + "T2m": 25.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200802:0710", + "P": 608.34, + "G(i)": 178.19, + "H_sun": 29.42, + "T2m": 27.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200802:0810", + "P": 1733.94, + "G(i)": 393.18, + "H_sun": 39.85, + "T2m": 29.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200802:0910", + "P": 2806.74, + "G(i)": 609.99, + "H_sun": 49.6, + "T2m": 30.96, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200802:1010", + "P": 3605.46, + "G(i)": 791.56, + "H_sun": 57.69, + "T2m": 31.89, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200802:1110", + "P": 3866.28, + "G(i)": 865.18, + "H_sun": 62.36, + "T2m": 32.5, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200802:1210", + "P": 4276.32, + "G(i)": 977.69, + "H_sun": 61.76, + "T2m": 33.03, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200802:1310", + "P": 4254.12, + "G(i)": 980.86, + "H_sun": 56.18, + "T2m": 33.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200802:1410", + "P": 3307.62, + "G(i)": 743.0, + "H_sun": 47.62, + "T2m": 33.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200802:1510", + "P": 2545.38, + "G(i)": 565.35, + "H_sun": 37.66, + "T2m": 33.99, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200802:1610", + "P": 92.94, + "G(i)": 33.38, + "H_sun": 27.16, + "T2m": 33.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200802:1710", + "P": 384.48, + "G(i)": 97.61, + "H_sun": 16.59, + "T2m": 30.86, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200802:1810", + "P": 0.0, + "G(i)": 5.56, + "H_sun": 6.3, + "T2m": 28.15, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200802:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200802:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200802:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200802:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.79, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200802:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.36, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200803:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200803:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.98, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200803:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200803:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200803:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200803:0510", + "P": 14.82, + "G(i)": 11.37, + "H_sun": 8.29, + "T2m": 21.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200803:0610", + "P": 425.58, + "G(i)": 102.31, + "H_sun": 18.67, + "T2m": 21.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200803:0710", + "P": 454.68, + "G(i)": 108.47, + "H_sun": 29.26, + "T2m": 22.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200803:0810", + "P": 1175.34, + "G(i)": 253.37, + "H_sun": 39.69, + "T2m": 22.57, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200803:0910", + "P": 1537.14, + "G(i)": 326.86, + "H_sun": 49.42, + "T2m": 22.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200803:1010", + "P": 1287.3, + "G(i)": 276.43, + "H_sun": 57.47, + "T2m": 23.6, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200803:1110", + "P": 707.46, + "G(i)": 160.39, + "H_sun": 62.11, + "T2m": 24.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200803:1210", + "P": 278.94, + "G(i)": 73.24, + "H_sun": 61.51, + "T2m": 24.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200803:1310", + "P": 706.02, + "G(i)": 160.39, + "H_sun": 55.95, + "T2m": 24.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200803:1410", + "P": 1134.42, + "G(i)": 247.75, + "H_sun": 47.42, + "T2m": 24.78, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200803:1510", + "P": 174.96, + "G(i)": 50.99, + "H_sun": 37.47, + "T2m": 24.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200803:1610", + "P": 97.92, + "G(i)": 33.38, + "H_sun": 26.97, + "T2m": 23.95, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200803:1710", + "P": 723.96, + "G(i)": 163.23, + "H_sun": 16.4, + "T2m": 23.65, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200803:1810", + "P": 0.0, + "G(i)": 4.64, + "H_sun": 6.11, + "T2m": 22.9, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200803:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.28, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200803:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.59, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200803:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200803:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200803:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200804:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200804:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200804:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200804:0510", + "P": 36.84, + "G(i)": 17.49, + "H_sun": 8.12, + "T2m": 15.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200804:0610", + "P": 238.8, + "G(i)": 62.96, + "H_sun": 18.5, + "T2m": 17.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200804:0710", + "P": 776.88, + "G(i)": 198.15, + "H_sun": 29.09, + "T2m": 20.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200804:0810", + "P": 1645.98, + "G(i)": 351.65, + "H_sun": 39.52, + "T2m": 22.46, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200804:0910", + "P": 1342.02, + "G(i)": 288.1, + "H_sun": 49.23, + "T2m": 24.18, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200804:1010", + "P": 2346.48, + "G(i)": 502.5, + "H_sun": 57.25, + "T2m": 25.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200804:1110", + "P": 3940.92, + "G(i)": 885.04, + "H_sun": 61.86, + "T2m": 26.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200804:1210", + "P": 4565.4, + "G(i)": 1038.07, + "H_sun": 61.25, + "T2m": 27.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200804:1310", + "P": 4591.62, + "G(i)": 1030.37, + "H_sun": 55.72, + "T2m": 28.09, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200804:1410", + "P": 4349.94, + "G(i)": 959.88, + "H_sun": 47.21, + "T2m": 28.32, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200804:1510", + "P": 3768.54, + "G(i)": 811.65, + "H_sun": 37.28, + "T2m": 28.27, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200804:1610", + "P": 2865.06, + "G(i)": 605.56, + "H_sun": 26.78, + "T2m": 27.76, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200804:1710", + "P": 1671.36, + "G(i)": 360.32, + "H_sun": 16.21, + "T2m": 27.0, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200804:1810", + "P": 364.92, + "G(i)": 101.64, + "H_sun": 5.91, + "T2m": 25.68, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200804:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200804:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.06, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200804:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.42, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200805:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200805:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200805:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.01, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200805:0510", + "P": 131.94, + "G(i)": 40.23, + "H_sun": 7.94, + "T2m": 17.36, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200805:0610", + "P": 283.32, + "G(i)": 72.58, + "H_sun": 18.34, + "T2m": 19.05, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200805:0710", + "P": 574.56, + "G(i)": 172.94, + "H_sun": 28.93, + "T2m": 21.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200805:0810", + "P": 1832.52, + "G(i)": 405.13, + "H_sun": 39.34, + "T2m": 23.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:0910", + "P": 2934.0, + "G(i)": 629.54, + "H_sun": 49.04, + "T2m": 24.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:1010", + "P": 3737.46, + "G(i)": 822.91, + "H_sun": 57.02, + "T2m": 26.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200805:1110", + "P": 4255.38, + "G(i)": 953.84, + "H_sun": 61.6, + "T2m": 27.23, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200805:1210", + "P": 4552.74, + "G(i)": 1025.98, + "H_sun": 60.99, + "T2m": 28.11, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200805:1310", + "P": 4544.82, + "G(i)": 1024.44, + "H_sun": 55.48, + "T2m": 28.76, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200805:1410", + "P": 4271.58, + "G(i)": 953.18, + "H_sun": 46.99, + "T2m": 29.2, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200805:1510", + "P": 3691.5, + "G(i)": 805.61, + "H_sun": 37.08, + "T2m": 29.3, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200805:1610", + "P": 2803.92, + "G(i)": 600.16, + "H_sun": 26.59, + "T2m": 28.98, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200805:1710", + "P": 1616.4, + "G(i)": 352.35, + "H_sun": 16.01, + "T2m": 28.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200805:1810", + "P": 311.04, + "G(i)": 89.92, + "H_sun": 5.7, + "T2m": 26.57, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200805:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200805:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200805:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200805:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200805:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200806:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200806:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200806:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200806:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.55, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.35, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200806:0510", + "P": 131.7, + "G(i)": 40.23, + "H_sun": 7.77, + "T2m": 17.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200806:0610", + "P": 308.58, + "G(i)": 77.83, + "H_sun": 18.17, + "T2m": 19.32, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200806:0710", + "P": 589.86, + "G(i)": 174.1, + "H_sun": 28.76, + "T2m": 22.29, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200806:0810", + "P": 1809.42, + "G(i)": 401.4, + "H_sun": 39.17, + "T2m": 24.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200806:0910", + "P": 2884.2, + "G(i)": 624.2, + "H_sun": 48.84, + "T2m": 25.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200806:1010", + "P": 3667.44, + "G(i)": 812.4, + "H_sun": 56.79, + "T2m": 27.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200806:1110", + "P": 4171.98, + "G(i)": 945.7, + "H_sun": 61.33, + "T2m": 28.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200806:1210", + "P": 4448.94, + "G(i)": 1023.29, + "H_sun": 60.72, + "T2m": 29.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200806:1310", + "P": 4421.7, + "G(i)": 1014.83, + "H_sun": 55.23, + "T2m": 30.27, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200806:1410", + "P": 4199.16, + "G(i)": 950.5, + "H_sun": 46.77, + "T2m": 30.83, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:1510", + "P": 3617.04, + "G(i)": 802.54, + "H_sun": 36.87, + "T2m": 31.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:1610", + "P": 2738.58, + "G(i)": 595.27, + "H_sun": 26.38, + "T2m": 30.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:1710", + "P": 1572.96, + "G(i)": 346.76, + "H_sun": 15.81, + "T2m": 30.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200806:1810", + "P": 271.44, + "G(i)": 80.81, + "H_sun": 5.49, + "T2m": 28.67, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200806:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.65, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200806:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.91, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200806:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.38, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200806:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200806:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.46, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200807:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200807:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200807:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200807:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.6, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:0510", + "P": 125.34, + "G(i)": 39.35, + "H_sun": 7.6, + "T2m": 21.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200807:0610", + "P": 296.46, + "G(i)": 76.08, + "H_sun": 18.01, + "T2m": 21.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:0710", + "P": 579.3, + "G(i)": 172.57, + "H_sun": 28.6, + "T2m": 24.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200807:0810", + "P": 1778.04, + "G(i)": 398.33, + "H_sun": 38.99, + "T2m": 26.11, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200807:0910", + "P": 2838.48, + "G(i)": 619.64, + "H_sun": 48.64, + "T2m": 27.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200807:1010", + "P": 3617.46, + "G(i)": 810.42, + "H_sun": 56.56, + "T2m": 29.0, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:1110", + "P": 4123.14, + "G(i)": 933.24, + "H_sun": 61.06, + "T2m": 30.28, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200807:1210", + "P": 4430.1, + "G(i)": 1009.31, + "H_sun": 60.44, + "T2m": 31.27, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200807:1310", + "P": 4422.18, + "G(i)": 1006.4, + "H_sun": 54.98, + "T2m": 31.93, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200807:1410", + "P": 4148.88, + "G(i)": 934.9, + "H_sun": 46.54, + "T2m": 32.32, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200807:1510", + "P": 3530.76, + "G(i)": 781.07, + "H_sun": 36.66, + "T2m": 32.33, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200807:1610", + "P": 2661.36, + "G(i)": 577.59, + "H_sun": 26.18, + "T2m": 31.89, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200807:1710", + "P": 1488.3, + "G(i)": 329.74, + "H_sun": 15.6, + "T2m": 31.24, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200807:1810", + "P": 233.4, + "G(i)": 71.91, + "H_sun": 5.28, + "T2m": 29.97, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200807:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.5, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200807:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.95, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200807:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.47, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200807:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.41, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200807:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.66, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200808:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200808:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200808:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200808:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200808:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200808:0510", + "P": 128.04, + "G(i)": 40.23, + "H_sun": 7.42, + "T2m": 23.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200808:0610", + "P": 344.4, + "G(i)": 86.57, + "H_sun": 17.84, + "T2m": 23.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200808:0710", + "P": 610.8, + "G(i)": 176.73, + "H_sun": 28.43, + "T2m": 25.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200808:0810", + "P": 1757.52, + "G(i)": 395.35, + "H_sun": 38.82, + "T2m": 27.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200808:0910", + "P": 2799.06, + "G(i)": 612.68, + "H_sun": 48.44, + "T2m": 28.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200808:1010", + "P": 3562.32, + "G(i)": 803.55, + "H_sun": 56.32, + "T2m": 29.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200808:1110", + "P": 4018.5, + "G(i)": 931.47, + "H_sun": 60.79, + "T2m": 31.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200808:1210", + "P": 4345.8, + "G(i)": 1006.31, + "H_sun": 60.16, + "T2m": 32.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200808:1310", + "P": 4345.2, + "G(i)": 997.1, + "H_sun": 54.72, + "T2m": 33.24, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200808:1410", + "P": 4059.36, + "G(i)": 924.75, + "H_sun": 46.31, + "T2m": 33.49, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200808:1510", + "P": 3418.74, + "G(i)": 765.6, + "H_sun": 36.44, + "T2m": 33.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200808:1610", + "P": 2568.3, + "G(i)": 563.54, + "H_sun": 25.97, + "T2m": 33.33, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200808:1710", + "P": 1368.36, + "G(i)": 306.34, + "H_sun": 15.38, + "T2m": 32.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200808:1810", + "P": 177.3, + "G(i)": 57.65, + "H_sun": 5.05, + "T2m": 30.95, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200808:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.26, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200808:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200808:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200808:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200808:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200809:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200809:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200809:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200809:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200809:0510", + "P": 123.6, + "G(i)": 39.35, + "H_sun": 7.24, + "T2m": 23.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200809:0610", + "P": 359.52, + "G(i)": 90.07, + "H_sun": 17.67, + "T2m": 24.41, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200809:0710", + "P": 586.98, + "G(i)": 174.08, + "H_sun": 28.26, + "T2m": 26.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:0810", + "P": 1744.32, + "G(i)": 396.02, + "H_sun": 38.64, + "T2m": 28.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200809:0910", + "P": 2772.6, + "G(i)": 615.93, + "H_sun": 48.24, + "T2m": 30.02, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200809:1010", + "P": 3538.92, + "G(i)": 804.83, + "H_sun": 56.09, + "T2m": 31.44, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200809:1110", + "P": 4036.08, + "G(i)": 931.92, + "H_sun": 60.51, + "T2m": 32.71, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:1210", + "P": 4306.32, + "G(i)": 1014.43, + "H_sun": 59.88, + "T2m": 33.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200809:1310", + "P": 4271.22, + "G(i)": 1005.08, + "H_sun": 54.46, + "T2m": 34.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:1410", + "P": 4014.0, + "G(i)": 932.09, + "H_sun": 46.07, + "T2m": 34.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200809:1510", + "P": 3453.0, + "G(i)": 783.68, + "H_sun": 36.22, + "T2m": 34.94, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200809:1610", + "P": 2566.38, + "G(i)": 567.15, + "H_sun": 25.75, + "T2m": 34.55, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200809:1710", + "P": 1404.24, + "G(i)": 316.4, + "H_sun": 15.17, + "T2m": 33.72, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200809:1810", + "P": 206.4, + "G(i)": 66.14, + "H_sun": 4.83, + "T2m": 31.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200809:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.31, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200809:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.99, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200809:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.85, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200809:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.53, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200809:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200810:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200810:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.87, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200810:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200810:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200810:0510", + "P": 116.16, + "G(i)": 37.6, + "H_sun": 7.06, + "T2m": 23.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200810:0610", + "P": 389.76, + "G(i)": 96.19, + "H_sun": 17.5, + "T2m": 24.25, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200810:0710", + "P": 666.6, + "G(i)": 182.99, + "H_sun": 28.09, + "T2m": 26.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200810:0810", + "P": 1644.6, + "G(i)": 364.33, + "H_sun": 38.45, + "T2m": 27.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200810:0910", + "P": 2632.02, + "G(i)": 573.68, + "H_sun": 48.03, + "T2m": 29.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200810:1010", + "P": 3509.34, + "G(i)": 780.52, + "H_sun": 55.84, + "T2m": 30.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1110", + "P": 3985.02, + "G(i)": 907.22, + "H_sun": 60.23, + "T2m": 32.08, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1210", + "P": 4100.52, + "G(i)": 960.5, + "H_sun": 59.59, + "T2m": 32.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200810:1310", + "P": 3231.54, + "G(i)": 715.48, + "H_sun": 54.19, + "T2m": 30.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1410", + "P": 698.94, + "G(i)": 163.17, + "H_sun": 45.83, + "T2m": 30.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200810:1510", + "P": 241.32, + "G(i)": 66.75, + "H_sun": 35.99, + "T2m": 30.17, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200810:1610", + "P": 87.6, + "G(i)": 31.52, + "H_sun": 25.53, + "T2m": 29.07, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200810:1710", + "P": 658.56, + "G(i)": 153.5, + "H_sun": 14.94, + "T2m": 28.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200810:1810", + "P": 200.46, + "G(i)": 63.68, + "H_sun": 4.6, + "T2m": 27.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200810:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.45, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200810:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200810:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.07, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200810:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200811:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200811:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200811:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200811:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:0510", + "P": 20.16, + "G(i)": 13.12, + "H_sun": 6.88, + "T2m": 22.97, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200811:0610", + "P": 190.2, + "G(i)": 54.22, + "H_sun": 17.32, + "T2m": 24.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200811:0710", + "P": 580.26, + "G(i)": 170.85, + "H_sun": 27.91, + "T2m": 26.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:0810", + "P": 1700.46, + "G(i)": 385.14, + "H_sun": 38.27, + "T2m": 27.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200811:0910", + "P": 2660.34, + "G(i)": 590.01, + "H_sun": 47.83, + "T2m": 29.43, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200811:1010", + "P": 3413.46, + "G(i)": 775.08, + "H_sun": 55.6, + "T2m": 30.99, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200811:1110", + "P": 3746.34, + "G(i)": 858.39, + "H_sun": 59.95, + "T2m": 32.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200811:1210", + "P": 4060.74, + "G(i)": 934.5, + "H_sun": 59.29, + "T2m": 32.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200811:1310", + "P": 4190.94, + "G(i)": 959.38, + "H_sun": 53.92, + "T2m": 33.28, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200811:1410", + "P": 3915.06, + "G(i)": 880.81, + "H_sun": 45.58, + "T2m": 32.86, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200811:1510", + "P": 3159.9, + "G(i)": 693.97, + "H_sun": 35.76, + "T2m": 30.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200811:1610", + "P": 1407.9, + "G(i)": 308.14, + "H_sun": 25.3, + "T2m": 30.32, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200811:1710", + "P": 1362.66, + "G(i)": 302.98, + "H_sun": 14.71, + "T2m": 30.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200811:1810", + "P": 118.2, + "G(i)": 42.34, + "H_sun": 4.36, + "T2m": 29.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200811:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200811:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200811:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200811:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200812:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.54, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200812:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.34, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200812:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.77, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200812:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200812:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200812:0510", + "P": 100.98, + "G(i)": 34.1, + "H_sun": 6.7, + "T2m": 23.78, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200812:0610", + "P": 334.98, + "G(i)": 84.82, + "H_sun": 17.15, + "T2m": 24.01, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200812:0710", + "P": 631.5, + "G(i)": 177.09, + "H_sun": 27.74, + "T2m": 26.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200812:0810", + "P": 1703.04, + "G(i)": 383.46, + "H_sun": 38.08, + "T2m": 27.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200812:0910", + "P": 2707.08, + "G(i)": 591.68, + "H_sun": 47.61, + "T2m": 28.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200812:1010", + "P": 3483.66, + "G(i)": 774.44, + "H_sun": 55.35, + "T2m": 30.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200812:1110", + "P": 3885.42, + "G(i)": 883.27, + "H_sun": 59.66, + "T2m": 30.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200812:1210", + "P": 4158.3, + "G(i)": 951.77, + "H_sun": 59.0, + "T2m": 31.75, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200812:1310", + "P": 3614.64, + "G(i)": 816.38, + "H_sun": 53.64, + "T2m": 32.12, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200812:1410", + "P": 959.52, + "G(i)": 218.99, + "H_sun": 45.33, + "T2m": 32.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200812:1510", + "P": 1040.58, + "G(i)": 232.18, + "H_sun": 35.52, + "T2m": 30.09, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200812:1610", + "P": 574.32, + "G(i)": 135.22, + "H_sun": 25.07, + "T2m": 27.58, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200812:1710", + "P": 103.68, + "G(i)": 35.23, + "H_sun": 14.48, + "T2m": 27.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200812:1810", + "P": 5.76, + "G(i)": 8.34, + "H_sun": 4.12, + "T2m": 27.43, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200812:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.14, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200812:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.77, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200812:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200812:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200812:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.5, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.82, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200813:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.94, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200813:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200813:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200813:0510", + "P": 106.44, + "G(i)": 34.98, + "H_sun": 6.52, + "T2m": 20.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200813:0610", + "P": 443.58, + "G(i)": 105.81, + "H_sun": 16.97, + "T2m": 21.75, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200813:0710", + "P": 662.82, + "G(i)": 179.48, + "H_sun": 27.56, + "T2m": 22.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200813:0810", + "P": 1705.26, + "G(i)": 377.63, + "H_sun": 37.9, + "T2m": 24.55, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200813:0910", + "P": 2738.34, + "G(i)": 592.51, + "H_sun": 47.4, + "T2m": 26.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200813:1010", + "P": 3545.22, + "G(i)": 778.64, + "H_sun": 55.09, + "T2m": 27.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200813:1110", + "P": 3919.92, + "G(i)": 877.48, + "H_sun": 59.37, + "T2m": 28.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200813:1210", + "P": 4244.46, + "G(i)": 963.91, + "H_sun": 58.69, + "T2m": 29.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200813:1310", + "P": 1788.72, + "G(i)": 391.16, + "H_sun": 53.36, + "T2m": 30.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:1410", + "P": 3583.56, + "G(i)": 797.85, + "H_sun": 45.07, + "T2m": 30.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:1510", + "P": 2832.18, + "G(i)": 618.17, + "H_sun": 35.27, + "T2m": 30.05, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200813:1610", + "P": 404.58, + "G(i)": 101.05, + "H_sun": 24.83, + "T2m": 28.82, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200813:1710", + "P": 969.12, + "G(i)": 218.77, + "H_sun": 14.24, + "T2m": 28.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200813:1810", + "P": 28.92, + "G(i)": 16.59, + "H_sun": 3.88, + "T2m": 26.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200813:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200813:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200813:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.63, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200813:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200813:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200814:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.63, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200814:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200814:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200814:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200814:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200814:0510", + "P": 103.02, + "G(i)": 34.1, + "H_sun": 6.33, + "T2m": 20.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200814:0610", + "P": 295.8, + "G(i)": 76.08, + "H_sun": 16.8, + "T2m": 22.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200814:0710", + "P": 571.5, + "G(i)": 169.48, + "H_sun": 27.39, + "T2m": 24.2, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200814:0810", + "P": 1746.18, + "G(i)": 393.64, + "H_sun": 37.71, + "T2m": 26.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200814:0910", + "P": 2812.2, + "G(i)": 615.61, + "H_sun": 47.19, + "T2m": 27.63, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200814:1010", + "P": 3577.86, + "G(i)": 803.4, + "H_sun": 54.84, + "T2m": 29.02, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200814:1110", + "P": 4101.66, + "G(i)": 950.62, + "H_sun": 59.07, + "T2m": 29.59, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200814:1210", + "P": 4328.4, + "G(i)": 1011.2, + "H_sun": 58.38, + "T2m": 30.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200814:1310", + "P": 4315.32, + "G(i)": 998.92, + "H_sun": 53.07, + "T2m": 31.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200814:1410", + "P": 4027.38, + "G(i)": 911.63, + "H_sun": 44.8, + "T2m": 31.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200814:1510", + "P": 3392.28, + "G(i)": 761.87, + "H_sun": 35.03, + "T2m": 31.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200814:1610", + "P": 2518.2, + "G(i)": 548.21, + "H_sun": 24.59, + "T2m": 30.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200814:1710", + "P": 956.16, + "G(i)": 216.51, + "H_sun": 14.0, + "T2m": 29.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200814:1810", + "P": 100.32, + "G(i)": 38.06, + "H_sun": 3.63, + "T2m": 28.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200814:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.14, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200814:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.98, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200814:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200814:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.97, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200814:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200815:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200815:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200815:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200815:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.06, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200815:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200815:0510", + "P": 91.38, + "G(i)": 31.48, + "H_sun": 6.15, + "T2m": 20.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200815:0610", + "P": 377.22, + "G(i)": 92.69, + "H_sun": 16.62, + "T2m": 21.81, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200815:0710", + "P": 644.52, + "G(i)": 177.99, + "H_sun": 27.21, + "T2m": 24.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200815:0810", + "P": 1742.16, + "G(i)": 387.96, + "H_sun": 37.51, + "T2m": 25.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200815:0910", + "P": 2787.66, + "G(i)": 604.41, + "H_sun": 46.97, + "T2m": 26.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200815:1010", + "P": 3535.56, + "G(i)": 786.33, + "H_sun": 54.58, + "T2m": 28.11, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200815:1110", + "P": 4063.32, + "G(i)": 934.83, + "H_sun": 58.77, + "T2m": 29.01, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200815:1210", + "P": 4317.24, + "G(i)": 998.28, + "H_sun": 58.07, + "T2m": 29.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200815:1310", + "P": 4279.02, + "G(i)": 979.41, + "H_sun": 52.78, + "T2m": 30.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200815:1410", + "P": 3955.56, + "G(i)": 884.08, + "H_sun": 44.53, + "T2m": 31.22, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200815:1510", + "P": 2769.48, + "G(i)": 603.65, + "H_sun": 34.77, + "T2m": 31.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200815:1610", + "P": 2453.58, + "G(i)": 531.79, + "H_sun": 24.34, + "T2m": 30.5, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200815:1710", + "P": 1224.9, + "G(i)": 273.06, + "H_sun": 13.75, + "T2m": 29.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200815:1810", + "P": 92.28, + "G(i)": 36.41, + "H_sun": 3.37, + "T2m": 28.48, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200815:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200815:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.48, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200815:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.5, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200815:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.46, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200815:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200816:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.77, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200816:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200816:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.06, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200816:0510", + "P": 90.9, + "G(i)": 31.48, + "H_sun": 5.96, + "T2m": 21.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200816:0610", + "P": 343.38, + "G(i)": 85.7, + "H_sun": 16.44, + "T2m": 21.75, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:0710", + "P": 848.28, + "G(i)": 200.45, + "H_sun": 27.03, + "T2m": 22.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:0810", + "P": 1694.1, + "G(i)": 369.31, + "H_sun": 37.32, + "T2m": 23.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200816:0910", + "P": 2509.62, + "G(i)": 529.91, + "H_sun": 46.75, + "T2m": 24.16, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200816:1010", + "P": 2494.98, + "G(i)": 529.74, + "H_sun": 54.32, + "T2m": 25.58, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200816:1110", + "P": 2827.08, + "G(i)": 610.26, + "H_sun": 58.47, + "T2m": 27.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:1210", + "P": 3762.96, + "G(i)": 834.3, + "H_sun": 57.76, + "T2m": 27.92, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200816:1310", + "P": 2857.44, + "G(i)": 624.34, + "H_sun": 52.48, + "T2m": 28.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200816:1410", + "P": 213.06, + "G(i)": 60.26, + "H_sun": 44.26, + "T2m": 28.66, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200816:1510", + "P": 138.78, + "G(i)": 43.57, + "H_sun": 34.51, + "T2m": 28.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200816:1610", + "P": 896.28, + "G(i)": 199.97, + "H_sun": 24.09, + "T2m": 27.35, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:1710", + "P": 208.44, + "G(i)": 58.78, + "H_sun": 13.5, + "T2m": 26.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:1810", + "P": 19.68, + "G(i)": 13.12, + "H_sun": 3.11, + "T2m": 26.39, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200816:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.86, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200816:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.59, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200816:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200816:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.92, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200817:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.75, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200817:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.58, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200817:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.17, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200817:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.78, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200817:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200817:0510", + "P": 62.88, + "G(i)": 24.48, + "H_sun": 5.78, + "T2m": 19.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200817:0610", + "P": 347.34, + "G(i)": 85.7, + "H_sun": 16.26, + "T2m": 19.48, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200817:0710", + "P": 812.4, + "G(i)": 195.97, + "H_sun": 26.85, + "T2m": 20.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200817:0810", + "P": 1757.64, + "G(i)": 382.88, + "H_sun": 37.13, + "T2m": 21.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200817:0910", + "P": 2772.54, + "G(i)": 588.68, + "H_sun": 46.52, + "T2m": 23.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200817:1010", + "P": 2671.26, + "G(i)": 567.95, + "H_sun": 54.05, + "T2m": 23.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200817:1110", + "P": 4042.32, + "G(i)": 897.23, + "H_sun": 58.16, + "T2m": 25.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200817:1210", + "P": 3228.96, + "G(i)": 709.86, + "H_sun": 57.44, + "T2m": 26.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200817:1310", + "P": 2073.18, + "G(i)": 444.88, + "H_sun": 52.18, + "T2m": 27.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200817:1410", + "P": 1838.16, + "G(i)": 393.44, + "H_sun": 43.98, + "T2m": 27.22, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200817:1510", + "P": 139.98, + "G(i)": 43.57, + "H_sun": 34.25, + "T2m": 27.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200817:1610", + "P": 1880.52, + "G(i)": 401.89, + "H_sun": 23.84, + "T2m": 26.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200817:1710", + "P": 1235.34, + "G(i)": 272.92, + "H_sun": 13.25, + "T2m": 26.23, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200817:1810", + "P": 14.34, + "G(i)": 11.37, + "H_sun": 2.85, + "T2m": 25.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200817:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.05, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200817:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200817:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200817:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.19, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200817:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200818:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200818:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200818:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200818:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200818:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.93, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200818:0510", + "P": 80.88, + "G(i)": 28.86, + "H_sun": 5.59, + "T2m": 19.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200818:0610", + "P": 247.14, + "G(i)": 65.58, + "H_sun": 16.08, + "T2m": 20.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200818:0710", + "P": 589.62, + "G(i)": 169.38, + "H_sun": 26.66, + "T2m": 21.4, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200818:0810", + "P": 1792.56, + "G(i)": 390.04, + "H_sun": 36.93, + "T2m": 22.68, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200818:0910", + "P": 2871.36, + "G(i)": 613.87, + "H_sun": 46.3, + "T2m": 24.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200818:1010", + "P": 3602.28, + "G(i)": 800.41, + "H_sun": 53.78, + "T2m": 26.4, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200818:1110", + "P": 4182.06, + "G(i)": 947.62, + "H_sun": 57.85, + "T2m": 27.79, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200818:1210", + "P": 4269.0, + "G(i)": 967.43, + "H_sun": 57.11, + "T2m": 29.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200818:1310", + "P": 4400.76, + "G(i)": 999.38, + "H_sun": 51.87, + "T2m": 29.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200818:1410", + "P": 4095.06, + "G(i)": 923.05, + "H_sun": 43.7, + "T2m": 29.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200818:1510", + "P": 3446.46, + "G(i)": 761.67, + "H_sun": 33.98, + "T2m": 30.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200818:1610", + "P": 2519.46, + "G(i)": 549.52, + "H_sun": 23.58, + "T2m": 29.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200818:1710", + "P": 1297.2, + "G(i)": 289.22, + "H_sun": 12.99, + "T2m": 29.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200818:1810", + "P": 9.06, + "G(i)": 9.62, + "H_sun": 2.58, + "T2m": 28.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200818:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.04, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200818:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.38, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200818:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200818:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200818:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200819:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200819:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200819:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200819:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200819:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200819:0510", + "P": 73.26, + "G(i)": 27.11, + "H_sun": 5.4, + "T2m": 20.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200819:0610", + "P": 413.1, + "G(i)": 99.69, + "H_sun": 15.9, + "T2m": 21.07, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200819:0710", + "P": 803.04, + "G(i)": 194.56, + "H_sun": 26.48, + "T2m": 21.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200819:0810", + "P": 1711.68, + "G(i)": 372.8, + "H_sun": 36.73, + "T2m": 22.34, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200819:0910", + "P": 2679.24, + "G(i)": 572.72, + "H_sun": 46.07, + "T2m": 23.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200819:1010", + "P": 3519.84, + "G(i)": 771.43, + "H_sun": 53.51, + "T2m": 25.19, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200819:1110", + "P": 4102.92, + "G(i)": 925.72, + "H_sun": 57.53, + "T2m": 26.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200819:1210", + "P": 4324.26, + "G(i)": 987.47, + "H_sun": 56.78, + "T2m": 27.46, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200819:1310", + "P": 4298.94, + "G(i)": 979.6, + "H_sun": 51.56, + "T2m": 28.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200819:1410", + "P": 4041.3, + "G(i)": 902.71, + "H_sun": 43.41, + "T2m": 28.75, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200819:1510", + "P": 3226.14, + "G(i)": 705.29, + "H_sun": 33.71, + "T2m": 29.12, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200819:1610", + "P": 2135.34, + "G(i)": 460.35, + "H_sun": 23.31, + "T2m": 28.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200819:1710", + "P": 1337.4, + "G(i)": 296.52, + "H_sun": 12.72, + "T2m": 28.54, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200819:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200819:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200819:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200819:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.8, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200819:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.41, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200819:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.83, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200820:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.39, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200820:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.0, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200820:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200820:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200820:0510", + "P": 65.4, + "G(i)": 25.36, + "H_sun": 5.21, + "T2m": 22.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:0610", + "P": 366.36, + "G(i)": 90.94, + "H_sun": 15.72, + "T2m": 23.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:0710", + "P": 592.2, + "G(i)": 169.18, + "H_sun": 26.29, + "T2m": 23.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:0810", + "P": 1724.46, + "G(i)": 384.25, + "H_sun": 36.53, + "T2m": 24.64, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:0910", + "P": 2766.84, + "G(i)": 599.97, + "H_sun": 45.84, + "T2m": 25.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200820:1010", + "P": 3486.66, + "G(i)": 777.47, + "H_sun": 53.24, + "T2m": 27.09, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200820:1110", + "P": 4011.54, + "G(i)": 913.15, + "H_sun": 57.22, + "T2m": 27.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200820:1210", + "P": 4209.72, + "G(i)": 966.66, + "H_sun": 56.45, + "T2m": 29.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:1310", + "P": 4215.18, + "G(i)": 971.01, + "H_sun": 51.24, + "T2m": 30.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200820:1410", + "P": 3903.84, + "G(i)": 886.28, + "H_sun": 43.12, + "T2m": 30.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200820:1510", + "P": 3299.88, + "G(i)": 733.14, + "H_sun": 33.44, + "T2m": 30.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:1610", + "P": 2356.32, + "G(i)": 511.78, + "H_sun": 23.04, + "T2m": 30.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200820:1710", + "P": 1167.0, + "G(i)": 261.95, + "H_sun": 12.45, + "T2m": 30.24, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200820:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.87, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200820:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.49, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200820:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.9, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200820:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200820:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200821:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.89, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200821:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.99, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200821:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.27, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200821:0510", + "P": 62.34, + "G(i)": 24.48, + "H_sun": 5.02, + "T2m": 21.24, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200821:0610", + "P": 329.58, + "G(i)": 83.07, + "H_sun": 15.54, + "T2m": 22.36, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200821:0710", + "P": 592.62, + "G(i)": 169.17, + "H_sun": 26.11, + "T2m": 25.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200821:0810", + "P": 1717.44, + "G(i)": 382.29, + "H_sun": 36.33, + "T2m": 26.09, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200821:0910", + "P": 2772.3, + "G(i)": 596.03, + "H_sun": 45.61, + "T2m": 27.05, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200821:1010", + "P": 3510.48, + "G(i)": 771.25, + "H_sun": 52.96, + "T2m": 27.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200821:1110", + "P": 3985.2, + "G(i)": 900.97, + "H_sun": 56.89, + "T2m": 28.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200821:1210", + "P": 4130.4, + "G(i)": 945.03, + "H_sun": 56.12, + "T2m": 29.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200821:1310", + "P": 4017.96, + "G(i)": 926.77, + "H_sun": 50.92, + "T2m": 30.58, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200821:1410", + "P": 3792.84, + "G(i)": 869.73, + "H_sun": 42.82, + "T2m": 31.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200821:1510", + "P": 3146.1, + "G(i)": 705.08, + "H_sun": 33.15, + "T2m": 31.69, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200821:1610", + "P": 2223.72, + "G(i)": 488.21, + "H_sun": 22.77, + "T2m": 31.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200821:1710", + "P": 1070.76, + "G(i)": 243.82, + "H_sun": 12.18, + "T2m": 31.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200821:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.97, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200821:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200821:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.96, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200821:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200822:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200822:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200822:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.97, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200822:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200822:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200822:0510", + "P": 58.5, + "G(i)": 23.61, + "H_sun": 4.83, + "T2m": 22.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200822:0610", + "P": 324.18, + "G(i)": 82.2, + "H_sun": 15.35, + "T2m": 22.92, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200822:0710", + "P": 595.56, + "G(i)": 169.83, + "H_sun": 25.92, + "T2m": 25.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200822:0810", + "P": 1697.94, + "G(i)": 382.78, + "H_sun": 36.12, + "T2m": 27.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200822:0910", + "P": 2723.04, + "G(i)": 596.27, + "H_sun": 45.37, + "T2m": 28.45, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200822:1010", + "P": 3489.0, + "G(i)": 778.89, + "H_sun": 52.68, + "T2m": 29.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200822:1110", + "P": 4023.42, + "G(i)": 921.07, + "H_sun": 56.57, + "T2m": 30.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200822:1210", + "P": 4235.76, + "G(i)": 981.58, + "H_sun": 55.78, + "T2m": 31.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200822:1310", + "P": 4210.08, + "G(i)": 972.08, + "H_sun": 50.6, + "T2m": 32.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200822:1410", + "P": 3895.2, + "G(i)": 887.29, + "H_sun": 42.52, + "T2m": 33.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200822:1510", + "P": 3277.68, + "G(i)": 730.88, + "H_sun": 32.87, + "T2m": 33.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200822:1610", + "P": 2333.16, + "G(i)": 511.78, + "H_sun": 22.49, + "T2m": 32.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200822:1710", + "P": 1113.96, + "G(i)": 252.96, + "H_sun": 11.9, + "T2m": 31.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200822:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.29, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200822:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.35, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200822:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.14, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200822:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.13, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200822:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.19, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200822:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200823:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200823:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200823:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.28, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200823:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.86, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200823:0510", + "P": 41.64, + "G(i)": 19.24, + "H_sun": 4.64, + "T2m": 22.57, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200823:0610", + "P": 366.84, + "G(i)": 90.94, + "H_sun": 15.17, + "T2m": 22.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200823:0710", + "P": 800.04, + "G(i)": 184.66, + "H_sun": 25.73, + "T2m": 24.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200823:0810", + "P": 1446.18, + "G(i)": 316.19, + "H_sun": 35.92, + "T2m": 25.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:0910", + "P": 2015.4, + "G(i)": 432.96, + "H_sun": 45.14, + "T2m": 26.8, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200823:1010", + "P": 1436.94, + "G(i)": 312.56, + "H_sun": 52.4, + "T2m": 28.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200823:1110", + "P": 3729.78, + "G(i)": 821.38, + "H_sun": 56.24, + "T2m": 28.8, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200823:1210", + "P": 4247.22, + "G(i)": 956.3, + "H_sun": 55.44, + "T2m": 29.31, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200823:1310", + "P": 4090.14, + "G(i)": 916.48, + "H_sun": 50.27, + "T2m": 29.41, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200823:1410", + "P": 3305.82, + "G(i)": 724.37, + "H_sun": 42.21, + "T2m": 29.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200823:1510", + "P": 3268.74, + "G(i)": 711.06, + "H_sun": 32.58, + "T2m": 29.03, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200823:1610", + "P": 2322.9, + "G(i)": 499.66, + "H_sun": 22.21, + "T2m": 29.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:1710", + "P": 1071.6, + "G(i)": 240.55, + "H_sun": 11.62, + "T2m": 28.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200823:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200823:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200823:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.44, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200823:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200823:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200824:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200824:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.26, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200824:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.85, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200824:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.58, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200824:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.46, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200824:0510", + "P": 14.94, + "G(i)": 11.37, + "H_sun": 4.45, + "T2m": 20.12, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200824:0610", + "P": 291.24, + "G(i)": 74.33, + "H_sun": 14.98, + "T2m": 19.93, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200824:0710", + "P": 520.26, + "G(i)": 120.75, + "H_sun": 25.54, + "T2m": 20.85, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200824:0810", + "P": 792.54, + "G(i)": 174.93, + "H_sun": 35.71, + "T2m": 21.53, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200824:0910", + "P": 2062.68, + "G(i)": 431.2, + "H_sun": 44.9, + "T2m": 23.14, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200824:1010", + "P": 2987.52, + "G(i)": 628.86, + "H_sun": 52.12, + "T2m": 24.18, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200824:1110", + "P": 3304.44, + "G(i)": 707.39, + "H_sun": 55.91, + "T2m": 25.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200824:1210", + "P": 3109.98, + "G(i)": 671.7, + "H_sun": 55.09, + "T2m": 25.79, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200824:1310", + "P": 3825.6, + "G(i)": 846.63, + "H_sun": 49.94, + "T2m": 26.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200824:1410", + "P": 3349.14, + "G(i)": 727.79, + "H_sun": 41.9, + "T2m": 26.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200824:1510", + "P": 3347.52, + "G(i)": 728.98, + "H_sun": 32.29, + "T2m": 26.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200824:1610", + "P": 521.16, + "G(i)": 123.83, + "H_sun": 21.93, + "T2m": 26.25, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200824:1710", + "P": 343.2, + "G(i)": 87.39, + "H_sun": 11.34, + "T2m": 25.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200824:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.96, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200824:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200824:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.39, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200824:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200824:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200824:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.69, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200825:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.24, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200825:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200825:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200825:0510", + "P": 0.78, + "G(i)": 6.12, + "H_sun": 4.25, + "T2m": 20.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200825:0610", + "P": 375.9, + "G(i)": 91.82, + "H_sun": 14.79, + "T2m": 20.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:0710", + "P": 723.9, + "G(i)": 182.19, + "H_sun": 25.34, + "T2m": 21.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200825:0810", + "P": 1745.1, + "G(i)": 379.77, + "H_sun": 35.5, + "T2m": 21.63, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200825:0910", + "P": 2792.82, + "G(i)": 586.6, + "H_sun": 44.66, + "T2m": 23.03, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200825:1010", + "P": 3426.96, + "G(i)": 730.73, + "H_sun": 51.83, + "T2m": 24.29, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200825:1110", + "P": 3250.98, + "G(i)": 699.09, + "H_sun": 55.58, + "T2m": 24.96, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200825:1210", + "P": 3285.96, + "G(i)": 717.0, + "H_sun": 54.74, + "T2m": 26.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:1310", + "P": 4000.14, + "G(i)": 885.03, + "H_sun": 49.6, + "T2m": 26.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:1410", + "P": 3575.04, + "G(i)": 785.72, + "H_sun": 41.59, + "T2m": 27.65, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200825:1510", + "P": 3121.26, + "G(i)": 674.99, + "H_sun": 31.99, + "T2m": 27.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:1610", + "P": 1725.6, + "G(i)": 369.73, + "H_sun": 21.64, + "T2m": 27.91, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200825:1710", + "P": 449.46, + "G(i)": 110.38, + "H_sun": 11.05, + "T2m": 27.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200825:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200825:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.18, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.36, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200825:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200826:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200826:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200826:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200826:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200826:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200826:0510", + "P": 42.36, + "G(i)": 19.24, + "H_sun": 4.06, + "T2m": 19.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200826:0610", + "P": 273.48, + "G(i)": 70.83, + "H_sun": 14.6, + "T2m": 20.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200826:0710", + "P": 601.86, + "G(i)": 169.45, + "H_sun": 25.15, + "T2m": 22.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200826:0810", + "P": 1584.54, + "G(i)": 347.2, + "H_sun": 35.29, + "T2m": 24.41, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200826:0910", + "P": 2705.94, + "G(i)": 588.95, + "H_sun": 44.41, + "T2m": 25.95, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200826:1010", + "P": 3352.56, + "G(i)": 744.83, + "H_sun": 51.54, + "T2m": 27.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200826:1110", + "P": 3645.36, + "G(i)": 822.46, + "H_sun": 55.24, + "T2m": 29.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200826:1210", + "P": 4119.6, + "G(i)": 944.54, + "H_sun": 54.39, + "T2m": 30.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200826:1310", + "P": 3607.92, + "G(i)": 810.21, + "H_sun": 49.26, + "T2m": 31.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200826:1410", + "P": 3806.58, + "G(i)": 850.83, + "H_sun": 41.27, + "T2m": 32.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200826:1510", + "P": 3325.62, + "G(i)": 725.8, + "H_sun": 31.69, + "T2m": 31.89, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200826:1610", + "P": 2340.6, + "G(i)": 503.0, + "H_sun": 21.34, + "T2m": 31.22, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200826:1710", + "P": 1043.46, + "G(i)": 235.48, + "H_sun": 10.76, + "T2m": 30.05, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200826:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.32, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200826:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.09, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200826:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.0, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200826:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.99, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200826:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200826:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200827:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200827:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.64, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200827:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200827:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200827:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200827:0510", + "P": 35.58, + "G(i)": 17.49, + "H_sun": 3.87, + "T2m": 21.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200827:0610", + "P": 262.92, + "G(i)": 69.08, + "H_sun": 14.41, + "T2m": 21.45, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200827:0710", + "P": 566.34, + "G(i)": 164.38, + "H_sun": 24.96, + "T2m": 22.38, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200827:0810", + "P": 1722.42, + "G(i)": 384.23, + "H_sun": 35.08, + "T2m": 24.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200827:0910", + "P": 2756.4, + "G(i)": 597.3, + "H_sun": 44.17, + "T2m": 26.38, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200827:1010", + "P": 3436.38, + "G(i)": 759.38, + "H_sun": 51.24, + "T2m": 27.96, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200827:1110", + "P": 3263.88, + "G(i)": 724.51, + "H_sun": 54.91, + "T2m": 29.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200827:1210", + "P": 3757.38, + "G(i)": 849.79, + "H_sun": 54.03, + "T2m": 30.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200827:1310", + "P": 3597.06, + "G(i)": 808.07, + "H_sun": 48.92, + "T2m": 31.12, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200827:1410", + "P": 3554.1, + "G(i)": 794.16, + "H_sun": 40.95, + "T2m": 31.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200827:1510", + "P": 3279.12, + "G(i)": 722.06, + "H_sun": 31.38, + "T2m": 31.82, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200827:1610", + "P": 1912.26, + "G(i)": 414.34, + "H_sun": 21.05, + "T2m": 31.52, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200827:1710", + "P": 951.78, + "G(i)": 217.52, + "H_sun": 10.46, + "T2m": 30.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200827:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200827:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.09, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200827:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200827:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200827:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200827:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.35, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200828:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200828:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.55, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200828:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.0, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200828:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.53, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200828:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.96, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200828:0510", + "P": 32.34, + "G(i)": 16.61, + "H_sun": 3.67, + "T2m": 21.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200828:0610", + "P": 347.46, + "G(i)": 86.57, + "H_sun": 14.22, + "T2m": 21.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200828:0710", + "P": 760.68, + "G(i)": 185.31, + "H_sun": 24.76, + "T2m": 23.1, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200828:0810", + "P": 1618.92, + "G(i)": 353.37, + "H_sun": 34.86, + "T2m": 23.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200828:0910", + "P": 2527.98, + "G(i)": 538.68, + "H_sun": 43.92, + "T2m": 25.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200828:1010", + "P": 2599.5, + "G(i)": 557.55, + "H_sun": 50.95, + "T2m": 26.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200828:1110", + "P": 3119.28, + "G(i)": 677.66, + "H_sun": 54.56, + "T2m": 27.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200828:1210", + "P": 3344.46, + "G(i)": 732.02, + "H_sun": 53.67, + "T2m": 28.3, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200828:1310", + "P": 3063.36, + "G(i)": 665.91, + "H_sun": 48.57, + "T2m": 28.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200828:1410", + "P": 175.44, + "G(i)": 51.92, + "H_sun": 40.62, + "T2m": 28.82, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200828:1510", + "P": 934.32, + "G(i)": 208.53, + "H_sun": 31.08, + "T2m": 28.26, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200828:1610", + "P": 1251.84, + "G(i)": 270.22, + "H_sun": 20.75, + "T2m": 27.46, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200828:1710", + "P": 112.14, + "G(i)": 37.08, + "H_sun": 10.16, + "T2m": 26.79, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200828:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.13, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200828:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200828:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200828:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200828:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.3, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200828:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.58, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200829:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200829:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200829:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200829:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200829:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.78, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200829:0510", + "P": 0.0, + "G(i)": 5.25, + "H_sun": 3.48, + "T2m": 20.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200829:0610", + "P": 164.94, + "G(i)": 48.1, + "H_sun": 14.03, + "T2m": 21.06, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200829:0710", + "P": 469.2, + "G(i)": 110.57, + "H_sun": 24.56, + "T2m": 20.6, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200829:0810", + "P": 761.64, + "G(i)": 168.46, + "H_sun": 34.65, + "T2m": 20.99, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200829:0910", + "P": 942.6, + "G(i)": 203.94, + "H_sun": 43.67, + "T2m": 21.0, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200829:1010", + "P": 1286.94, + "G(i)": 271.55, + "H_sun": 50.65, + "T2m": 20.88, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200829:1110", + "P": 3102.42, + "G(i)": 640.91, + "H_sun": 54.22, + "T2m": 21.07, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200829:1210", + "P": 1442.22, + "G(i)": 301.68, + "H_sun": 53.31, + "T2m": 20.92, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200829:1310", + "P": 764.94, + "G(i)": 168.73, + "H_sun": 48.22, + "T2m": 21.09, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200829:1410", + "P": 789.06, + "G(i)": 173.37, + "H_sun": 40.29, + "T2m": 20.9, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200829:1510", + "P": 1680.6, + "G(i)": 346.44, + "H_sun": 30.76, + "T2m": 20.38, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200829:1610", + "P": 543.96, + "G(i)": 124.82, + "H_sun": 20.45, + "T2m": 19.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200829:1710", + "P": 36.36, + "G(i)": 17.62, + "H_sun": 9.86, + "T2m": 19.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200829:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200829:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200829:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200829:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200829:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200829:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200830:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.1, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200830:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200830:0510", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 3.28, + "T2m": 17.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200830:0610", + "P": 160.44, + "G(i)": 46.35, + "H_sun": 13.84, + "T2m": 16.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0710", + "P": 624.0, + "G(i)": 170.13, + "H_sun": 24.37, + "T2m": 18.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200830:0810", + "P": 1846.2, + "G(i)": 395.95, + "H_sun": 34.43, + "T2m": 18.47, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200830:0910", + "P": 3006.3, + "G(i)": 618.82, + "H_sun": 43.41, + "T2m": 20.05, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200830:1010", + "P": 3846.66, + "G(i)": 812.24, + "H_sun": 50.35, + "T2m": 22.63, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200830:1110", + "P": 4356.42, + "G(i)": 950.33, + "H_sun": 53.87, + "T2m": 24.25, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200830:1210", + "P": 4518.12, + "G(i)": 1004.76, + "H_sun": 52.95, + "T2m": 25.28, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200830:1310", + "P": 4464.06, + "G(i)": 992.23, + "H_sun": 47.87, + "T2m": 25.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200830:1410", + "P": 4151.76, + "G(i)": 907.71, + "H_sun": 39.96, + "T2m": 25.22, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200830:1510", + "P": 3473.46, + "G(i)": 723.6, + "H_sun": 30.45, + "T2m": 24.08, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200830:1610", + "P": 2652.24, + "G(i)": 544.61, + "H_sun": 20.14, + "T2m": 23.39, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200830:1710", + "P": 723.12, + "G(i)": 163.52, + "H_sun": 9.55, + "T2m": 22.79, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200830:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.62, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200830:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.44, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200830:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.36, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200830:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.38, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200830:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200831:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200831:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200831:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200831:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200831:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200831:0510", + "P": 12.72, + "G(i)": 10.49, + "H_sun": 3.08, + "T2m": 15.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200831:0610", + "P": 327.36, + "G(i)": 80.45, + "H_sun": 13.65, + "T2m": 15.91, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200831:0710", + "P": 514.26, + "G(i)": 156.86, + "H_sun": 24.17, + "T2m": 17.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200831:0810", + "P": 1678.98, + "G(i)": 357.34, + "H_sun": 34.21, + "T2m": 19.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200831:0910", + "P": 1812.78, + "G(i)": 376.77, + "H_sun": 43.16, + "T2m": 20.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200831:1010", + "P": 2968.62, + "G(i)": 619.07, + "H_sun": 50.04, + "T2m": 21.53, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200831:1110", + "P": 3313.68, + "G(i)": 695.19, + "H_sun": 53.52, + "T2m": 22.54, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200831:1210", + "P": 4463.94, + "G(i)": 962.2, + "H_sun": 52.58, + "T2m": 23.35, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200831:1310", + "P": 4437.78, + "G(i)": 968.59, + "H_sun": 47.52, + "T2m": 23.97, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200831:1410", + "P": 3981.54, + "G(i)": 862.48, + "H_sun": 39.63, + "T2m": 23.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200831:1510", + "P": 3342.66, + "G(i)": 707.49, + "H_sun": 30.13, + "T2m": 23.4, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200831:1610", + "P": 2051.1, + "G(i)": 428.56, + "H_sun": 19.83, + "T2m": 23.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200831:1710", + "P": 1011.84, + "G(i)": 223.35, + "H_sun": 9.25, + "T2m": 22.68, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200831:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200831:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200831:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.42, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200831:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.39, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200831:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.09, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200831:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200901:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200901:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200901:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200901:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.67, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200901:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200901:0510", + "P": 15.48, + "G(i)": 11.37, + "H_sun": 2.88, + "T2m": 15.2, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200901:0610", + "P": 250.08, + "G(i)": 64.71, + "H_sun": 13.45, + "T2m": 15.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200901:0710", + "P": 549.54, + "G(i)": 161.23, + "H_sun": 23.96, + "T2m": 17.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200901:0810", + "P": 1811.76, + "G(i)": 392.86, + "H_sun": 33.99, + "T2m": 19.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200901:0910", + "P": 2915.04, + "G(i)": 616.84, + "H_sun": 42.9, + "T2m": 21.48, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200901:1010", + "P": 3698.28, + "G(i)": 808.58, + "H_sun": 49.74, + "T2m": 22.98, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200901:1110", + "P": 4210.38, + "G(i)": 951.11, + "H_sun": 53.17, + "T2m": 24.13, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200901:1210", + "P": 4429.26, + "G(i)": 997.97, + "H_sun": 52.21, + "T2m": 24.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200901:1310", + "P": 4431.84, + "G(i)": 983.24, + "H_sun": 47.16, + "T2m": 25.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200901:1410", + "P": 4007.04, + "G(i)": 868.98, + "H_sun": 39.29, + "T2m": 25.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200901:1510", + "P": 3442.56, + "G(i)": 730.91, + "H_sun": 29.81, + "T2m": 25.12, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200901:1610", + "P": 2356.38, + "G(i)": 492.14, + "H_sun": 19.52, + "T2m": 24.76, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200901:1710", + "P": 983.82, + "G(i)": 218.27, + "H_sun": 8.94, + "T2m": 23.85, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200901:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200901:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200901:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.15, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200901:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200901:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200901:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200902:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200902:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200902:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200902:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200902:0510", + "P": 5.1, + "G(i)": 7.87, + "H_sun": 2.69, + "T2m": 16.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200902:0610", + "P": 193.86, + "G(i)": 53.34, + "H_sun": 13.26, + "T2m": 16.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200902:0710", + "P": 372.66, + "G(i)": 89.93, + "H_sun": 23.76, + "T2m": 17.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200902:0810", + "P": 637.08, + "G(i)": 141.85, + "H_sun": 33.76, + "T2m": 17.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200902:0910", + "P": 556.02, + "G(i)": 126.09, + "H_sun": 42.64, + "T2m": 17.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200902:1010", + "P": 361.74, + "G(i)": 88.08, + "H_sun": 49.43, + "T2m": 18.48, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200902:1110", + "P": 3781.38, + "G(i)": 790.08, + "H_sun": 52.82, + "T2m": 18.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200902:1210", + "P": 3640.02, + "G(i)": 767.67, + "H_sun": 51.84, + "T2m": 19.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200902:1310", + "P": 1539.66, + "G(i)": 323.38, + "H_sun": 46.8, + "T2m": 20.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:1410", + "P": 2902.8, + "G(i)": 608.89, + "H_sun": 38.95, + "T2m": 20.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:1510", + "P": 2380.32, + "G(i)": 496.69, + "H_sun": 29.48, + "T2m": 21.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200902:1610", + "P": 1511.4, + "G(i)": 316.59, + "H_sun": 19.2, + "T2m": 21.5, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:1710", + "P": 848.04, + "G(i)": 188.69, + "H_sun": 8.62, + "T2m": 21.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200902:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200902:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200902:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.57, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200902:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.97, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200902:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200902:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200903:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.21, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200903:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.31, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200903:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.14, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200903:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200903:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200903:0510", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 2.49, + "T2m": 16.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200903:0610", + "P": 325.98, + "G(i)": 80.45, + "H_sun": 13.06, + "T2m": 16.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200903:0710", + "P": 617.76, + "G(i)": 167.63, + "H_sun": 23.56, + "T2m": 18.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200903:0810", + "P": 1764.84, + "G(i)": 382.46, + "H_sun": 33.54, + "T2m": 19.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200903:0910", + "P": 2801.04, + "G(i)": 589.11, + "H_sun": 42.38, + "T2m": 20.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200903:1010", + "P": 3536.34, + "G(i)": 758.77, + "H_sun": 49.12, + "T2m": 21.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200903:1110", + "P": 3682.86, + "G(i)": 802.47, + "H_sun": 52.46, + "T2m": 22.75, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200903:1210", + "P": 4133.76, + "G(i)": 923.39, + "H_sun": 51.46, + "T2m": 23.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200903:1310", + "P": 4168.08, + "G(i)": 931.58, + "H_sun": 46.43, + "T2m": 24.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200903:1410", + "P": 3955.8, + "G(i)": 874.6, + "H_sun": 38.6, + "T2m": 25.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200903:1510", + "P": 3325.5, + "G(i)": 719.24, + "H_sun": 29.16, + "T2m": 25.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200903:1610", + "P": 2239.68, + "G(i)": 474.77, + "H_sun": 18.88, + "T2m": 25.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200903:1710", + "P": 837.66, + "G(i)": 190.06, + "H_sun": 8.3, + "T2m": 24.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200903:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200903:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.1, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200903:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200903:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200903:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200903:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200904:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.7, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200904:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200904:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200904:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200904:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200904:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200904:0610", + "P": 252.66, + "G(i)": 65.58, + "H_sun": 12.87, + "T2m": 16.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200904:0710", + "P": 566.22, + "G(i)": 161.74, + "H_sun": 23.35, + "T2m": 19.42, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:0810", + "P": 1742.16, + "G(i)": 382.64, + "H_sun": 33.31, + "T2m": 21.64, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:0910", + "P": 2800.98, + "G(i)": 599.88, + "H_sun": 42.11, + "T2m": 23.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:1010", + "P": 3583.8, + "G(i)": 785.72, + "H_sun": 48.8, + "T2m": 24.76, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:1110", + "P": 4077.3, + "G(i)": 916.0, + "H_sun": 52.1, + "T2m": 25.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200904:1210", + "P": 4271.1, + "G(i)": 970.35, + "H_sun": 51.08, + "T2m": 27.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200904:1310", + "P": 4203.18, + "G(i)": 953.75, + "H_sun": 46.06, + "T2m": 27.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200904:1410", + "P": 3867.96, + "G(i)": 865.28, + "H_sun": 38.26, + "T2m": 28.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200904:1510", + "P": 3196.56, + "G(i)": 697.78, + "H_sun": 28.83, + "T2m": 28.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200904:1610", + "P": 2121.3, + "G(i)": 454.05, + "H_sun": 18.56, + "T2m": 28.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200904:1710", + "P": 699.48, + "G(i)": 163.19, + "H_sun": 7.99, + "T2m": 27.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200904:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.68, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200904:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.53, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200904:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.14, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200904:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200904:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200904:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.53, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200905:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200905:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200905:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200905:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200905:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.21, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:0610", + "P": 267.48, + "G(i)": 69.08, + "H_sun": 12.67, + "T2m": 18.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200905:0710", + "P": 587.88, + "G(i)": 163.92, + "H_sun": 23.15, + "T2m": 20.11, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200905:0810", + "P": 1730.04, + "G(i)": 380.57, + "H_sun": 33.08, + "T2m": 22.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200905:0910", + "P": 2775.42, + "G(i)": 595.63, + "H_sun": 41.85, + "T2m": 24.06, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200905:1010", + "P": 3540.06, + "G(i)": 779.3, + "H_sun": 48.49, + "T2m": 25.42, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200905:1110", + "P": 4018.68, + "G(i)": 901.79, + "H_sun": 51.74, + "T2m": 26.79, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200905:1210", + "P": 4234.74, + "G(i)": 961.55, + "H_sun": 50.71, + "T2m": 27.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200905:1310", + "P": 4194.0, + "G(i)": 950.18, + "H_sun": 45.69, + "T2m": 28.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200905:1410", + "P": 3807.12, + "G(i)": 854.53, + "H_sun": 37.91, + "T2m": 28.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:1510", + "P": 3150.06, + "G(i)": 692.84, + "H_sun": 28.49, + "T2m": 28.97, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200905:1610", + "P": 2082.24, + "G(i)": 449.36, + "H_sun": 18.24, + "T2m": 28.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200905:1710", + "P": 682.98, + "G(i)": 160.52, + "H_sun": 7.66, + "T2m": 27.54, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200905:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200905:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200905:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200905:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200905:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200906:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.23, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200906:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.66, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200906:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200906:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200906:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200906:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.63, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200906:0610", + "P": 300.24, + "G(i)": 76.08, + "H_sun": 12.47, + "T2m": 19.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200906:0710", + "P": 693.84, + "G(i)": 174.26, + "H_sun": 22.94, + "T2m": 20.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200906:0810", + "P": 1719.96, + "G(i)": 379.9, + "H_sun": 32.85, + "T2m": 22.19, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200906:0910", + "P": 2717.46, + "G(i)": 581.82, + "H_sun": 41.58, + "T2m": 23.36, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200906:1010", + "P": 3349.14, + "G(i)": 726.47, + "H_sun": 48.17, + "T2m": 24.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200906:1110", + "P": 3681.66, + "G(i)": 803.94, + "H_sun": 51.38, + "T2m": 25.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200906:1210", + "P": 3358.02, + "G(i)": 728.07, + "H_sun": 50.32, + "T2m": 26.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200906:1310", + "P": 3678.0, + "G(i)": 801.85, + "H_sun": 45.32, + "T2m": 26.71, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200906:1410", + "P": 2340.84, + "G(i)": 497.22, + "H_sun": 37.55, + "T2m": 26.77, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200906:1510", + "P": 3285.96, + "G(i)": 694.21, + "H_sun": 28.16, + "T2m": 25.63, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200906:1610", + "P": 2104.92, + "G(i)": 440.88, + "H_sun": 17.91, + "T2m": 24.12, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200906:1710", + "P": 742.68, + "G(i)": 169.63, + "H_sun": 7.34, + "T2m": 23.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200906:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200906:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200906:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200906:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200906:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.41, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200906:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.14, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200907:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.6, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200907:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.29, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200907:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.16, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200907:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.71, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200907:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.37, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200907:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.97, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200907:0610", + "P": 85.98, + "G(i)": 29.73, + "H_sun": 12.27, + "T2m": 16.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200907:0710", + "P": 168.54, + "G(i)": 48.21, + "H_sun": 22.73, + "T2m": 17.49, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200907:0810", + "P": 543.78, + "G(i)": 124.23, + "H_sun": 32.62, + "T2m": 18.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200907:0910", + "P": 656.88, + "G(i)": 146.48, + "H_sun": 41.31, + "T2m": 18.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200907:1010", + "P": 1154.34, + "G(i)": 245.41, + "H_sun": 47.85, + "T2m": 19.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200907:1110", + "P": 1931.82, + "G(i)": 403.6, + "H_sun": 51.01, + "T2m": 19.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200907:1210", + "P": 2709.66, + "G(i)": 568.9, + "H_sun": 49.94, + "T2m": 20.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200907:1310", + "P": 1789.14, + "G(i)": 373.19, + "H_sun": 44.95, + "T2m": 21.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200907:1410", + "P": 3072.0, + "G(i)": 636.01, + "H_sun": 37.2, + "T2m": 21.34, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200907:1510", + "P": 2895.78, + "G(i)": 595.67, + "H_sun": 27.82, + "T2m": 21.66, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200907:1610", + "P": 1998.78, + "G(i)": 410.63, + "H_sun": 17.58, + "T2m": 21.39, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200907:1710", + "P": 634.56, + "G(i)": 145.94, + "H_sun": 7.02, + "T2m": 21.04, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200907:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200907:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200907:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.42, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200907:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200907:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200907:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200908:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.32, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200908:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200908:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200908:0610", + "P": 244.08, + "G(i)": 63.84, + "H_sun": 12.07, + "T2m": 16.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200908:0710", + "P": 611.22, + "G(i)": 164.08, + "H_sun": 22.52, + "T2m": 18.86, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:0810", + "P": 1695.96, + "G(i)": 365.17, + "H_sun": 32.38, + "T2m": 20.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200908:0910", + "P": 2808.06, + "G(i)": 586.53, + "H_sun": 41.04, + "T2m": 21.53, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200908:1010", + "P": 3504.06, + "G(i)": 743.98, + "H_sun": 47.53, + "T2m": 22.51, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200908:1110", + "P": 2934.48, + "G(i)": 621.41, + "H_sun": 50.65, + "T2m": 23.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200908:1210", + "P": 3382.68, + "G(i)": 724.31, + "H_sun": 49.56, + "T2m": 24.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200908:1310", + "P": 4018.74, + "G(i)": 878.31, + "H_sun": 44.57, + "T2m": 24.77, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:1410", + "P": 3755.16, + "G(i)": 815.46, + "H_sun": 36.84, + "T2m": 25.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:1510", + "P": 3191.1, + "G(i)": 680.36, + "H_sun": 27.48, + "T2m": 25.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:1610", + "P": 2044.02, + "G(i)": 431.15, + "H_sun": 17.25, + "T2m": 25.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:1710", + "P": 571.5, + "G(i)": 135.94, + "H_sun": 6.69, + "T2m": 24.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200908:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200908:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.44, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200908:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200908:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.85, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200908:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.32, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200909:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.7, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200909:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200909:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.82, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200909:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200909:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200909:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200909:0610", + "P": 249.24, + "G(i)": 64.71, + "H_sun": 11.87, + "T2m": 16.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200909:0710", + "P": 589.44, + "G(i)": 161.56, + "H_sun": 22.31, + "T2m": 19.75, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200909:0810", + "P": 1668.9, + "G(i)": 363.34, + "H_sun": 32.15, + "T2m": 21.75, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200909:0910", + "P": 1178.28, + "G(i)": 253.74, + "H_sun": 40.76, + "T2m": 22.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200909:1010", + "P": 2740.44, + "G(i)": 584.3, + "H_sun": 47.2, + "T2m": 23.62, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1110", + "P": 3713.7, + "G(i)": 814.48, + "H_sun": 50.28, + "T2m": 24.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1210", + "P": 4167.84, + "G(i)": 927.66, + "H_sun": 49.17, + "T2m": 24.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200909:1310", + "P": 3986.16, + "G(i)": 885.16, + "H_sun": 44.2, + "T2m": 25.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1410", + "P": 3456.42, + "G(i)": 753.38, + "H_sun": 36.48, + "T2m": 25.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1510", + "P": 1801.8, + "G(i)": 384.07, + "H_sun": 27.14, + "T2m": 25.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200909:1610", + "P": 480.54, + "G(i)": 115.04, + "H_sun": 16.92, + "T2m": 25.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200909:1710", + "P": 419.76, + "G(i)": 104.21, + "H_sun": 6.36, + "T2m": 24.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200909:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200909:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200909:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200909:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200909:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200909:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200910:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200910:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200910:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200910:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200910:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200910:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200910:0610", + "P": 259.38, + "G(i)": 67.33, + "H_sun": 11.67, + "T2m": 17.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200910:0710", + "P": 652.5, + "G(i)": 166.67, + "H_sun": 22.1, + "T2m": 19.52, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200910:0810", + "P": 1631.7, + "G(i)": 355.89, + "H_sun": 31.91, + "T2m": 21.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200910:0910", + "P": 2666.34, + "G(i)": 570.93, + "H_sun": 40.49, + "T2m": 24.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200910:1010", + "P": 3286.08, + "G(i)": 721.27, + "H_sun": 46.88, + "T2m": 25.33, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200910:1110", + "P": 3677.58, + "G(i)": 822.63, + "H_sun": 49.91, + "T2m": 26.39, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200910:1210", + "P": 3350.88, + "G(i)": 741.19, + "H_sun": 48.78, + "T2m": 27.06, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200910:1310", + "P": 3621.42, + "G(i)": 807.38, + "H_sun": 43.82, + "T2m": 27.48, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200910:1410", + "P": 2056.14, + "G(i)": 445.12, + "H_sun": 36.12, + "T2m": 27.79, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200910:1510", + "P": 401.76, + "G(i)": 100.13, + "H_sun": 26.79, + "T2m": 27.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200910:1610", + "P": 1274.28, + "G(i)": 274.71, + "H_sun": 16.59, + "T2m": 26.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200910:1710", + "P": 503.52, + "G(i)": 121.79, + "H_sun": 6.03, + "T2m": 24.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200910:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200910:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200910:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200910:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200910:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200910:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200911:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.4, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200911:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200911:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200911:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.95, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200911:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200911:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.75, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200911:0610", + "P": 155.58, + "G(i)": 45.47, + "H_sun": 11.47, + "T2m": 17.85, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200911:0710", + "P": 68.88, + "G(i)": 25.96, + "H_sun": 21.88, + "T2m": 19.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200911:0810", + "P": 144.84, + "G(i)": 43.57, + "H_sun": 31.67, + "T2m": 20.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200911:0910", + "P": 305.4, + "G(i)": 77.88, + "H_sun": 40.21, + "T2m": 21.8, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200911:1010", + "P": 367.62, + "G(i)": 90.86, + "H_sun": 46.55, + "T2m": 22.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200911:1110", + "P": 622.32, + "G(i)": 142.77, + "H_sun": 49.53, + "T2m": 23.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200911:1210", + "P": 1476.48, + "G(i)": 316.49, + "H_sun": 48.39, + "T2m": 24.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200911:1310", + "P": 2074.5, + "G(i)": 442.58, + "H_sun": 43.43, + "T2m": 25.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200911:1410", + "P": 1374.78, + "G(i)": 296.62, + "H_sun": 35.76, + "T2m": 25.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200911:1510", + "P": 2772.24, + "G(i)": 592.69, + "H_sun": 26.45, + "T2m": 26.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200911:1610", + "P": 1244.46, + "G(i)": 268.11, + "H_sun": 16.25, + "T2m": 25.86, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200911:1710", + "P": 368.16, + "G(i)": 93.71, + "H_sun": 5.69, + "T2m": 24.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200911:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.45, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200911:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200911:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.39, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200911:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.09, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200911:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200911:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200912:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200912:0610", + "P": 229.5, + "G(i)": 61.21, + "H_sun": 11.26, + "T2m": 18.19, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:0710", + "P": 552.24, + "G(i)": 156.76, + "H_sun": 21.67, + "T2m": 19.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:0810", + "P": 1689.9, + "G(i)": 371.55, + "H_sun": 31.43, + "T2m": 22.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200912:0910", + "P": 2742.72, + "G(i)": 587.83, + "H_sun": 39.93, + "T2m": 24.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:1010", + "P": 3511.62, + "G(i)": 768.78, + "H_sun": 46.22, + "T2m": 25.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:1110", + "P": 3966.6, + "G(i)": 883.85, + "H_sun": 49.16, + "T2m": 26.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:1210", + "P": 4157.76, + "G(i)": 937.31, + "H_sun": 48.0, + "T2m": 27.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:1310", + "P": 4119.06, + "G(i)": 930.0, + "H_sun": 43.05, + "T2m": 27.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:1410", + "P": 3747.3, + "G(i)": 828.53, + "H_sun": 35.4, + "T2m": 28.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200912:1510", + "P": 3029.52, + "G(i)": 653.72, + "H_sun": 26.1, + "T2m": 28.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200912:1610", + "P": 1876.38, + "G(i)": 401.61, + "H_sun": 15.92, + "T2m": 27.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200912:1710", + "P": 340.68, + "G(i)": 88.68, + "H_sun": 5.36, + "T2m": 26.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200912:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200912:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200912:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.22, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200912:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200913:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.26, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200913:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200913:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200913:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.75, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200913:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200913:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200913:0610", + "P": 216.0, + "G(i)": 58.59, + "H_sun": 11.06, + "T2m": 19.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200913:0710", + "P": 583.08, + "G(i)": 160.18, + "H_sun": 21.45, + "T2m": 20.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200913:0810", + "P": 1682.58, + "G(i)": 369.69, + "H_sun": 31.19, + "T2m": 23.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200913:0910", + "P": 2738.16, + "G(i)": 584.37, + "H_sun": 39.64, + "T2m": 25.09, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200913:1010", + "P": 3543.66, + "G(i)": 772.47, + "H_sun": 45.89, + "T2m": 26.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200913:1110", + "P": 3972.18, + "G(i)": 886.96, + "H_sun": 48.78, + "T2m": 27.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200913:1210", + "P": 4184.52, + "G(i)": 948.77, + "H_sun": 47.61, + "T2m": 28.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200913:1310", + "P": 4120.14, + "G(i)": 932.43, + "H_sun": 42.67, + "T2m": 29.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200913:1410", + "P": 3745.62, + "G(i)": 831.21, + "H_sun": 35.03, + "T2m": 29.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200913:1510", + "P": 2994.18, + "G(i)": 648.58, + "H_sun": 25.75, + "T2m": 29.53, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200913:1610", + "P": 1817.04, + "G(i)": 391.0, + "H_sun": 15.58, + "T2m": 29.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200913:1710", + "P": 295.08, + "G(i)": 79.53, + "H_sun": 5.03, + "T2m": 28.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200913:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200913:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200913:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.83, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200913:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200913:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.88, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200913:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200914:0610", + "P": 238.26, + "G(i)": 62.96, + "H_sun": 10.85, + "T2m": 18.01, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:0710", + "P": 565.68, + "G(i)": 157.77, + "H_sun": 21.23, + "T2m": 21.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200914:0810", + "P": 1460.46, + "G(i)": 319.19, + "H_sun": 30.94, + "T2m": 24.14, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200914:0910", + "P": 2682.54, + "G(i)": 577.7, + "H_sun": 39.36, + "T2m": 26.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200914:1010", + "P": 3153.54, + "G(i)": 687.64, + "H_sun": 45.55, + "T2m": 27.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200914:1110", + "P": 3907.08, + "G(i)": 869.95, + "H_sun": 48.41, + "T2m": 28.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200914:1210", + "P": 4185.42, + "G(i)": 935.35, + "H_sun": 47.21, + "T2m": 28.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200914:1310", + "P": 4141.74, + "G(i)": 918.9, + "H_sun": 42.28, + "T2m": 28.87, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200914:1410", + "P": 3672.42, + "G(i)": 801.61, + "H_sun": 34.66, + "T2m": 28.95, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200914:1510", + "P": 2837.46, + "G(i)": 607.21, + "H_sun": 25.4, + "T2m": 28.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200914:1610", + "P": 321.9, + "G(i)": 83.3, + "H_sun": 15.24, + "T2m": 28.16, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200914:1710", + "P": 28.38, + "G(i)": 15.76, + "H_sun": 4.69, + "T2m": 26.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200914:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200914:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200914:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.98, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200914:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200915:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.84, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200915:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200915:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200915:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.26, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200915:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200915:0610", + "P": 231.12, + "G(i)": 61.21, + "H_sun": 10.65, + "T2m": 17.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200915:0710", + "P": 613.5, + "G(i)": 162.01, + "H_sun": 21.01, + "T2m": 20.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:0810", + "P": 1683.54, + "G(i)": 368.05, + "H_sun": 30.7, + "T2m": 22.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:0910", + "P": 2741.52, + "G(i)": 584.31, + "H_sun": 39.07, + "T2m": 24.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200915:1010", + "P": 3504.06, + "G(i)": 769.3, + "H_sun": 45.22, + "T2m": 26.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200915:1110", + "P": 3877.62, + "G(i)": 875.52, + "H_sun": 48.03, + "T2m": 27.11, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200915:1210", + "P": 4118.1, + "G(i)": 941.73, + "H_sun": 46.82, + "T2m": 27.81, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200915:1310", + "P": 3937.26, + "G(i)": 893.87, + "H_sun": 41.89, + "T2m": 28.33, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200915:1410", + "P": 3630.72, + "G(i)": 813.55, + "H_sun": 34.3, + "T2m": 28.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200915:1510", + "P": 2937.72, + "G(i)": 642.74, + "H_sun": 25.05, + "T2m": 28.44, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200915:1610", + "P": 1772.22, + "G(i)": 382.17, + "H_sun": 14.9, + "T2m": 28.09, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200915:1710", + "P": 249.54, + "G(i)": 69.38, + "H_sun": 4.35, + "T2m": 26.97, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200915:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200915:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.91, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200915:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.22, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200915:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200915:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200916:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.03, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200916:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200916:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200916:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.63, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200916:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200916:0610", + "P": 188.16, + "G(i)": 52.47, + "H_sun": 10.44, + "T2m": 17.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200916:0710", + "P": 494.16, + "G(i)": 150.03, + "H_sun": 20.79, + "T2m": 19.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200916:0810", + "P": 1682.4, + "G(i)": 368.42, + "H_sun": 30.45, + "T2m": 21.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200916:0910", + "P": 2707.8, + "G(i)": 577.46, + "H_sun": 38.78, + "T2m": 24.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200916:1010", + "P": 3459.18, + "G(i)": 759.2, + "H_sun": 44.88, + "T2m": 26.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200916:1110", + "P": 3867.36, + "G(i)": 876.42, + "H_sun": 47.65, + "T2m": 27.18, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200916:1210", + "P": 4089.54, + "G(i)": 927.9, + "H_sun": 46.42, + "T2m": 28.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200916:1310", + "P": 4007.04, + "G(i)": 909.61, + "H_sun": 41.51, + "T2m": 28.62, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:1410", + "P": 3546.96, + "G(i)": 790.7, + "H_sun": 33.93, + "T2m": 28.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:1510", + "P": 2679.48, + "G(i)": 585.7, + "H_sun": 24.7, + "T2m": 28.74, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200916:1610", + "P": 1793.88, + "G(i)": 384.61, + "H_sun": 14.55, + "T2m": 27.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200916:1710", + "P": 282.66, + "G(i)": 76.82, + "H_sun": 4.01, + "T2m": 26.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200916:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.24, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200916:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.4, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200916:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200916:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200916:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200917:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200917:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200917:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200917:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200917:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200917:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200917:0610", + "P": 208.2, + "G(i)": 56.84, + "H_sun": 10.23, + "T2m": 18.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200917:0710", + "P": 551.22, + "G(i)": 155.09, + "H_sun": 20.57, + "T2m": 19.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200917:0810", + "P": 1676.58, + "G(i)": 367.8, + "H_sun": 30.2, + "T2m": 22.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200917:0910", + "P": 2737.62, + "G(i)": 582.29, + "H_sun": 38.49, + "T2m": 24.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200917:1010", + "P": 3522.3, + "G(i)": 766.86, + "H_sun": 44.54, + "T2m": 26.57, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200917:1110", + "P": 3881.46, + "G(i)": 867.08, + "H_sun": 47.27, + "T2m": 27.84, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200917:1210", + "P": 4076.22, + "G(i)": 931.49, + "H_sun": 46.02, + "T2m": 28.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200917:1310", + "P": 4010.82, + "G(i)": 911.8, + "H_sun": 41.12, + "T2m": 29.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200917:1410", + "P": 3570.84, + "G(i)": 806.11, + "H_sun": 33.56, + "T2m": 29.66, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200917:1510", + "P": 2795.28, + "G(i)": 614.77, + "H_sun": 24.34, + "T2m": 29.61, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200917:1610", + "P": 1667.4, + "G(i)": 360.14, + "H_sun": 14.21, + "T2m": 28.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200917:1710", + "P": 169.14, + "G(i)": 51.55, + "H_sun": 3.67, + "T2m": 27.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200917:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200917:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200917:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200917:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200917:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200917:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200918:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200918:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200918:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.66, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200918:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:0610", + "P": 204.72, + "G(i)": 55.97, + "H_sun": 10.02, + "T2m": 17.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200918:0710", + "P": 568.74, + "G(i)": 156.14, + "H_sun": 20.34, + "T2m": 19.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200918:0810", + "P": 1651.92, + "G(i)": 362.37, + "H_sun": 29.95, + "T2m": 22.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200918:0910", + "P": 2724.3, + "G(i)": 581.33, + "H_sun": 38.2, + "T2m": 24.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1010", + "P": 3496.26, + "G(i)": 759.83, + "H_sun": 44.2, + "T2m": 25.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1110", + "P": 3946.62, + "G(i)": 877.31, + "H_sun": 46.89, + "T2m": 26.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200918:1210", + "P": 4133.28, + "G(i)": 927.88, + "H_sun": 45.62, + "T2m": 27.66, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1310", + "P": 4093.26, + "G(i)": 915.92, + "H_sun": 40.73, + "T2m": 28.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200918:1410", + "P": 3638.16, + "G(i)": 801.7, + "H_sun": 33.18, + "T2m": 28.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200918:1510", + "P": 2566.26, + "G(i)": 549.81, + "H_sun": 23.99, + "T2m": 28.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200918:1610", + "P": 1652.76, + "G(i)": 353.81, + "H_sun": 13.87, + "T2m": 27.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200918:1710", + "P": 108.72, + "G(i)": 37.13, + "H_sun": 3.33, + "T2m": 26.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200918:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.91, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200918:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.6, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200918:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200918:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.83, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200918:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.31, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200919:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.82, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200919:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200919:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200919:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.15, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200919:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200919:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200919:0610", + "P": 155.82, + "G(i)": 45.47, + "H_sun": 9.81, + "T2m": 17.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200919:0710", + "P": 627.18, + "G(i)": 145.8, + "H_sun": 20.12, + "T2m": 19.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200919:0810", + "P": 872.28, + "G(i)": 190.3, + "H_sun": 29.7, + "T2m": 20.29, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200919:0910", + "P": 1813.44, + "G(i)": 377.63, + "H_sun": 37.91, + "T2m": 20.9, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200919:1010", + "P": 2610.0, + "G(i)": 541.77, + "H_sun": 43.86, + "T2m": 21.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200919:1110", + "P": 3733.44, + "G(i)": 790.37, + "H_sun": 46.51, + "T2m": 22.25, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200919:1210", + "P": 4146.48, + "G(i)": 891.74, + "H_sun": 45.23, + "T2m": 22.76, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200919:1310", + "P": 2998.14, + "G(i)": 630.02, + "H_sun": 40.34, + "T2m": 23.34, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200919:1410", + "P": 2452.5, + "G(i)": 513.42, + "H_sun": 32.81, + "T2m": 23.64, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200919:1510", + "P": 2636.34, + "G(i)": 551.99, + "H_sun": 23.63, + "T2m": 23.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200919:1610", + "P": 539.76, + "G(i)": 125.45, + "H_sun": 13.52, + "T2m": 23.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200919:1710", + "P": 2.64, + "G(i)": 7.0, + "H_sun": 2.99, + "T2m": 22.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200919:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.57, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200919:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200919:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200919:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200919:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200919:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200920:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.54, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200920:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200920:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.3, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200920:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.85, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200920:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:0610", + "P": 100.8, + "G(i)": 33.23, + "H_sun": 9.6, + "T2m": 17.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200920:0710", + "P": 639.9, + "G(i)": 156.9, + "H_sun": 19.89, + "T2m": 18.25, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200920:0810", + "P": 841.98, + "G(i)": 184.17, + "H_sun": 29.44, + "T2m": 19.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200920:0910", + "P": 945.12, + "G(i)": 204.34, + "H_sun": 37.61, + "T2m": 20.01, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200920:1010", + "P": 1979.22, + "G(i)": 411.83, + "H_sun": 43.52, + "T2m": 21.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200920:1110", + "P": 3766.68, + "G(i)": 806.02, + "H_sun": 46.12, + "T2m": 21.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:1210", + "P": 2512.8, + "G(i)": 528.98, + "H_sun": 44.83, + "T2m": 22.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200920:1310", + "P": 1803.06, + "G(i)": 379.82, + "H_sun": 39.95, + "T2m": 22.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200920:1410", + "P": 1999.5, + "G(i)": 418.76, + "H_sun": 32.44, + "T2m": 22.7, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200920:1510", + "P": 2196.9, + "G(i)": 460.17, + "H_sun": 23.28, + "T2m": 22.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200920:1610", + "P": 1793.76, + "G(i)": 373.06, + "H_sun": 13.18, + "T2m": 21.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200920:1710", + "P": 4.92, + "G(i)": 7.87, + "H_sun": 2.65, + "T2m": 20.21, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200920:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200920:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.86, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200920:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.4, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200920:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200920:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200921:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.24, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200921:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200921:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200921:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200921:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200921:0610", + "P": 7.44, + "G(i)": 8.74, + "H_sun": 9.38, + "T2m": 17.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:0710", + "P": 85.26, + "G(i)": 29.67, + "H_sun": 19.66, + "T2m": 17.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200921:0810", + "P": 117.0, + "G(i)": 37.08, + "H_sun": 29.19, + "T2m": 18.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200921:0910", + "P": 166.92, + "G(i)": 48.21, + "H_sun": 37.32, + "T2m": 19.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:1010", + "P": 200.52, + "G(i)": 55.63, + "H_sun": 43.17, + "T2m": 20.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:1110", + "P": 656.1, + "G(i)": 148.34, + "H_sun": 45.74, + "T2m": 21.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200921:1210", + "P": 1746.84, + "G(i)": 369.47, + "H_sun": 44.43, + "T2m": 22.09, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200921:1310", + "P": 2654.7, + "G(i)": 564.74, + "H_sun": 39.56, + "T2m": 22.57, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200921:1410", + "P": 2563.14, + "G(i)": 540.89, + "H_sun": 32.07, + "T2m": 22.82, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200921:1510", + "P": 1835.76, + "G(i)": 383.16, + "H_sun": 22.92, + "T2m": 22.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:1610", + "P": 1512.42, + "G(i)": 317.6, + "H_sun": 12.84, + "T2m": 22.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200921:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.15, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.4, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200921:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.38, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200921:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200922:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200922:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200922:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200922:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200922:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200922:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.08, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200922:0610", + "P": 168.12, + "G(i)": 48.1, + "H_sun": 9.17, + "T2m": 17.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200922:0710", + "P": 517.56, + "G(i)": 120.58, + "H_sun": 19.43, + "T2m": 18.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200922:0810", + "P": 1373.58, + "G(i)": 292.71, + "H_sun": 28.93, + "T2m": 18.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:0910", + "P": 1049.64, + "G(i)": 224.59, + "H_sun": 37.02, + "T2m": 19.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200922:1010", + "P": 733.74, + "G(i)": 163.17, + "H_sun": 42.83, + "T2m": 20.38, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200922:1110", + "P": 989.4, + "G(i)": 214.64, + "H_sun": 45.35, + "T2m": 21.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200922:1210", + "P": 520.08, + "G(i)": 121.45, + "H_sun": 44.03, + "T2m": 21.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:1310", + "P": 1251.0, + "G(i)": 266.81, + "H_sun": 39.16, + "T2m": 22.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200922:1410", + "P": 1926.18, + "G(i)": 401.07, + "H_sun": 31.69, + "T2m": 21.99, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200922:1510", + "P": 992.58, + "G(i)": 213.27, + "H_sun": 22.56, + "T2m": 21.29, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200922:1610", + "P": 372.36, + "G(i)": 90.89, + "H_sun": 12.49, + "T2m": 20.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200922:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.85, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200922:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200922:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.99, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200923:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.12, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.3, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200923:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200923:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200923:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200923:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200923:0610", + "P": 177.78, + "G(i)": 49.84, + "H_sun": 8.96, + "T2m": 15.71, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200923:0710", + "P": 421.8, + "G(i)": 99.87, + "H_sun": 19.2, + "T2m": 16.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200923:0810", + "P": 1089.06, + "G(i)": 232.93, + "H_sun": 28.67, + "T2m": 17.71, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200923:0910", + "P": 2655.42, + "G(i)": 552.06, + "H_sun": 36.72, + "T2m": 19.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:1010", + "P": 2680.14, + "G(i)": 559.99, + "H_sun": 42.48, + "T2m": 20.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:1110", + "P": 3231.18, + "G(i)": 688.45, + "H_sun": 44.97, + "T2m": 21.81, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200923:1210", + "P": 3678.36, + "G(i)": 792.84, + "H_sun": 43.63, + "T2m": 22.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200923:1310", + "P": 3758.58, + "G(i)": 811.13, + "H_sun": 38.77, + "T2m": 23.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200923:1410", + "P": 3529.02, + "G(i)": 751.25, + "H_sun": 31.32, + "T2m": 23.53, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200923:1510", + "P": 2926.68, + "G(i)": 612.25, + "H_sun": 22.21, + "T2m": 23.5, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200923:1610", + "P": 1573.98, + "G(i)": 329.68, + "H_sun": 12.15, + "T2m": 22.93, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200923:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200923:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200923:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200923:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200923:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.62, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200923:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.29, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200924:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200924:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.47, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200924:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200924:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0610", + "P": 164.94, + "G(i)": 47.22, + "H_sun": 8.74, + "T2m": 16.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200924:0710", + "P": 113.4, + "G(i)": 36.16, + "H_sun": 18.97, + "T2m": 17.98, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0810", + "P": 518.64, + "G(i)": 119.6, + "H_sun": 28.41, + "T2m": 19.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0910", + "P": 1355.34, + "G(i)": 284.58, + "H_sun": 36.42, + "T2m": 19.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200924:1010", + "P": 1597.74, + "G(i)": 333.67, + "H_sun": 42.13, + "T2m": 20.15, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:1110", + "P": 1690.08, + "G(i)": 353.87, + "H_sun": 44.58, + "T2m": 21.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:1210", + "P": 3368.1, + "G(i)": 715.47, + "H_sun": 43.23, + "T2m": 21.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200924:1310", + "P": 1472.1, + "G(i)": 312.32, + "H_sun": 38.38, + "T2m": 22.55, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200924:1410", + "P": 151.74, + "G(i)": 45.43, + "H_sun": 30.95, + "T2m": 22.32, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200924:1510", + "P": 511.92, + "G(i)": 119.73, + "H_sun": 21.85, + "T2m": 21.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200924:1610", + "P": 16.98, + "G(i)": 12.05, + "H_sun": 11.8, + "T2m": 21.13, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200924:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200924:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.83, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200924:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.21, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200924:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.15, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200924:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200924:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.1, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200925:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200925:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.3, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200925:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200925:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200925:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.67, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200925:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.41, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200925:0610", + "P": 174.72, + "G(i)": 48.97, + "H_sun": 8.52, + "T2m": 14.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200925:0710", + "P": 259.8, + "G(i)": 66.75, + "H_sun": 18.74, + "T2m": 15.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200925:0810", + "P": 114.54, + "G(i)": 36.16, + "H_sun": 28.15, + "T2m": 15.98, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200925:0910", + "P": 1387.32, + "G(i)": 288.79, + "H_sun": 36.12, + "T2m": 17.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200925:1010", + "P": 3136.44, + "G(i)": 652.23, + "H_sun": 41.78, + "T2m": 19.05, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200925:1110", + "P": 2380.26, + "G(i)": 487.51, + "H_sun": 44.2, + "T2m": 20.5, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200925:1210", + "P": 465.18, + "G(i)": 109.4, + "H_sun": 42.83, + "T2m": 20.68, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200925:1310", + "P": 3564.96, + "G(i)": 724.81, + "H_sun": 37.99, + "T2m": 20.59, + "WS10m": 4.28, + "Int": 0.0 + }, + { + "time": "20200925:1410", + "P": 2845.2, + "G(i)": 573.07, + "H_sun": 30.57, + "T2m": 19.72, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200925:1510", + "P": 1663.68, + "G(i)": 338.46, + "H_sun": 21.5, + "T2m": 19.24, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200925:1610", + "P": 999.84, + "G(i)": 211.14, + "H_sun": 11.46, + "T2m": 18.69, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200925:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200925:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.2, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200925:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.35, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200925:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200925:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.29, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200925:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.09, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200925:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.79, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200926:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200926:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.11, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200926:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.63, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200926:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200926:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200926:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200926:0610", + "P": 136.56, + "G(i)": 40.23, + "H_sun": 8.31, + "T2m": 11.15, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200926:0710", + "P": 524.64, + "G(i)": 151.46, + "H_sun": 18.5, + "T2m": 12.58, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200926:0810", + "P": 1838.46, + "G(i)": 383.67, + "H_sun": 27.88, + "T2m": 15.01, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200926:0910", + "P": 3092.28, + "G(i)": 616.74, + "H_sun": 35.81, + "T2m": 16.39, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200926:1010", + "P": 3991.74, + "G(i)": 802.81, + "H_sun": 41.43, + "T2m": 17.32, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200926:1110", + "P": 4400.28, + "G(i)": 898.33, + "H_sun": 43.81, + "T2m": 18.13, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200926:1210", + "P": 4553.64, + "G(i)": 938.9, + "H_sun": 42.43, + "T2m": 18.73, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200926:1310", + "P": 4567.32, + "G(i)": 947.75, + "H_sun": 37.6, + "T2m": 18.96, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200926:1410", + "P": 4078.5, + "G(i)": 840.41, + "H_sun": 30.2, + "T2m": 19.12, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200926:1510", + "P": 3112.32, + "G(i)": 631.07, + "H_sun": 21.14, + "T2m": 18.96, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200926:1610", + "P": 1734.9, + "G(i)": 353.56, + "H_sun": 11.11, + "T2m": 18.29, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200926:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200926:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.02, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200926:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200926:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.6, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200926:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200926:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.3, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200926:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200927:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200927:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200927:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.93, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200927:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200927:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200927:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200927:0610", + "P": 130.2, + "G(i)": 38.48, + "H_sun": 8.09, + "T2m": 8.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200927:0710", + "P": 537.12, + "G(i)": 149.83, + "H_sun": 18.27, + "T2m": 8.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200927:0810", + "P": 1562.94, + "G(i)": 324.61, + "H_sun": 27.62, + "T2m": 12.06, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200927:0910", + "P": 2676.96, + "G(i)": 543.99, + "H_sun": 35.51, + "T2m": 13.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200927:1010", + "P": 3712.2, + "G(i)": 766.31, + "H_sun": 41.08, + "T2m": 15.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200927:1110", + "P": 4171.62, + "G(i)": 873.96, + "H_sun": 43.42, + "T2m": 16.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200927:1210", + "P": 4396.92, + "G(i)": 927.39, + "H_sun": 42.03, + "T2m": 17.63, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200927:1310", + "P": 4380.54, + "G(i)": 918.05, + "H_sun": 37.21, + "T2m": 18.2, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200927:1410", + "P": 3909.18, + "G(i)": 803.59, + "H_sun": 29.83, + "T2m": 18.39, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200927:1510", + "P": 3376.14, + "G(i)": 682.66, + "H_sun": 20.79, + "T2m": 18.1, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200927:1610", + "P": 1821.72, + "G(i)": 367.7, + "H_sun": 10.77, + "T2m": 17.27, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200927:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.0, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200927:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.58, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200927:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200927:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200927:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.33, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200927:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.67, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200927:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.47, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200928:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.89, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200928:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200928:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200928:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200928:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200928:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.38, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200928:0610", + "P": 131.22, + "G(i)": 38.48, + "H_sun": 7.87, + "T2m": 6.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200928:0710", + "P": 516.06, + "G(i)": 147.77, + "H_sun": 18.03, + "T2m": 10.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200928:0810", + "P": 1790.58, + "G(i)": 374.94, + "H_sun": 27.35, + "T2m": 13.3, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200928:0910", + "P": 2965.5, + "G(i)": 604.86, + "H_sun": 35.2, + "T2m": 16.08, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200928:1010", + "P": 3744.78, + "G(i)": 783.13, + "H_sun": 40.73, + "T2m": 18.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200928:1110", + "P": 4140.96, + "G(i)": 889.54, + "H_sun": 43.04, + "T2m": 19.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200928:1210", + "P": 4350.36, + "G(i)": 945.62, + "H_sun": 41.63, + "T2m": 20.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200928:1310", + "P": 4290.96, + "G(i)": 928.3, + "H_sun": 36.82, + "T2m": 21.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200928:1410", + "P": 3858.72, + "G(i)": 818.16, + "H_sun": 29.46, + "T2m": 21.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200928:1510", + "P": 2925.48, + "G(i)": 602.75, + "H_sun": 20.43, + "T2m": 21.26, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200928:1610", + "P": 1532.4, + "G(i)": 316.85, + "H_sun": 10.43, + "T2m": 20.43, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200928:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200928:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.89, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200928:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.75, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200928:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.58, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200928:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200928:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200928:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200929:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200929:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200929:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200929:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200929:0610", + "P": 136.86, + "G(i)": 40.23, + "H_sun": 7.65, + "T2m": 10.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200929:0710", + "P": 513.78, + "G(i)": 144.27, + "H_sun": 17.79, + "T2m": 12.1, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200929:0810", + "P": 1675.5, + "G(i)": 356.06, + "H_sun": 27.08, + "T2m": 14.88, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200929:0910", + "P": 2734.56, + "G(i)": 568.05, + "H_sun": 34.89, + "T2m": 17.12, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200929:1010", + "P": 3456.9, + "G(i)": 734.38, + "H_sun": 40.38, + "T2m": 18.7, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200929:1110", + "P": 3852.06, + "G(i)": 831.51, + "H_sun": 42.65, + "T2m": 19.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200929:1210", + "P": 3713.82, + "G(i)": 799.12, + "H_sun": 41.23, + "T2m": 21.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200929:1310", + "P": 3338.04, + "G(i)": 708.76, + "H_sun": 36.43, + "T2m": 21.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200929:1410", + "P": 2760.36, + "G(i)": 575.84, + "H_sun": 29.08, + "T2m": 22.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:1510", + "P": 2602.86, + "G(i)": 539.85, + "H_sun": 20.08, + "T2m": 21.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:1610", + "P": 1413.42, + "G(i)": 296.09, + "H_sun": 10.09, + "T2m": 21.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200929:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200929:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200929:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.8, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200929:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.42, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200929:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200930:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200930:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.3, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200930:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.72, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200930:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:0610", + "P": 143.52, + "G(i)": 41.97, + "H_sun": 7.42, + "T2m": 12.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:0710", + "P": 515.04, + "G(i)": 144.41, + "H_sun": 17.55, + "T2m": 13.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200930:0810", + "P": 1667.4, + "G(i)": 355.62, + "H_sun": 26.81, + "T2m": 15.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:0910", + "P": 2732.7, + "G(i)": 568.03, + "H_sun": 34.58, + "T2m": 17.24, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200930:1010", + "P": 3505.26, + "G(i)": 743.77, + "H_sun": 40.02, + "T2m": 18.56, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200930:1110", + "P": 3932.58, + "G(i)": 848.56, + "H_sun": 42.26, + "T2m": 19.79, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:1210", + "P": 4086.66, + "G(i)": 892.42, + "H_sun": 40.83, + "T2m": 20.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:1310", + "P": 3927.96, + "G(i)": 856.04, + "H_sun": 36.04, + "T2m": 21.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200930:1410", + "P": 3236.22, + "G(i)": 684.71, + "H_sun": 28.71, + "T2m": 21.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200930:1510", + "P": 1829.82, + "G(i)": 380.14, + "H_sun": 19.73, + "T2m": 22.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:1610", + "P": 1130.82, + "G(i)": 240.78, + "H_sun": 9.75, + "T2m": 21.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200930:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200930:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200930:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201001:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201001:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201001:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201001:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201001:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:0610", + "P": 83.52, + "G(i)": 28.86, + "H_sun": 7.2, + "T2m": 13.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201001:0710", + "P": 458.34, + "G(i)": 107.34, + "H_sun": 17.31, + "T2m": 15.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:0810", + "P": 1283.94, + "G(i)": 271.68, + "H_sun": 26.54, + "T2m": 16.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201001:0910", + "P": 2612.76, + "G(i)": 539.03, + "H_sun": 34.27, + "T2m": 17.34, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201001:1010", + "P": 3480.9, + "G(i)": 731.01, + "H_sun": 39.67, + "T2m": 17.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201001:1110", + "P": 3780.48, + "G(i)": 814.5, + "H_sun": 41.88, + "T2m": 19.17, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201001:1210", + "P": 2806.8, + "G(i)": 586.09, + "H_sun": 40.44, + "T2m": 19.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201001:1310", + "P": 1030.02, + "G(i)": 221.76, + "H_sun": 35.65, + "T2m": 20.43, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201001:1410", + "P": 2594.52, + "G(i)": 538.02, + "H_sun": 28.34, + "T2m": 20.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:1510", + "P": 522.12, + "G(i)": 120.92, + "H_sun": 19.37, + "T2m": 20.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201001:1610", + "P": 815.64, + "G(i)": 177.48, + "H_sun": 9.41, + "T2m": 20.22, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201001:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201001:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201001:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201001:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.9, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201001:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201001:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201001:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.83, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201002:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201002:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201002:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201002:0610", + "P": 27.24, + "G(i)": 14.87, + "H_sun": 6.98, + "T2m": 15.69, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201002:0710", + "P": 149.4, + "G(i)": 43.57, + "H_sun": 17.07, + "T2m": 14.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0810", + "P": 202.2, + "G(i)": 54.7, + "H_sun": 26.27, + "T2m": 14.97, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20201002:0910", + "P": 283.32, + "G(i)": 71.39, + "H_sun": 33.96, + "T2m": 15.59, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20201002:1010", + "P": 286.74, + "G(i)": 72.31, + "H_sun": 39.32, + "T2m": 16.23, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201002:1110", + "P": 327.12, + "G(i)": 80.66, + "H_sun": 41.49, + "T2m": 17.21, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20201002:1210", + "P": 221.58, + "G(i)": 59.33, + "H_sun": 40.04, + "T2m": 18.03, + "WS10m": 4.97, + "Int": 0.0 + }, + { + "time": "20201002:1310", + "P": 199.02, + "G(i)": 54.7, + "H_sun": 35.26, + "T2m": 18.4, + "WS10m": 5.1, + "Int": 0.0 + }, + { + "time": "20201002:1410", + "P": 203.04, + "G(i)": 55.63, + "H_sun": 27.98, + "T2m": 18.71, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201002:1510", + "P": 113.16, + "G(i)": 36.16, + "H_sun": 19.02, + "T2m": 18.71, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201002:1610", + "P": 121.56, + "G(i)": 38.01, + "H_sun": 9.07, + "T2m": 18.47, + "WS10m": 4.9, + "Int": 0.0 + }, + { + "time": "20201002:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 5.38, + "Int": 0.0 + }, + { + "time": "20201002:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.3, + "WS10m": 6.14, + "Int": 0.0 + }, + { + "time": "20201002:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.7, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201002:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.31, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20201002:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.02, + "WS10m": 4.48, + "Int": 0.0 + }, + { + "time": "20201002:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.5, + "WS10m": 5.38, + "Int": 0.0 + }, + { + "time": "20201002:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 6.21, + "Int": 0.0 + }, + { + "time": "20201003:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 6.55, + "Int": 0.0 + }, + { + "time": "20201003:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.81, + "WS10m": 6.28, + "Int": 0.0 + }, + { + "time": "20201003:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.61, + "WS10m": 5.45, + "Int": 0.0 + }, + { + "time": "20201003:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201003:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 4.41, + "Int": 0.0 + }, + { + "time": "20201003:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.57, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201003:0610", + "P": 102.0, + "G(i)": 33.23, + "H_sun": 6.75, + "T2m": 15.55, + "WS10m": 5.1, + "Int": 0.0 + }, + { + "time": "20201003:0710", + "P": 567.18, + "G(i)": 134.0, + "H_sun": 16.83, + "T2m": 14.64, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20201003:0810", + "P": 1719.6, + "G(i)": 361.19, + "H_sun": 26.0, + "T2m": 15.81, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20201003:0910", + "P": 2928.84, + "G(i)": 591.5, + "H_sun": 33.65, + "T2m": 17.39, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20201003:1010", + "P": 3705.18, + "G(i)": 766.88, + "H_sun": 38.96, + "T2m": 18.41, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201003:1110", + "P": 4198.32, + "G(i)": 889.13, + "H_sun": 41.11, + "T2m": 18.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201003:1210", + "P": 4318.14, + "G(i)": 907.25, + "H_sun": 39.64, + "T2m": 18.73, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201003:1310", + "P": 4236.66, + "G(i)": 886.52, + "H_sun": 34.88, + "T2m": 18.83, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201003:1410", + "P": 3744.84, + "G(i)": 776.92, + "H_sun": 27.61, + "T2m": 18.95, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201003:1510", + "P": 2839.74, + "G(i)": 577.56, + "H_sun": 18.67, + "T2m": 18.78, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201003:1610", + "P": 1377.6, + "G(i)": 284.11, + "H_sun": 8.74, + "T2m": 18.11, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201003:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.73, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201003:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.91, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201003:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.17, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201003:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201003:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201003:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201003:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201004:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201004:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201004:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.97, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201004:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201004:0610", + "P": 104.88, + "G(i)": 33.23, + "H_sun": 6.53, + "T2m": 9.94, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201004:0710", + "P": 542.88, + "G(i)": 141.04, + "H_sun": 16.58, + "T2m": 11.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:0810", + "P": 1723.98, + "G(i)": 363.85, + "H_sun": 25.72, + "T2m": 13.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201004:0910", + "P": 2845.08, + "G(i)": 576.89, + "H_sun": 33.34, + "T2m": 14.6, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201004:1010", + "P": 3409.26, + "G(i)": 700.0, + "H_sun": 38.61, + "T2m": 16.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201004:1110", + "P": 3987.24, + "G(i)": 832.9, + "H_sun": 40.72, + "T2m": 17.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201004:1210", + "P": 3578.88, + "G(i)": 746.07, + "H_sun": 39.25, + "T2m": 18.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201004:1310", + "P": 296.04, + "G(i)": 75.1, + "H_sun": 34.49, + "T2m": 19.22, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201004:1410", + "P": 393.78, + "G(i)": 94.56, + "H_sun": 27.24, + "T2m": 18.71, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201004:1510", + "P": 151.44, + "G(i)": 44.5, + "H_sun": 18.33, + "T2m": 17.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:1610", + "P": 101.94, + "G(i)": 33.38, + "H_sun": 8.4, + "T2m": 16.38, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201004:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.86, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201004:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.12, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201004:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201004:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201004:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201004:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.63, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201004:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201005:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201005:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201005:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201005:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201005:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201005:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201005:0610", + "P": 93.9, + "G(i)": 30.61, + "H_sun": 6.3, + "T2m": 8.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201005:0710", + "P": 457.14, + "G(i)": 105.49, + "H_sun": 16.34, + "T2m": 10.54, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201005:0810", + "P": 1021.2, + "G(i)": 213.76, + "H_sun": 25.45, + "T2m": 11.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201005:0910", + "P": 1683.84, + "G(i)": 341.85, + "H_sun": 33.02, + "T2m": 13.2, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201005:1010", + "P": 1767.12, + "G(i)": 360.48, + "H_sun": 38.26, + "T2m": 14.25, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201005:1110", + "P": 2982.42, + "G(i)": 612.95, + "H_sun": 40.34, + "T2m": 15.21, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201005:1210", + "P": 2704.86, + "G(i)": 557.97, + "H_sun": 38.86, + "T2m": 16.34, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201005:1310", + "P": 2394.96, + "G(i)": 489.59, + "H_sun": 34.11, + "T2m": 16.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201005:1410", + "P": 3819.24, + "G(i)": 797.29, + "H_sun": 26.88, + "T2m": 17.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201005:1510", + "P": 574.38, + "G(i)": 129.28, + "H_sun": 17.98, + "T2m": 17.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201005:1610", + "P": 572.88, + "G(i)": 128.39, + "H_sun": 8.07, + "T2m": 17.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201005:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201005:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201005:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.89, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201005:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201005:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201005:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201005:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201006:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201006:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201006:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201006:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201006:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201006:0610", + "P": 81.78, + "G(i)": 27.98, + "H_sun": 6.07, + "T2m": 9.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201006:0710", + "P": 543.0, + "G(i)": 132.83, + "H_sun": 16.09, + "T2m": 10.49, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201006:0810", + "P": 1279.5, + "G(i)": 266.66, + "H_sun": 25.17, + "T2m": 12.45, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201006:0910", + "P": 1273.2, + "G(i)": 262.17, + "H_sun": 32.71, + "T2m": 14.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:1010", + "P": 2043.9, + "G(i)": 415.19, + "H_sun": 37.9, + "T2m": 15.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:1110", + "P": 1708.26, + "G(i)": 350.55, + "H_sun": 39.95, + "T2m": 16.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201006:1210", + "P": 1379.4, + "G(i)": 286.67, + "H_sun": 38.47, + "T2m": 16.99, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201006:1310", + "P": 1446.36, + "G(i)": 299.59, + "H_sun": 33.73, + "T2m": 17.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:1410", + "P": 945.3, + "G(i)": 201.41, + "H_sun": 26.52, + "T2m": 18.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201006:1510", + "P": 58.26, + "G(i)": 23.18, + "H_sun": 17.64, + "T2m": 18.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201006:1610", + "P": 131.22, + "G(i)": 39.99, + "H_sun": 7.74, + "T2m": 17.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201006:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201006:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201006:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201006:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.53, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201006:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.54, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201006:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.89, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201006:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201007:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201007:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201007:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201007:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201007:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.86, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201007:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201007:0610", + "P": 97.56, + "G(i)": 31.48, + "H_sun": 5.85, + "T2m": 8.81, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:0710", + "P": 470.22, + "G(i)": 108.62, + "H_sun": 15.84, + "T2m": 10.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:0810", + "P": 1228.02, + "G(i)": 257.41, + "H_sun": 24.9, + "T2m": 13.31, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201007:0910", + "P": 1931.04, + "G(i)": 394.7, + "H_sun": 32.39, + "T2m": 15.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:1010", + "P": 2224.02, + "G(i)": 456.39, + "H_sun": 37.55, + "T2m": 17.8, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201007:1110", + "P": 3927.0, + "G(i)": 831.87, + "H_sun": 39.57, + "T2m": 19.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201007:1210", + "P": 4124.64, + "G(i)": 884.75, + "H_sun": 38.08, + "T2m": 20.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201007:1310", + "P": 4003.32, + "G(i)": 862.1, + "H_sun": 33.35, + "T2m": 20.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201007:1410", + "P": 3436.26, + "G(i)": 726.11, + "H_sun": 26.16, + "T2m": 20.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201007:1510", + "P": 2197.26, + "G(i)": 452.79, + "H_sun": 17.3, + "T2m": 20.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201007:1610", + "P": 598.38, + "G(i)": 134.95, + "H_sun": 7.41, + "T2m": 19.6, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.77, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201007:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.55, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201007:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201007:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201007:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201007:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201007:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201008:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201008:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201008:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201008:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201008:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201008:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201008:0610", + "P": 81.9, + "G(i)": 27.98, + "H_sun": 5.62, + "T2m": 9.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201008:0710", + "P": 462.0, + "G(i)": 134.46, + "H_sun": 15.59, + "T2m": 11.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201008:0810", + "P": 1691.82, + "G(i)": 359.45, + "H_sun": 24.62, + "T2m": 13.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201008:0910", + "P": 2794.02, + "G(i)": 571.83, + "H_sun": 32.08, + "T2m": 16.18, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201008:1010", + "P": 3571.74, + "G(i)": 746.37, + "H_sun": 37.19, + "T2m": 17.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201008:1110", + "P": 4015.2, + "G(i)": 858.26, + "H_sun": 39.19, + "T2m": 19.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201008:1210", + "P": 4085.28, + "G(i)": 878.76, + "H_sun": 37.69, + "T2m": 20.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201008:1310", + "P": 4016.22, + "G(i)": 862.05, + "H_sun": 32.97, + "T2m": 20.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201008:1410", + "P": 3539.16, + "G(i)": 747.82, + "H_sun": 25.8, + "T2m": 20.95, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201008:1510", + "P": 2463.66, + "G(i)": 509.01, + "H_sun": 16.96, + "T2m": 20.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201008:1610", + "P": 992.52, + "G(i)": 211.84, + "H_sun": 7.08, + "T2m": 19.99, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201008:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.8, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201008:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201008:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201008:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201008:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.18, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201008:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201008:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201009:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201009:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.94, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.58, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0610", + "P": 47.88, + "G(i)": 20.11, + "H_sun": 5.39, + "T2m": 11.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0710", + "P": 517.02, + "G(i)": 127.86, + "H_sun": 15.34, + "T2m": 10.85, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201009:0810", + "P": 1285.62, + "G(i)": 269.51, + "H_sun": 24.34, + "T2m": 12.69, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201009:0910", + "P": 1294.74, + "G(i)": 267.42, + "H_sun": 31.76, + "T2m": 14.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201009:1010", + "P": 1903.44, + "G(i)": 388.88, + "H_sun": 36.84, + "T2m": 16.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:1110", + "P": 3113.52, + "G(i)": 645.15, + "H_sun": 38.81, + "T2m": 17.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:1210", + "P": 2767.92, + "G(i)": 570.79, + "H_sun": 37.3, + "T2m": 17.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:1310", + "P": 1956.48, + "G(i)": 401.49, + "H_sun": 32.6, + "T2m": 18.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201009:1410", + "P": 709.98, + "G(i)": 156.74, + "H_sun": 25.44, + "T2m": 18.44, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201009:1510", + "P": 557.4, + "G(i)": 126.23, + "H_sun": 16.62, + "T2m": 18.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201009:1610", + "P": 117.12, + "G(i)": 36.91, + "H_sun": 6.76, + "T2m": 17.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201009:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201009:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201009:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201009:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201009:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201009:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201009:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201010:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.55, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.23, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201010:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201010:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201010:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.87, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:0610", + "P": 73.26, + "G(i)": 26.23, + "H_sun": 5.15, + "T2m": 11.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201010:0710", + "P": 467.28, + "G(i)": 110.31, + "H_sun": 15.09, + "T2m": 11.55, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201010:0810", + "P": 893.88, + "G(i)": 190.91, + "H_sun": 24.06, + "T2m": 14.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201010:0910", + "P": 918.66, + "G(i)": 195.89, + "H_sun": 31.45, + "T2m": 15.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201010:1010", + "P": 2260.62, + "G(i)": 465.71, + "H_sun": 36.49, + "T2m": 17.22, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:1110", + "P": 3383.64, + "G(i)": 714.2, + "H_sun": 38.43, + "T2m": 18.36, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201010:1210", + "P": 3620.04, + "G(i)": 770.01, + "H_sun": 36.91, + "T2m": 19.11, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201010:1310", + "P": 1885.26, + "G(i)": 390.6, + "H_sun": 32.22, + "T2m": 19.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201010:1410", + "P": 1243.5, + "G(i)": 261.29, + "H_sun": 25.09, + "T2m": 19.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201010:1510", + "P": 1339.14, + "G(i)": 277.97, + "H_sun": 16.28, + "T2m": 19.69, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201010:1610", + "P": 179.16, + "G(i)": 50.55, + "H_sun": 6.44, + "T2m": 18.93, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201010:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201010:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201010:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.07, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201010:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201010:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201010:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201010:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201011:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201011:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201011:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201011:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.8, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201011:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201011:0610", + "P": 62.64, + "G(i)": 23.61, + "H_sun": 4.92, + "T2m": 10.42, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:0710", + "P": 447.48, + "G(i)": 130.81, + "H_sun": 14.84, + "T2m": 10.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201011:0810", + "P": 1659.9, + "G(i)": 349.98, + "H_sun": 23.78, + "T2m": 12.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201011:0910", + "P": 2609.58, + "G(i)": 526.1, + "H_sun": 31.13, + "T2m": 13.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:1010", + "P": 2545.26, + "G(i)": 512.61, + "H_sun": 36.14, + "T2m": 14.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201011:1110", + "P": 3254.76, + "G(i)": 661.93, + "H_sun": 38.05, + "T2m": 15.87, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201011:1210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.17, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201011:1310", + "P": 3796.8, + "G(i)": 775.47, + "H_sun": 31.85, + "T2m": 16.21, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201011:1410", + "P": 3157.98, + "G(i)": 633.44, + "H_sun": 24.74, + "T2m": 15.97, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201011:1510", + "P": 2068.14, + "G(i)": 411.67, + "H_sun": 15.95, + "T2m": 15.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201011:1610", + "P": 108.84, + "G(i)": 34.64, + "H_sun": 6.12, + "T2m": 14.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201011:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.62, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201011:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201011:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.83, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201011:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201011:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.72, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201011:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201012:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201012:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201012:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.19, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201012:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.7, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201012:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201012:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201012:0610", + "P": 68.04, + "G(i)": 24.48, + "H_sun": 4.69, + "T2m": 5.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201012:0710", + "P": 518.28, + "G(i)": 124.67, + "H_sun": 14.59, + "T2m": 7.71, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201012:0810", + "P": 1146.12, + "G(i)": 237.18, + "H_sun": 23.5, + "T2m": 9.59, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201012:0910", + "P": 2773.5, + "G(i)": 560.46, + "H_sun": 30.81, + "T2m": 12.19, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1010", + "P": 3672.3, + "G(i)": 752.02, + "H_sun": 35.78, + "T2m": 14.26, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201012:1110", + "P": 4135.08, + "G(i)": 863.24, + "H_sun": 37.68, + "T2m": 15.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201012:1210", + "P": 4138.98, + "G(i)": 875.42, + "H_sun": 36.15, + "T2m": 16.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201012:1310", + "P": 4023.78, + "G(i)": 854.95, + "H_sun": 31.48, + "T2m": 17.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1410", + "P": 3539.52, + "G(i)": 738.96, + "H_sun": 24.39, + "T2m": 17.12, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1510", + "P": 2578.56, + "G(i)": 525.45, + "H_sun": 15.62, + "T2m": 16.91, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1610", + "P": 845.58, + "G(i)": 180.77, + "H_sun": 5.8, + "T2m": 16.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201012:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.05, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201012:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.07, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201012:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.43, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201012:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.26, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201012:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201012:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201012:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201013:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201013:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201013:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201013:0610", + "P": 56.28, + "G(i)": 21.86, + "H_sun": 4.46, + "T2m": 7.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201013:0710", + "P": 473.16, + "G(i)": 129.42, + "H_sun": 14.34, + "T2m": 7.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201013:0810", + "P": 1600.38, + "G(i)": 332.79, + "H_sun": 23.22, + "T2m": 9.82, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201013:0910", + "P": 2818.08, + "G(i)": 569.32, + "H_sun": 30.5, + "T2m": 12.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201013:1010", + "P": 3574.68, + "G(i)": 736.41, + "H_sun": 35.43, + "T2m": 13.86, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201013:1110", + "P": 4073.94, + "G(i)": 859.25, + "H_sun": 37.3, + "T2m": 14.97, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201013:1210", + "P": 4113.18, + "G(i)": 871.4, + "H_sun": 35.77, + "T2m": 15.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201013:1310", + "P": 4033.56, + "G(i)": 843.88, + "H_sun": 31.12, + "T2m": 16.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:1410", + "P": 3541.74, + "G(i)": 726.47, + "H_sun": 24.04, + "T2m": 16.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201013:1510", + "P": 2550.18, + "G(i)": 512.41, + "H_sun": 15.29, + "T2m": 16.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201013:1610", + "P": 655.14, + "G(i)": 143.31, + "H_sun": 5.49, + "T2m": 15.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201013:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201013:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201013:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201013:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.53, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201013:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.46, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201013:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201013:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201014:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201014:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201014:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.66, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201014:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201014:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.41, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201014:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201014:0610", + "P": 31.8, + "G(i)": 15.74, + "H_sun": 4.22, + "T2m": 8.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201014:0710", + "P": 285.0, + "G(i)": 70.0, + "H_sun": 14.08, + "T2m": 8.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201014:0810", + "P": 1100.22, + "G(i)": 229.0, + "H_sun": 22.94, + "T2m": 10.66, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201014:0910", + "P": 263.76, + "G(i)": 66.75, + "H_sun": 30.18, + "T2m": 12.56, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201014:1010", + "P": 388.56, + "G(i)": 91.78, + "H_sun": 35.08, + "T2m": 13.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201014:1110", + "P": 1279.32, + "G(i)": 263.48, + "H_sun": 36.93, + "T2m": 14.45, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201014:1210", + "P": 3970.68, + "G(i)": 822.39, + "H_sun": 35.39, + "T2m": 15.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201014:1310", + "P": 3336.42, + "G(i)": 678.04, + "H_sun": 30.75, + "T2m": 15.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201014:1410", + "P": 3182.58, + "G(i)": 641.91, + "H_sun": 23.69, + "T2m": 15.59, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201014:1510", + "P": 1480.14, + "G(i)": 298.3, + "H_sun": 14.97, + "T2m": 15.17, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201014:1610", + "P": 27.3, + "G(i)": 14.83, + "H_sun": 5.18, + "T2m": 14.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201014:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201014:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201014:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.51, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201014:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201014:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201014:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.44, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201014:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201015:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.15, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201015:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.82, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201015:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201015:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201015:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.87, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201015:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201015:0610", + "P": 28.68, + "G(i)": 14.87, + "H_sun": 3.99, + "T2m": 7.71, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201015:0710", + "P": 260.88, + "G(i)": 65.37, + "H_sun": 13.83, + "T2m": 8.83, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:0810", + "P": 286.5, + "G(i)": 70.46, + "H_sun": 22.65, + "T2m": 9.84, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:0910", + "P": 405.12, + "G(i)": 93.64, + "H_sun": 29.86, + "T2m": 10.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:1010", + "P": 360.84, + "G(i)": 85.29, + "H_sun": 34.73, + "T2m": 10.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:1110", + "P": 1401.54, + "G(i)": 282.05, + "H_sun": 36.56, + "T2m": 11.25, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201015:1210", + "P": 581.52, + "G(i)": 127.94, + "H_sun": 35.02, + "T2m": 11.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201015:1310", + "P": 450.12, + "G(i)": 102.91, + "H_sun": 30.39, + "T2m": 11.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201015:1410", + "P": 1345.86, + "G(i)": 270.27, + "H_sun": 23.35, + "T2m": 11.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201015:1510", + "P": 721.98, + "G(i)": 152.94, + "H_sun": 14.64, + "T2m": 11.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201015:1610", + "P": 239.46, + "G(i)": 61.23, + "H_sun": 4.87, + "T2m": 11.0, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201015:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201015:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201015:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201015:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201015:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201015:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201015:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201016:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201016:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201016:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201016:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201016:0610", + "P": 13.38, + "G(i)": 10.49, + "H_sun": 3.75, + "T2m": 9.02, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201016:0710", + "P": 375.6, + "G(i)": 89.94, + "H_sun": 13.58, + "T2m": 9.48, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:0810", + "P": 990.24, + "G(i)": 207.31, + "H_sun": 22.37, + "T2m": 11.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201016:0910", + "P": 507.18, + "G(i)": 114.03, + "H_sun": 29.55, + "T2m": 12.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201016:1010", + "P": 998.94, + "G(i)": 208.62, + "H_sun": 34.38, + "T2m": 13.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201016:1110", + "P": 2623.2, + "G(i)": 529.35, + "H_sun": 36.19, + "T2m": 14.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201016:1210", + "P": 2905.26, + "G(i)": 591.78, + "H_sun": 34.65, + "T2m": 15.09, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:1310", + "P": 3433.56, + "G(i)": 708.27, + "H_sun": 30.03, + "T2m": 15.69, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:1410", + "P": 2887.38, + "G(i)": 589.19, + "H_sun": 23.01, + "T2m": 15.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201016:1510", + "P": 1974.72, + "G(i)": 398.64, + "H_sun": 14.33, + "T2m": 15.81, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201016:1610", + "P": 465.6, + "G(i)": 107.03, + "H_sun": 4.57, + "T2m": 15.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.41, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201016:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201016:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201016:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201017:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201017:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201017:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201017:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201017:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201017:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201017:0610", + "P": 35.46, + "G(i)": 16.61, + "H_sun": 3.52, + "T2m": 6.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201017:0710", + "P": 420.66, + "G(i)": 120.53, + "H_sun": 13.32, + "T2m": 6.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201017:0810", + "P": 1602.3, + "G(i)": 334.58, + "H_sun": 22.09, + "T2m": 9.03, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201017:0910", + "P": 2736.54, + "G(i)": 554.8, + "H_sun": 29.23, + "T2m": 11.92, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201017:1010", + "P": 3515.94, + "G(i)": 722.37, + "H_sun": 34.04, + "T2m": 14.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201017:1110", + "P": 4038.24, + "G(i)": 842.83, + "H_sun": 35.82, + "T2m": 15.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201017:1210", + "P": 4041.96, + "G(i)": 845.74, + "H_sun": 34.28, + "T2m": 16.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201017:1310", + "P": 3923.82, + "G(i)": 816.87, + "H_sun": 29.68, + "T2m": 16.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201017:1410", + "P": 3331.62, + "G(i)": 680.89, + "H_sun": 22.68, + "T2m": 17.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201017:1510", + "P": 2279.46, + "G(i)": 458.95, + "H_sun": 14.01, + "T2m": 16.94, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201017:1610", + "P": 397.08, + "G(i)": 93.99, + "H_sun": 4.27, + "T2m": 16.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201017:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201017:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201017:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201017:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201017:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201017:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201017:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201018:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201018:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201018:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0610", + "P": 3.24, + "G(i)": 7.0, + "H_sun": 3.28, + "T2m": 9.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201018:0710", + "P": 263.58, + "G(i)": 66.32, + "H_sun": 13.06, + "T2m": 10.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201018:0810", + "P": 687.84, + "G(i)": 148.54, + "H_sun": 21.8, + "T2m": 10.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201018:0910", + "P": 938.52, + "G(i)": 195.82, + "H_sun": 28.92, + "T2m": 11.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201018:1010", + "P": 2051.4, + "G(i)": 408.9, + "H_sun": 33.69, + "T2m": 12.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201018:1110", + "P": 3254.1, + "G(i)": 654.7, + "H_sun": 35.46, + "T2m": 13.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201018:1210", + "P": 2782.14, + "G(i)": 557.71, + "H_sun": 33.91, + "T2m": 13.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201018:1310", + "P": 3487.8, + "G(i)": 708.97, + "H_sun": 29.32, + "T2m": 14.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201018:1410", + "P": 3215.22, + "G(i)": 650.14, + "H_sun": 22.35, + "T2m": 14.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201018:1510", + "P": 2217.96, + "G(i)": 443.26, + "H_sun": 13.7, + "T2m": 14.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201018:1610", + "P": 286.02, + "G(i)": 71.34, + "H_sun": 3.97, + "T2m": 13.98, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201018:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201018:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201018:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201018:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201018:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201018:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201019:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201019:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201019:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201019:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201019:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201019:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201019:0610", + "P": 5.52, + "G(i)": 7.87, + "H_sun": 3.05, + "T2m": 10.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201019:0710", + "P": 201.84, + "G(i)": 53.77, + "H_sun": 12.81, + "T2m": 10.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201019:0810", + "P": 559.5, + "G(i)": 123.65, + "H_sun": 21.52, + "T2m": 11.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201019:0910", + "P": 2145.66, + "G(i)": 426.24, + "H_sun": 28.6, + "T2m": 11.74, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201019:1010", + "P": 1550.22, + "G(i)": 310.87, + "H_sun": 33.35, + "T2m": 12.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201019:1110", + "P": 2238.3, + "G(i)": 444.55, + "H_sun": 35.09, + "T2m": 12.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201019:1210", + "P": 3168.48, + "G(i)": 633.6, + "H_sun": 33.55, + "T2m": 13.32, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201019:1310", + "P": 3330.06, + "G(i)": 668.7, + "H_sun": 28.97, + "T2m": 13.64, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1410", + "P": 3295.92, + "G(i)": 659.73, + "H_sun": 22.02, + "T2m": 13.66, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1510", + "P": 2046.18, + "G(i)": 404.6, + "H_sun": 13.39, + "T2m": 13.48, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1610", + "P": 153.0, + "G(i)": 43.97, + "H_sun": 3.68, + "T2m": 13.27, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.45, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201019:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.71, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201019:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201019:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201019:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201020:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201020:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.14, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201020:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201020:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201020:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201020:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201020:0610", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 2.81, + "T2m": 11.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201020:0710", + "P": 144.0, + "G(i)": 41.72, + "H_sun": 12.55, + "T2m": 10.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201020:0810", + "P": 565.26, + "G(i)": 124.74, + "H_sun": 21.24, + "T2m": 11.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201020:0910", + "P": 455.34, + "G(i)": 103.84, + "H_sun": 28.29, + "T2m": 11.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201020:1010", + "P": 831.9, + "G(i)": 175.47, + "H_sun": 33.0, + "T2m": 12.21, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201020:1110", + "P": 1045.2, + "G(i)": 216.13, + "H_sun": 34.73, + "T2m": 12.87, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201020:1210", + "P": 1788.54, + "G(i)": 355.9, + "H_sun": 33.19, + "T2m": 12.73, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201020:1310", + "P": 1551.18, + "G(i)": 310.28, + "H_sun": 28.63, + "T2m": 12.96, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201020:1410", + "P": 323.88, + "G(i)": 78.8, + "H_sun": 21.69, + "T2m": 13.25, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201020:1510", + "P": 249.0, + "G(i)": 63.8, + "H_sun": 13.08, + "T2m": 13.26, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201020:1610", + "P": 0.0, + "G(i)": 5.56, + "H_sun": 3.39, + "T2m": 12.93, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201020:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.52, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201020:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.46, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201020:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.67, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201020:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201020:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.67, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201020:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201020:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201021:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201021:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201021:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201021:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201021:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201021:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201021:0610", + "P": 0.0, + "G(i)": 2.62, + "H_sun": 2.57, + "T2m": 11.33, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:0710", + "P": 24.66, + "G(i)": 13.91, + "H_sun": 12.3, + "T2m": 10.96, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201021:0810", + "P": 196.92, + "G(i)": 52.85, + "H_sun": 20.96, + "T2m": 11.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201021:0910", + "P": 196.68, + "G(i)": 52.85, + "H_sun": 27.97, + "T2m": 11.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201021:1010", + "P": 340.62, + "G(i)": 81.59, + "H_sun": 32.66, + "T2m": 11.38, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201021:1110", + "P": 383.4, + "G(i)": 89.93, + "H_sun": 34.37, + "T2m": 11.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201021:1210", + "P": 292.92, + "G(i)": 72.31, + "H_sun": 32.83, + "T2m": 11.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201021:1310", + "P": 232.56, + "G(i)": 60.26, + "H_sun": 28.29, + "T2m": 11.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201021:1410", + "P": 147.24, + "G(i)": 42.65, + "H_sun": 21.37, + "T2m": 11.84, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:1510", + "P": 75.96, + "G(i)": 26.89, + "H_sun": 12.78, + "T2m": 11.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201021:1610", + "P": 12.18, + "G(i)": 10.2, + "H_sun": 3.1, + "T2m": 11.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201021:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201021:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201021:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201021:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201022:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201022:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201022:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201022:0710", + "P": 34.68, + "G(i)": 16.69, + "H_sun": 12.04, + "T2m": 11.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201022:0810", + "P": 71.94, + "G(i)": 25.96, + "H_sun": 20.67, + "T2m": 11.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201022:0910", + "P": 155.58, + "G(i)": 44.5, + "H_sun": 27.66, + "T2m": 12.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1010", + "P": 262.68, + "G(i)": 66.75, + "H_sun": 32.32, + "T2m": 13.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1110", + "P": 411.78, + "G(i)": 96.42, + "H_sun": 34.02, + "T2m": 13.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1210", + "P": 243.3, + "G(i)": 63.04, + "H_sun": 32.48, + "T2m": 14.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1310", + "P": 153.84, + "G(i)": 44.5, + "H_sun": 27.95, + "T2m": 14.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:1410", + "P": 128.1, + "G(i)": 38.94, + "H_sun": 21.05, + "T2m": 14.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201022:1510", + "P": 123.96, + "G(i)": 38.01, + "H_sun": 12.48, + "T2m": 14.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201022:1610", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 2.82, + "T2m": 14.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201022:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201022:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201022:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201022:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201023:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201023:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.47, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201023:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201023:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201023:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201023:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201023:0710", + "P": 222.36, + "G(i)": 58.54, + "H_sun": 11.78, + "T2m": 10.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:0810", + "P": 251.46, + "G(i)": 63.97, + "H_sun": 20.39, + "T2m": 11.26, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201023:0910", + "P": 392.22, + "G(i)": 91.78, + "H_sun": 27.35, + "T2m": 11.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201023:1010", + "P": 273.42, + "G(i)": 68.61, + "H_sun": 31.98, + "T2m": 12.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201023:1110", + "P": 319.74, + "G(i)": 77.88, + "H_sun": 33.66, + "T2m": 12.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:1210", + "P": 195.12, + "G(i)": 52.85, + "H_sun": 32.12, + "T2m": 12.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:1310", + "P": 212.7, + "G(i)": 56.55, + "H_sun": 27.61, + "T2m": 13.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201023:1410", + "P": 253.56, + "G(i)": 64.9, + "H_sun": 20.74, + "T2m": 13.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201023:1510", + "P": 34.32, + "G(i)": 16.69, + "H_sun": 12.19, + "T2m": 13.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201023:1610", + "P": 0.0, + "G(i)": 1.75, + "H_sun": 2.54, + "T2m": 13.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201023:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201023:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.72, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201023:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201023:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.0, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201023:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.91, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201023:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201023:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201024:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201024:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.68, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201024:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201024:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201024:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201024:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201024:0710", + "P": 284.34, + "G(i)": 72.3, + "H_sun": 11.53, + "T2m": 11.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201024:0810", + "P": 623.76, + "G(i)": 136.97, + "H_sun": 20.11, + "T2m": 12.46, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201024:0910", + "P": 650.4, + "G(i)": 142.28, + "H_sun": 27.04, + "T2m": 13.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201024:1010", + "P": 2361.24, + "G(i)": 478.3, + "H_sun": 31.65, + "T2m": 15.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201024:1110", + "P": 2784.6, + "G(i)": 571.92, + "H_sun": 33.31, + "T2m": 16.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201024:1210", + "P": 3488.7, + "G(i)": 735.2, + "H_sun": 31.78, + "T2m": 17.92, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201024:1310", + "P": 3513.84, + "G(i)": 744.73, + "H_sun": 27.28, + "T2m": 18.51, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201024:1410", + "P": 3075.96, + "G(i)": 641.2, + "H_sun": 20.43, + "T2m": 18.81, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201024:1510", + "P": 1990.14, + "G(i)": 406.98, + "H_sun": 11.9, + "T2m": 18.58, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.16, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201024:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.18, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201024:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.49, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201024:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201024:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201024:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201025:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201025:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201025:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201025:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201025:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201025:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201025:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201025:0710", + "P": 319.32, + "G(i)": 81.19, + "H_sun": 11.27, + "T2m": 10.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201025:0810", + "P": 283.8, + "G(i)": 70.46, + "H_sun": 19.83, + "T2m": 11.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201025:0910", + "P": 325.5, + "G(i)": 78.8, + "H_sun": 26.73, + "T2m": 12.35, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201025:1010", + "P": 1324.74, + "G(i)": 268.58, + "H_sun": 31.31, + "T2m": 13.17, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201025:1110", + "P": 1121.82, + "G(i)": 231.05, + "H_sun": 32.97, + "T2m": 13.55, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201025:1210", + "P": 752.34, + "G(i)": 161.42, + "H_sun": 31.43, + "T2m": 13.76, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201025:1310", + "P": 776.52, + "G(i)": 165.82, + "H_sun": 26.95, + "T2m": 13.9, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201025:1410", + "P": 313.5, + "G(i)": 76.95, + "H_sun": 20.12, + "T2m": 13.88, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201025:1510", + "P": 266.22, + "G(i)": 67.28, + "H_sun": 11.62, + "T2m": 13.67, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201025:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201025:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201025:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.5, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201025:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201025:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.52, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201025:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201025:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201025:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201026:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201026:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201026:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0710", + "P": 18.24, + "G(i)": 12.05, + "H_sun": 11.01, + "T2m": 11.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201026:0810", + "P": 143.34, + "G(i)": 41.72, + "H_sun": 19.55, + "T2m": 11.45, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201026:0910", + "P": 312.0, + "G(i)": 76.02, + "H_sun": 26.42, + "T2m": 11.85, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201026:1010", + "P": 493.56, + "G(i)": 111.25, + "H_sun": 30.98, + "T2m": 12.02, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201026:1110", + "P": 594.06, + "G(i)": 130.72, + "H_sun": 32.62, + "T2m": 12.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:1210", + "P": 328.74, + "G(i)": 79.73, + "H_sun": 31.09, + "T2m": 12.63, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201026:1310", + "P": 226.38, + "G(i)": 59.33, + "H_sun": 26.63, + "T2m": 12.98, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201026:1410", + "P": 112.32, + "G(i)": 35.23, + "H_sun": 19.82, + "T2m": 12.76, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201026:1510", + "P": 108.24, + "G(i)": 34.3, + "H_sun": 11.33, + "T2m": 12.56, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201026:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201026:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.96, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201026:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201026:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.96, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201026:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201026:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201026:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201026:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201027:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.1, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201027:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201027:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201027:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.62, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20201027:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201027:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.29, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201027:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201027:0710", + "P": 344.46, + "G(i)": 99.21, + "H_sun": 10.76, + "T2m": 7.16, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201027:0810", + "P": 1465.56, + "G(i)": 305.57, + "H_sun": 19.27, + "T2m": 8.42, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201027:0910", + "P": 2638.8, + "G(i)": 523.56, + "H_sun": 26.12, + "T2m": 10.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201027:1010", + "P": 3447.54, + "G(i)": 697.46, + "H_sun": 30.65, + "T2m": 12.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201027:1110", + "P": 3931.5, + "G(i)": 815.26, + "H_sun": 32.28, + "T2m": 14.81, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1210", + "P": 4098.78, + "G(i)": 859.56, + "H_sun": 30.75, + "T2m": 15.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1310", + "P": 3885.48, + "G(i)": 811.88, + "H_sun": 26.31, + "T2m": 16.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201027:1410", + "P": 3230.22, + "G(i)": 660.47, + "H_sun": 19.52, + "T2m": 16.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201027:1510", + "P": 2088.48, + "G(i)": 420.37, + "H_sun": 11.06, + "T2m": 16.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201027:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201027:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201027:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201027:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201027:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201028:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.63, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201028:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201028:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201028:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.22, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201028:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201028:0710", + "P": 331.38, + "G(i)": 96.78, + "H_sun": 10.5, + "T2m": 7.56, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:0810", + "P": 1439.64, + "G(i)": 305.18, + "H_sun": 18.99, + "T2m": 9.43, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201028:0910", + "P": 2557.08, + "G(i)": 515.68, + "H_sun": 25.81, + "T2m": 11.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:1010", + "P": 3371.76, + "G(i)": 687.9, + "H_sun": 30.32, + "T2m": 13.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201028:1110", + "P": 3817.26, + "G(i)": 792.66, + "H_sun": 31.94, + "T2m": 14.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201028:1210", + "P": 4017.9, + "G(i)": 842.17, + "H_sun": 30.42, + "T2m": 15.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201028:1310", + "P": 3782.88, + "G(i)": 785.01, + "H_sun": 25.99, + "T2m": 16.31, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201028:1410", + "P": 3365.4, + "G(i)": 688.67, + "H_sun": 19.23, + "T2m": 16.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201028:1510", + "P": 1890.72, + "G(i)": 380.3, + "H_sun": 10.79, + "T2m": 16.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.86, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201028:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201028:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201028:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201028:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201029:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.5, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201029:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201029:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201029:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201029:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.66, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201029:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201029:0710", + "P": 262.08, + "G(i)": 67.56, + "H_sun": 10.25, + "T2m": 7.89, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:0810", + "P": 1253.7, + "G(i)": 264.58, + "H_sun": 18.71, + "T2m": 9.5, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:0910", + "P": 1764.18, + "G(i)": 355.05, + "H_sun": 25.51, + "T2m": 12.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201029:1010", + "P": 2690.88, + "G(i)": 543.07, + "H_sun": 30.0, + "T2m": 13.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201029:1110", + "P": 2570.52, + "G(i)": 524.92, + "H_sun": 31.61, + "T2m": 15.09, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201029:1210", + "P": 3225.06, + "G(i)": 667.41, + "H_sun": 30.09, + "T2m": 16.0, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:1310", + "P": 2917.5, + "G(i)": 601.39, + "H_sun": 25.68, + "T2m": 16.75, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201029:1410", + "P": 1992.9, + "G(i)": 405.98, + "H_sun": 18.94, + "T2m": 16.97, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201029:1510", + "P": 1070.88, + "G(i)": 223.21, + "H_sun": 10.52, + "T2m": 16.65, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201029:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.42, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201029:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201029:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.15, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201029:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201029:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201029:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201029:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201029:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.83, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201030:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.45, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201030:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.06, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201030:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201030:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.07, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201030:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201030:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201030:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.76, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201030:0710", + "P": 305.46, + "G(i)": 84.24, + "H_sun": 9.99, + "T2m": 9.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201030:0810", + "P": 1198.74, + "G(i)": 255.35, + "H_sun": 18.43, + "T2m": 11.2, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201030:0910", + "P": 1887.3, + "G(i)": 382.15, + "H_sun": 25.21, + "T2m": 13.0, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201030:1010", + "P": 3067.38, + "G(i)": 629.2, + "H_sun": 29.68, + "T2m": 14.82, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201030:1110", + "P": 2537.34, + "G(i)": 518.08, + "H_sun": 31.28, + "T2m": 16.18, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201030:1210", + "P": 3878.64, + "G(i)": 820.84, + "H_sun": 29.77, + "T2m": 17.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201030:1310", + "P": 3181.56, + "G(i)": 660.08, + "H_sun": 25.37, + "T2m": 18.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201030:1410", + "P": 2110.5, + "G(i)": 429.11, + "H_sun": 18.66, + "T2m": 18.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201030:1510", + "P": 1857.78, + "G(i)": 376.84, + "H_sun": 10.25, + "T2m": 18.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201030:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.61, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201030:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201030:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201030:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201030:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201030:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.25, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201030:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201030:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201031:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201031:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201031:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201031:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.06, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201031:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201031:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201031:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201031:0710", + "P": 297.78, + "G(i)": 85.72, + "H_sun": 9.74, + "T2m": 8.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201031:0810", + "P": 1151.1, + "G(i)": 244.6, + "H_sun": 18.16, + "T2m": 10.9, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201031:0910", + "P": 2116.62, + "G(i)": 427.04, + "H_sun": 24.91, + "T2m": 12.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201031:1010", + "P": 3174.96, + "G(i)": 649.64, + "H_sun": 29.36, + "T2m": 13.37, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201031:1110", + "P": 3627.36, + "G(i)": 754.48, + "H_sun": 30.95, + "T2m": 14.8, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201031:1210", + "P": 3807.3, + "G(i)": 799.47, + "H_sun": 29.45, + "T2m": 16.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201031:1310", + "P": 3549.18, + "G(i)": 741.46, + "H_sun": 25.07, + "T2m": 17.21, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201031:1410", + "P": 1874.1, + "G(i)": 382.05, + "H_sun": 18.38, + "T2m": 17.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201031:1510", + "P": 1707.3, + "G(i)": 347.7, + "H_sun": 10.0, + "T2m": 17.56, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201031:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.45, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201031:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201031:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.97, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201031:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201031:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.41, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201031:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201031:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201031:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201101:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201101:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201101:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201101:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201101:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201101:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201101:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201101:0710", + "P": 57.0, + "G(i)": 22.25, + "H_sun": 9.48, + "T2m": 10.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201101:0810", + "P": 743.76, + "G(i)": 160.99, + "H_sun": 17.88, + "T2m": 11.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:0910", + "P": 629.94, + "G(i)": 137.34, + "H_sun": 24.61, + "T2m": 11.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201101:1010", + "P": 832.26, + "G(i)": 176.32, + "H_sun": 29.04, + "T2m": 12.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:1110", + "P": 589.62, + "G(i)": 130.72, + "H_sun": 30.63, + "T2m": 13.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:1210", + "P": 1473.54, + "G(i)": 299.84, + "H_sun": 29.13, + "T2m": 14.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201101:1310", + "P": 1617.18, + "G(i)": 328.31, + "H_sun": 24.77, + "T2m": 15.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201101:1410", + "P": 743.76, + "G(i)": 160.8, + "H_sun": 18.1, + "T2m": 15.78, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201101:1510", + "P": 723.36, + "G(i)": 155.71, + "H_sun": 9.74, + "T2m": 15.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201101:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201101:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.43, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201101:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201101:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.41, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201101:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201101:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201101:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.55, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201102:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201102:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201102:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.47, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201102:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:0710", + "P": 210.3, + "G(i)": 57.36, + "H_sun": 9.23, + "T2m": 10.53, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201102:0810", + "P": 534.84, + "G(i)": 120.04, + "H_sun": 17.61, + "T2m": 12.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201102:0910", + "P": 642.3, + "G(i)": 140.69, + "H_sun": 24.31, + "T2m": 13.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201102:1010", + "P": 766.5, + "G(i)": 165.39, + "H_sun": 28.73, + "T2m": 14.68, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201102:1110", + "P": 812.88, + "G(i)": 175.25, + "H_sun": 30.31, + "T2m": 15.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201102:1210", + "P": 1407.0, + "G(i)": 290.13, + "H_sun": 28.82, + "T2m": 16.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:1310", + "P": 2303.82, + "G(i)": 468.6, + "H_sun": 24.48, + "T2m": 17.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201102:1410", + "P": 2127.96, + "G(i)": 431.35, + "H_sun": 17.83, + "T2m": 17.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201102:1510", + "P": 789.24, + "G(i)": 169.49, + "H_sun": 9.49, + "T2m": 17.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201102:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.06, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201102:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201102:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.2, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201102:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201102:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201103:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201103:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201103:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201103:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201103:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201103:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201103:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201103:0710", + "P": 200.4, + "G(i)": 55.56, + "H_sun": 8.98, + "T2m": 11.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201103:0810", + "P": 492.48, + "G(i)": 112.1, + "H_sun": 17.33, + "T2m": 12.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201103:0910", + "P": 631.14, + "G(i)": 138.87, + "H_sun": 24.02, + "T2m": 14.15, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201103:1010", + "P": 719.22, + "G(i)": 156.32, + "H_sun": 28.42, + "T2m": 14.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201103:1110", + "P": 502.86, + "G(i)": 114.96, + "H_sun": 29.99, + "T2m": 15.59, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201103:1210", + "P": 467.4, + "G(i)": 108.47, + "H_sun": 28.51, + "T2m": 16.31, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201103:1310", + "P": 317.28, + "G(i)": 78.8, + "H_sun": 24.19, + "T2m": 16.73, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201103:1410", + "P": 173.4, + "G(i)": 49.14, + "H_sun": 17.56, + "T2m": 16.87, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201103:1510", + "P": 207.3, + "G(i)": 56.01, + "H_sun": 9.25, + "T2m": 16.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201103:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201103:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201103:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201103:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201103:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.98, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201103:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201103:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201103:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201104:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201104:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201104:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201104:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201104:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201104:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.42, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201104:0710", + "P": 148.08, + "G(i)": 43.27, + "H_sun": 8.73, + "T2m": 12.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:0810", + "P": 231.24, + "G(i)": 60.26, + "H_sun": 17.06, + "T2m": 12.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201104:0910", + "P": 154.62, + "G(i)": 44.5, + "H_sun": 23.73, + "T2m": 13.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:1010", + "P": 257.7, + "G(i)": 65.82, + "H_sun": 28.11, + "T2m": 13.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:1110", + "P": 368.88, + "G(i)": 88.08, + "H_sun": 29.68, + "T2m": 14.17, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:1210", + "P": 568.74, + "G(i)": 127.01, + "H_sun": 28.21, + "T2m": 14.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201104:1310", + "P": 256.62, + "G(i)": 65.82, + "H_sun": 23.91, + "T2m": 14.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201104:1410", + "P": 429.3, + "G(i)": 99.85, + "H_sun": 17.3, + "T2m": 14.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201104:1510", + "P": 563.04, + "G(i)": 124.37, + "H_sun": 9.01, + "T2m": 14.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201104:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201104:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201104:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201104:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201104:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201104:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.29, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201105:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201105:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201105:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201105:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:0710", + "P": 234.54, + "G(i)": 76.56, + "H_sun": 8.48, + "T2m": 12.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:0810", + "P": 830.22, + "G(i)": 181.62, + "H_sun": 16.8, + "T2m": 13.78, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201105:0910", + "P": 1421.4, + "G(i)": 291.72, + "H_sun": 23.44, + "T2m": 14.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:1010", + "P": 2473.32, + "G(i)": 501.84, + "H_sun": 27.81, + "T2m": 15.76, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201105:1110", + "P": 3775.26, + "G(i)": 785.46, + "H_sun": 29.37, + "T2m": 16.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:1210", + "P": 3909.48, + "G(i)": 816.3, + "H_sun": 27.91, + "T2m": 16.79, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:1310", + "P": 3662.28, + "G(i)": 760.1, + "H_sun": 23.63, + "T2m": 17.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:1410", + "P": 2955.78, + "G(i)": 604.12, + "H_sun": 17.05, + "T2m": 17.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201105:1510", + "P": 1723.92, + "G(i)": 350.04, + "H_sun": 8.78, + "T2m": 17.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201105:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201105:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201105:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201105:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201105:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201106:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.55, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201106:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201106:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201106:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.8, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201106:0710", + "P": 171.48, + "G(i)": 49.52, + "H_sun": 8.23, + "T2m": 12.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201106:0810", + "P": 542.04, + "G(i)": 122.45, + "H_sun": 16.53, + "T2m": 13.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201106:0910", + "P": 317.22, + "G(i)": 77.88, + "H_sun": 23.15, + "T2m": 14.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201106:1010", + "P": 752.82, + "G(i)": 162.76, + "H_sun": 27.51, + "T2m": 15.02, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201106:1110", + "P": 1298.94, + "G(i)": 266.97, + "H_sun": 29.07, + "T2m": 15.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201106:1210", + "P": 3478.02, + "G(i)": 708.7, + "H_sun": 27.62, + "T2m": 16.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201106:1310", + "P": 3149.28, + "G(i)": 635.92, + "H_sun": 23.35, + "T2m": 16.17, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201106:1410", + "P": 2617.5, + "G(i)": 524.18, + "H_sun": 16.8, + "T2m": 16.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201106:1510", + "P": 1723.74, + "G(i)": 346.21, + "H_sun": 8.55, + "T2m": 15.73, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201106:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201106:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201106:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201106:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.15, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201106:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.4, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201106:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.28, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201106:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201107:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.99, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201107:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.69, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201107:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.53, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201107:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201107:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201107:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201107:0710", + "P": 208.26, + "G(i)": 60.27, + "H_sun": 7.98, + "T2m": 8.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201107:0810", + "P": 851.64, + "G(i)": 183.12, + "H_sun": 16.26, + "T2m": 9.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201107:0910", + "P": 1461.18, + "G(i)": 294.71, + "H_sun": 22.87, + "T2m": 11.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201107:1010", + "P": 3096.78, + "G(i)": 622.91, + "H_sun": 27.21, + "T2m": 13.44, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:1110", + "P": 3693.3, + "G(i)": 763.59, + "H_sun": 28.77, + "T2m": 15.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201107:1210", + "P": 3902.16, + "G(i)": 820.28, + "H_sun": 27.33, + "T2m": 16.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201107:1310", + "P": 3417.66, + "G(i)": 707.75, + "H_sun": 23.08, + "T2m": 16.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201107:1410", + "P": 1570.44, + "G(i)": 319.68, + "H_sun": 16.55, + "T2m": 17.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201107:1510", + "P": 181.08, + "G(i)": 50.72, + "H_sun": 8.33, + "T2m": 16.67, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201107:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.54, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201107:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201107:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201107:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201107:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.07, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201108:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201108:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201108:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201108:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201108:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201108:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.72, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201108:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201108:0710", + "P": 210.78, + "G(i)": 68.09, + "H_sun": 7.74, + "T2m": 9.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:0810", + "P": 1218.96, + "G(i)": 265.33, + "H_sun": 16.0, + "T2m": 11.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201108:0910", + "P": 2323.62, + "G(i)": 472.93, + "H_sun": 22.59, + "T2m": 13.74, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201108:1010", + "P": 3050.52, + "G(i)": 622.76, + "H_sun": 26.92, + "T2m": 15.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:1110", + "P": 2280.48, + "G(i)": 463.48, + "H_sun": 28.48, + "T2m": 16.43, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:1210", + "P": 3815.52, + "G(i)": 801.3, + "H_sun": 27.05, + "T2m": 17.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201108:1310", + "P": 2691.72, + "G(i)": 549.29, + "H_sun": 22.82, + "T2m": 17.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:1410", + "P": 2883.66, + "G(i)": 587.57, + "H_sun": 16.31, + "T2m": 17.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201108:1510", + "P": 132.24, + "G(i)": 40.23, + "H_sun": 8.11, + "T2m": 16.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201108:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201108:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.34, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201108:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201108:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201108:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201108:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201108:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201108:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201109:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.25, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201109:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201109:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.52, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201109:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201109:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:0710", + "P": 202.56, + "G(i)": 68.25, + "H_sun": 7.5, + "T2m": 10.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201109:0810", + "P": 1247.58, + "G(i)": 272.25, + "H_sun": 15.74, + "T2m": 11.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:0910", + "P": 2373.78, + "G(i)": 480.19, + "H_sun": 22.31, + "T2m": 13.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:1010", + "P": 3217.26, + "G(i)": 653.63, + "H_sun": 26.63, + "T2m": 14.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:1110", + "P": 3718.2, + "G(i)": 771.2, + "H_sun": 28.19, + "T2m": 15.76, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201109:1210", + "P": 3939.78, + "G(i)": 829.58, + "H_sun": 26.77, + "T2m": 16.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:1310", + "P": 3630.36, + "G(i)": 760.8, + "H_sun": 22.56, + "T2m": 16.7, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201109:1410", + "P": 3120.48, + "G(i)": 642.65, + "H_sun": 16.08, + "T2m": 16.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201109:1510", + "P": 148.5, + "G(i)": 43.72, + "H_sun": 7.9, + "T2m": 16.55, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.44, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201109:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201109:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201109:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201109:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.84, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201109:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.44, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201110:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.77, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201110:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201110:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201110:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:0710", + "P": 195.78, + "G(i)": 64.58, + "H_sun": 7.25, + "T2m": 8.28, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201110:0810", + "P": 982.02, + "G(i)": 212.1, + "H_sun": 15.48, + "T2m": 9.54, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201110:0910", + "P": 2233.02, + "G(i)": 451.02, + "H_sun": 22.04, + "T2m": 11.49, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201110:1010", + "P": 3060.24, + "G(i)": 624.43, + "H_sun": 26.35, + "T2m": 13.45, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201110:1110", + "P": 3586.5, + "G(i)": 743.11, + "H_sun": 27.9, + "T2m": 14.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:1210", + "P": 3204.3, + "G(i)": 658.84, + "H_sun": 26.49, + "T2m": 15.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201110:1310", + "P": 3852.48, + "G(i)": 806.01, + "H_sun": 22.31, + "T2m": 16.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201110:1410", + "P": 1009.26, + "G(i)": 210.79, + "H_sun": 15.85, + "T2m": 16.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:1510", + "P": 157.32, + "G(i)": 45.47, + "H_sun": 7.69, + "T2m": 15.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201110:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201110:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201110:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.44, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.88, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201110:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201110:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.33, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0710", + "P": 185.76, + "G(i)": 60.15, + "H_sun": 7.01, + "T2m": 8.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201111:0810", + "P": 1038.18, + "G(i)": 225.08, + "H_sun": 15.23, + "T2m": 9.98, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201111:0910", + "P": 1915.38, + "G(i)": 385.77, + "H_sun": 21.77, + "T2m": 11.39, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201111:1010", + "P": 3150.12, + "G(i)": 634.66, + "H_sun": 26.07, + "T2m": 12.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201111:1110", + "P": 3680.34, + "G(i)": 748.02, + "H_sun": 27.62, + "T2m": 13.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201111:1210", + "P": 2757.78, + "G(i)": 550.23, + "H_sun": 26.23, + "T2m": 13.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201111:1310", + "P": 3486.96, + "G(i)": 703.53, + "H_sun": 22.06, + "T2m": 14.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201111:1410", + "P": 2740.98, + "G(i)": 543.16, + "H_sun": 15.63, + "T2m": 13.68, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201111:1510", + "P": 134.7, + "G(i)": 40.23, + "H_sun": 7.49, + "T2m": 13.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201111:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.75, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201111:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201111:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201111:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201112:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201112:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201112:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.16, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201112:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.15, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:0710", + "P": 160.8, + "G(i)": 49.91, + "H_sun": 6.78, + "T2m": 9.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:0810", + "P": 188.7, + "G(i)": 50.99, + "H_sun": 14.97, + "T2m": 10.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:0910", + "P": 1091.4, + "G(i)": 223.43, + "H_sun": 21.5, + "T2m": 10.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201112:1010", + "P": 470.34, + "G(i)": 106.62, + "H_sun": 25.79, + "T2m": 11.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201112:1110", + "P": 410.52, + "G(i)": 95.49, + "H_sun": 27.35, + "T2m": 12.07, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201112:1210", + "P": 524.4, + "G(i)": 117.74, + "H_sun": 25.96, + "T2m": 12.64, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201112:1310", + "P": 408.3, + "G(i)": 95.49, + "H_sun": 21.82, + "T2m": 13.08, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201112:1410", + "P": 600.18, + "G(i)": 131.71, + "H_sun": 15.41, + "T2m": 13.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201112:1510", + "P": 142.92, + "G(i)": 41.97, + "H_sun": 7.3, + "T2m": 13.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201112:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201112:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201112:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201112:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201112:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.44, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201112:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201113:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201113:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201113:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.77, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201113:0710", + "P": 94.8, + "G(i)": 31.29, + "H_sun": 6.54, + "T2m": 9.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:0810", + "P": 351.6, + "G(i)": 83.35, + "H_sun": 14.72, + "T2m": 9.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201113:0910", + "P": 299.82, + "G(i)": 73.24, + "H_sun": 21.24, + "T2m": 10.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201113:1010", + "P": 529.38, + "G(i)": 117.74, + "H_sun": 25.52, + "T2m": 10.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201113:1110", + "P": 524.04, + "G(i)": 116.82, + "H_sun": 27.08, + "T2m": 11.05, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201113:1210", + "P": 532.38, + "G(i)": 118.67, + "H_sun": 25.71, + "T2m": 11.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201113:1310", + "P": 575.4, + "G(i)": 126.78, + "H_sun": 21.59, + "T2m": 11.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:1410", + "P": 385.38, + "G(i)": 90.34, + "H_sun": 15.2, + "T2m": 12.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201113:1510", + "P": 123.6, + "G(i)": 37.6, + "H_sun": 7.11, + "T2m": 12.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201113:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201114:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201114:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.34, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201114:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201114:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201114:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:0710", + "P": 96.72, + "G(i)": 32.0, + "H_sun": 6.31, + "T2m": 7.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201114:0810", + "P": 388.92, + "G(i)": 90.76, + "H_sun": 14.48, + "T2m": 9.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201114:0910", + "P": 593.94, + "G(i)": 129.78, + "H_sun": 20.98, + "T2m": 10.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201114:1010", + "P": 659.22, + "G(i)": 142.67, + "H_sun": 25.25, + "T2m": 11.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201114:1110", + "P": 959.7, + "G(i)": 199.72, + "H_sun": 26.81, + "T2m": 12.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201114:1210", + "P": 1381.14, + "G(i)": 279.45, + "H_sun": 25.46, + "T2m": 12.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201114:1310", + "P": 2300.04, + "G(i)": 457.84, + "H_sun": 21.36, + "T2m": 13.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201114:1410", + "P": 1799.34, + "G(i)": 357.34, + "H_sun": 14.99, + "T2m": 13.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201114:1510", + "P": 130.98, + "G(i)": 39.35, + "H_sun": 6.93, + "T2m": 13.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201114:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201114:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201114:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.44, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201114:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201114:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201114:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.54, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.65, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201115:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0710", + "P": 92.28, + "G(i)": 31.09, + "H_sun": 6.08, + "T2m": 8.36, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0810", + "P": 496.74, + "G(i)": 112.28, + "H_sun": 14.23, + "T2m": 9.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201115:0910", + "P": 530.28, + "G(i)": 117.28, + "H_sun": 20.72, + "T2m": 9.62, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201115:1010", + "P": 376.02, + "G(i)": 88.08, + "H_sun": 24.99, + "T2m": 10.15, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1110", + "P": 1101.96, + "G(i)": 225.1, + "H_sun": 26.56, + "T2m": 10.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1210", + "P": 951.3, + "G(i)": 196.96, + "H_sun": 25.21, + "T2m": 11.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201115:1310", + "P": 359.52, + "G(i)": 85.29, + "H_sun": 21.13, + "T2m": 11.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1410", + "P": 100.56, + "G(i)": 32.45, + "H_sun": 14.8, + "T2m": 11.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1510", + "P": 128.04, + "G(i)": 38.48, + "H_sun": 6.75, + "T2m": 11.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201115:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201115:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201115:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201115:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201115:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201115:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201115:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201116:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201116:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201116:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201116:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201116:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201116:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201116:0710", + "P": 138.36, + "G(i)": 54.34, + "H_sun": 5.85, + "T2m": 6.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201116:0810", + "P": 625.92, + "G(i)": 137.58, + "H_sun": 13.99, + "T2m": 7.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201116:0910", + "P": 1606.8, + "G(i)": 318.71, + "H_sun": 20.47, + "T2m": 8.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:1010", + "P": 1515.72, + "G(i)": 300.65, + "H_sun": 24.73, + "T2m": 9.85, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:1110", + "P": 3036.72, + "G(i)": 599.42, + "H_sun": 26.3, + "T2m": 10.89, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201116:1210", + "P": 3872.16, + "G(i)": 780.93, + "H_sun": 24.97, + "T2m": 11.87, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:1310", + "P": 3635.88, + "G(i)": 732.34, + "H_sun": 20.92, + "T2m": 12.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201116:1410", + "P": 2872.38, + "G(i)": 571.3, + "H_sun": 14.6, + "T2m": 12.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201116:1510", + "P": 80.28, + "G(i)": 27.98, + "H_sun": 6.58, + "T2m": 12.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201116:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201116:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201116:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201116:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201116:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201116:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.97, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.15, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201116:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.75, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201117:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201117:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201117:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.12, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201117:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201117:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201117:0710", + "P": 110.16, + "G(i)": 43.36, + "H_sun": 5.62, + "T2m": 6.42, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201117:0810", + "P": 1029.72, + "G(i)": 224.78, + "H_sun": 13.75, + "T2m": 7.4, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201117:0910", + "P": 2214.06, + "G(i)": 443.54, + "H_sun": 20.22, + "T2m": 9.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201117:1010", + "P": 3001.92, + "G(i)": 603.13, + "H_sun": 24.48, + "T2m": 11.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201117:1110", + "P": 3092.4, + "G(i)": 623.85, + "H_sun": 26.05, + "T2m": 13.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201117:1210", + "P": 3103.38, + "G(i)": 625.92, + "H_sun": 24.74, + "T2m": 14.25, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201117:1310", + "P": 2464.14, + "G(i)": 491.93, + "H_sun": 20.71, + "T2m": 14.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:1410", + "P": 2705.94, + "G(i)": 539.17, + "H_sun": 14.41, + "T2m": 14.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201117:1510", + "P": 110.46, + "G(i)": 34.98, + "H_sun": 6.41, + "T2m": 14.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201117:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201117:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.09, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201117:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201117:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.86, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201117:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201117:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201117:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201118:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.63, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201118:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201118:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201118:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201118:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201118:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201118:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:0710", + "P": 102.42, + "G(i)": 41.27, + "H_sun": 5.4, + "T2m": 4.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:0810", + "P": 1069.08, + "G(i)": 231.61, + "H_sun": 13.52, + "T2m": 5.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:0910", + "P": 2250.12, + "G(i)": 448.69, + "H_sun": 19.98, + "T2m": 8.49, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201118:1010", + "P": 3216.36, + "G(i)": 648.67, + "H_sun": 24.23, + "T2m": 10.71, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201118:1110", + "P": 3699.18, + "G(i)": 757.57, + "H_sun": 25.81, + "T2m": 12.43, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:1210", + "P": 3871.8, + "G(i)": 796.37, + "H_sun": 24.51, + "T2m": 13.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201118:1310", + "P": 3627.06, + "G(i)": 741.42, + "H_sun": 20.5, + "T2m": 14.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201118:1410", + "P": 2791.08, + "G(i)": 558.98, + "H_sun": 14.23, + "T2m": 14.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201118:1510", + "P": 98.94, + "G(i)": 32.35, + "H_sun": 6.25, + "T2m": 13.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201118:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201118:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201118:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.64, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201118:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201118:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201118:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201118:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201119:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201119:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201119:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201119:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201119:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.07, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201119:0710", + "P": 92.64, + "G(i)": 40.57, + "H_sun": 5.18, + "T2m": 3.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201119:0810", + "P": 1097.52, + "G(i)": 238.0, + "H_sun": 13.28, + "T2m": 4.57, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201119:0910", + "P": 2282.04, + "G(i)": 453.36, + "H_sun": 19.74, + "T2m": 7.55, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201119:1010", + "P": 3172.5, + "G(i)": 634.91, + "H_sun": 23.99, + "T2m": 9.96, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201119:1110", + "P": 3645.66, + "G(i)": 743.87, + "H_sun": 25.57, + "T2m": 12.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201119:1210", + "P": 3766.08, + "G(i)": 773.9, + "H_sun": 24.29, + "T2m": 13.39, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:1310", + "P": 3511.98, + "G(i)": 717.71, + "H_sun": 20.3, + "T2m": 14.19, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201119:1410", + "P": 2744.04, + "G(i)": 550.32, + "H_sun": 14.06, + "T2m": 14.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201119:1510", + "P": 83.76, + "G(i)": 28.86, + "H_sun": 6.1, + "T2m": 13.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201119:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.63, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201119:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201119:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.51, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201119:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201119:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201119:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.59, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201119:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201120:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201120:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201120:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.51, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201120:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201120:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201120:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201120:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201120:0710", + "P": 72.36, + "G(i)": 44.15, + "H_sun": 4.96, + "T2m": 3.91, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201120:0810", + "P": 1178.52, + "G(i)": 256.7, + "H_sun": 13.06, + "T2m": 4.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201120:0910", + "P": 2342.64, + "G(i)": 463.95, + "H_sun": 19.5, + "T2m": 7.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201120:1010", + "P": 492.3, + "G(i)": 110.33, + "H_sun": 23.75, + "T2m": 9.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201120:1110", + "P": 2776.68, + "G(i)": 558.68, + "H_sun": 25.34, + "T2m": 12.07, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201120:1210", + "P": 3823.56, + "G(i)": 792.65, + "H_sun": 24.07, + "T2m": 13.34, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201120:1310", + "P": 3626.1, + "G(i)": 745.75, + "H_sun": 20.11, + "T2m": 13.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201120:1410", + "P": 2898.24, + "G(i)": 582.69, + "H_sun": 13.89, + "T2m": 13.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201120:1510", + "P": 91.62, + "G(i)": 30.61, + "H_sun": 5.95, + "T2m": 12.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201120:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.0, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201120:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201120:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201120:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.15, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201120:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.79, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201120:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201120:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.26, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201120:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.85, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201121:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201121:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.76, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201121:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201121:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.81, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201121:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.96, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201121:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201121:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201121:0710", + "P": 87.0, + "G(i)": 33.95, + "H_sun": 4.74, + "T2m": 3.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201121:0810", + "P": 835.5, + "G(i)": 180.81, + "H_sun": 12.83, + "T2m": 4.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201121:0910", + "P": 1172.7, + "G(i)": 235.48, + "H_sun": 19.27, + "T2m": 6.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201121:1010", + "P": 2956.92, + "G(i)": 577.4, + "H_sun": 23.52, + "T2m": 8.71, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201121:1110", + "P": 3459.06, + "G(i)": 679.59, + "H_sun": 25.11, + "T2m": 9.47, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201121:1210", + "P": 3945.48, + "G(i)": 784.07, + "H_sun": 23.86, + "T2m": 9.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201121:1310", + "P": 3721.74, + "G(i)": 735.67, + "H_sun": 19.92, + "T2m": 9.74, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201121:1410", + "P": 2878.44, + "G(i)": 559.64, + "H_sun": 13.73, + "T2m": 9.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201121:1510", + "P": 93.6, + "G(i)": 30.61, + "H_sun": 5.81, + "T2m": 8.97, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201121:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201121:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201121:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201121:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201121:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201121:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201121:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.68, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201121:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.18, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201122:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201122:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.36, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201122:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.11, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201122:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201122:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201122:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201122:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:0710", + "P": 78.72, + "G(i)": 34.88, + "H_sun": 4.53, + "T2m": -1.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:0810", + "P": 1103.28, + "G(i)": 235.82, + "H_sun": 12.61, + "T2m": 0.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201122:0910", + "P": 2333.94, + "G(i)": 452.6, + "H_sun": 19.04, + "T2m": 3.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201122:1010", + "P": 3253.32, + "G(i)": 632.48, + "H_sun": 23.29, + "T2m": 5.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201122:1110", + "P": 3785.1, + "G(i)": 747.39, + "H_sun": 24.89, + "T2m": 6.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201122:1210", + "P": 3927.48, + "G(i)": 779.73, + "H_sun": 23.66, + "T2m": 7.4, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201122:1310", + "P": 3640.98, + "G(i)": 717.07, + "H_sun": 19.74, + "T2m": 7.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:1410", + "P": 2904.6, + "G(i)": 563.05, + "H_sun": 13.57, + "T2m": 8.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201122:1510", + "P": 90.42, + "G(i)": 29.73, + "H_sun": 5.68, + "T2m": 7.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201122:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201122:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201122:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201122:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201122:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.58, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201122:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201122:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201123:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201123:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.33, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201123:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.32, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201123:0710", + "P": 73.56, + "G(i)": 32.91, + "H_sun": 4.32, + "T2m": -1.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201123:0810", + "P": 1083.3, + "G(i)": 232.53, + "H_sun": 12.39, + "T2m": 0.01, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201123:0910", + "P": 2272.14, + "G(i)": 443.2, + "H_sun": 18.82, + "T2m": 3.16, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201123:1010", + "P": 3184.2, + "G(i)": 625.45, + "H_sun": 23.07, + "T2m": 5.36, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201123:1110", + "P": 3720.84, + "G(i)": 741.27, + "H_sun": 24.68, + "T2m": 6.86, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201123:1210", + "P": 3903.06, + "G(i)": 779.73, + "H_sun": 23.46, + "T2m": 7.94, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201123:1310", + "P": 3670.44, + "G(i)": 726.54, + "H_sun": 19.57, + "T2m": 8.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201123:1410", + "P": 2862.78, + "G(i)": 555.28, + "H_sun": 13.42, + "T2m": 8.6, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201123:1510", + "P": 90.3, + "G(i)": 29.73, + "H_sun": 5.55, + "T2m": 7.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201123:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201123:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201123:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201123:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.39, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201123:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201123:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201123:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201123:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201124:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201124:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201124:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.15, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201124:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.15, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201124:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.37, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201124:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.38, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201124:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201124:0710", + "P": 59.28, + "G(i)": 32.14, + "H_sun": 4.12, + "T2m": 0.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201124:0810", + "P": 968.4, + "G(i)": 208.8, + "H_sun": 12.18, + "T2m": 1.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201124:0910", + "P": 2186.7, + "G(i)": 427.38, + "H_sun": 18.6, + "T2m": 4.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201124:1010", + "P": 1528.08, + "G(i)": 300.26, + "H_sun": 22.85, + "T2m": 7.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201124:1110", + "P": 3656.52, + "G(i)": 728.97, + "H_sun": 24.47, + "T2m": 9.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1210", + "P": 3743.76, + "G(i)": 753.49, + "H_sun": 23.27, + "T2m": 10.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1310", + "P": 3526.86, + "G(i)": 706.35, + "H_sun": 19.4, + "T2m": 11.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201124:1410", + "P": 2783.1, + "G(i)": 549.01, + "H_sun": 13.28, + "T2m": 11.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1510", + "P": 92.82, + "G(i)": 30.61, + "H_sun": 5.43, + "T2m": 10.53, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201124:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201124:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201124:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201124:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201124:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201124:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201124:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201125:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201125:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201125:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201125:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201125:0710", + "P": 59.76, + "G(i)": 28.04, + "H_sun": 3.92, + "T2m": -0.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201125:0810", + "P": 945.78, + "G(i)": 204.34, + "H_sun": 11.97, + "T2m": 0.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201125:0910", + "P": 1933.56, + "G(i)": 377.52, + "H_sun": 18.39, + "T2m": 3.91, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201125:1010", + "P": 3123.3, + "G(i)": 613.71, + "H_sun": 22.64, + "T2m": 6.86, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:1110", + "P": 3628.32, + "G(i)": 726.47, + "H_sun": 24.27, + "T2m": 8.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:1210", + "P": 3482.04, + "G(i)": 702.61, + "H_sun": 23.09, + "T2m": 10.07, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201125:1310", + "P": 3551.04, + "G(i)": 719.31, + "H_sun": 19.24, + "T2m": 10.7, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201125:1410", + "P": 2703.36, + "G(i)": 534.95, + "H_sun": 13.14, + "T2m": 10.74, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201125:1510", + "P": 77.58, + "G(i)": 27.11, + "H_sun": 5.32, + "T2m": 10.21, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201125:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201125:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201125:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201125:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.66, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.07, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201126:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0710", + "P": 54.54, + "G(i)": 25.35, + "H_sun": 3.72, + "T2m": -0.24, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:0810", + "P": 972.9, + "G(i)": 211.22, + "H_sun": 11.77, + "T2m": 0.86, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201126:0910", + "P": 2185.26, + "G(i)": 426.86, + "H_sun": 18.18, + "T2m": 3.74, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:1010", + "P": 3097.62, + "G(i)": 606.74, + "H_sun": 22.43, + "T2m": 6.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201126:1110", + "P": 3630.48, + "G(i)": 726.35, + "H_sun": 24.08, + "T2m": 8.16, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201126:1210", + "P": 3891.0, + "G(i)": 794.07, + "H_sun": 22.91, + "T2m": 9.61, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201126:1310", + "P": 3458.16, + "G(i)": 697.18, + "H_sun": 19.09, + "T2m": 10.3, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201126:1410", + "P": 2779.02, + "G(i)": 549.0, + "H_sun": 13.01, + "T2m": 10.35, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:1510", + "P": 81.54, + "G(i)": 27.98, + "H_sun": 5.21, + "T2m": 9.87, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201126:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201126:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201126:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201126:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201126:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201126:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201126:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.07, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.77, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.32, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.46, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201127:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201127:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201127:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:0710", + "P": 46.26, + "G(i)": 23.63, + "H_sun": 3.52, + "T2m": 1.73, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:0810", + "P": 479.4, + "G(i)": 108.16, + "H_sun": 11.57, + "T2m": 2.83, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:0910", + "P": 1447.44, + "G(i)": 286.01, + "H_sun": 17.98, + "T2m": 4.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201127:1010", + "P": 2674.26, + "G(i)": 521.3, + "H_sun": 22.23, + "T2m": 6.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:1110", + "P": 2612.7, + "G(i)": 512.39, + "H_sun": 23.89, + "T2m": 8.2, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201127:1210", + "P": 990.9, + "G(i)": 202.58, + "H_sun": 22.74, + "T2m": 8.92, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:1310", + "P": 465.12, + "G(i)": 104.89, + "H_sun": 18.94, + "T2m": 9.4, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:1410", + "P": 1807.08, + "G(i)": 354.36, + "H_sun": 12.89, + "T2m": 9.36, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:1510", + "P": 85.68, + "G(i)": 28.86, + "H_sun": 5.1, + "T2m": 9.09, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201127:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.81, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201127:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.65, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201127:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201127:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201127:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201127:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.93, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201127:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201128:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201128:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201128:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201128:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201128:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201128:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201128:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201128:0710", + "P": 25.92, + "G(i)": 14.59, + "H_sun": 3.33, + "T2m": 5.37, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201128:0810", + "P": 99.48, + "G(i)": 31.52, + "H_sun": 11.37, + "T2m": 5.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:0910", + "P": 62.28, + "G(i)": 23.18, + "H_sun": 17.78, + "T2m": 6.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201128:1010", + "P": 709.68, + "G(i)": 149.11, + "H_sun": 22.04, + "T2m": 6.7, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201128:1110", + "P": 1040.16, + "G(i)": 210.43, + "H_sun": 23.71, + "T2m": 7.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201128:1210", + "P": 940.02, + "G(i)": 191.94, + "H_sun": 22.58, + "T2m": 8.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201128:1310", + "P": 321.72, + "G(i)": 76.95, + "H_sun": 18.8, + "T2m": 8.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201128:1410", + "P": 289.86, + "G(i)": 70.7, + "H_sun": 12.77, + "T2m": 8.5, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201128:1510", + "P": 70.74, + "G(i)": 25.36, + "H_sun": 5.01, + "T2m": 8.39, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201128:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201128:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201128:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.36, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201128:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201128:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201129:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201129:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.31, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201129:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201129:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201129:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201129:0710", + "P": 0.06, + "G(i)": 5.56, + "H_sun": 3.15, + "T2m": 3.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:0810", + "P": 224.28, + "G(i)": 57.18, + "H_sun": 11.18, + "T2m": 4.63, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201129:0910", + "P": 553.14, + "G(i)": 120.23, + "H_sun": 17.59, + "T2m": 6.73, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201129:1010", + "P": 1010.46, + "G(i)": 205.36, + "H_sun": 21.85, + "T2m": 8.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:1110", + "P": 2257.44, + "G(i)": 441.63, + "H_sun": 23.53, + "T2m": 9.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201129:1210", + "P": 3330.24, + "G(i)": 662.37, + "H_sun": 22.42, + "T2m": 10.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201129:1310", + "P": 3338.64, + "G(i)": 663.4, + "H_sun": 18.66, + "T2m": 11.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201129:1410", + "P": 855.48, + "G(i)": 176.93, + "H_sun": 12.66, + "T2m": 11.19, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:1510", + "P": 58.92, + "G(i)": 22.74, + "H_sun": 4.92, + "T2m": 10.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.46, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201129:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201129:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.84, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201129:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201129:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201129:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.02, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201130:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201130:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201130:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201130:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201130:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:0710", + "P": 4.74, + "G(i)": 7.42, + "H_sun": 2.96, + "T2m": 1.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201130:0810", + "P": 296.22, + "G(i)": 71.27, + "H_sun": 11.0, + "T2m": 2.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201130:0910", + "P": 279.96, + "G(i)": 67.68, + "H_sun": 17.4, + "T2m": 4.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201130:1010", + "P": 326.22, + "G(i)": 76.95, + "H_sun": 21.67, + "T2m": 5.51, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201130:1110", + "P": 368.22, + "G(i)": 85.29, + "H_sun": 23.36, + "T2m": 6.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201130:1210", + "P": 356.76, + "G(i)": 83.44, + "H_sun": 22.27, + "T2m": 7.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1310", + "P": 274.5, + "G(i)": 67.68, + "H_sun": 18.54, + "T2m": 8.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1410", + "P": 154.62, + "G(i)": 43.57, + "H_sun": 12.56, + "T2m": 8.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1510", + "P": 49.08, + "G(i)": 20.11, + "H_sun": 4.84, + "T2m": 7.68, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.94, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201130:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.14, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201130:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.3, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201130:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201130:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201130:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201130:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201201:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201201:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201201:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201201:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201201:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201201:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201201:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201201:0710", + "P": 26.58, + "G(i)": 15.94, + "H_sun": 2.78, + "T2m": 2.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201201:0810", + "P": 296.94, + "G(i)": 71.34, + "H_sun": 10.82, + "T2m": 2.52, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201201:0910", + "P": 1479.6, + "G(i)": 289.31, + "H_sun": 17.22, + "T2m": 3.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201201:1010", + "P": 299.4, + "G(i)": 71.39, + "H_sun": 21.5, + "T2m": 4.24, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201201:1110", + "P": 198.78, + "G(i)": 51.92, + "H_sun": 23.2, + "T2m": 4.79, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201201:1210", + "P": 193.62, + "G(i)": 50.99, + "H_sun": 22.13, + "T2m": 5.37, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20201201:1310", + "P": 78.66, + "G(i)": 26.89, + "H_sun": 18.42, + "T2m": 5.73, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20201201:1410", + "P": 646.32, + "G(i)": 134.93, + "H_sun": 12.46, + "T2m": 5.69, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20201201:1510", + "P": 0.0, + "G(i)": 4.37, + "H_sun": 4.76, + "T2m": 5.28, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20201201:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.77, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201201:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.51, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201201:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201201:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201201:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.26, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201201:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201201:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201201:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.28, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20201202:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201202:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201202:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201202:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201202:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201202:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.46, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201202:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.39, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201202:0710", + "P": 0.0, + "G(i)": 4.64, + "H_sun": 2.61, + "T2m": 1.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201202:0810", + "P": 22.86, + "G(i)": 12.98, + "H_sun": 10.64, + "T2m": 1.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201202:0910", + "P": 386.58, + "G(i)": 87.08, + "H_sun": 17.05, + "T2m": 1.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201202:1010", + "P": 173.4, + "G(i)": 46.36, + "H_sun": 21.33, + "T2m": 1.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201202:1110", + "P": 356.28, + "G(i)": 81.59, + "H_sun": 23.04, + "T2m": 2.36, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201202:1210", + "P": 701.34, + "G(i)": 144.57, + "H_sun": 22.0, + "T2m": 2.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201202:1310", + "P": 163.68, + "G(i)": 44.5, + "H_sun": 18.31, + "T2m": 2.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201202:1410", + "P": 299.1, + "G(i)": 70.83, + "H_sun": 12.37, + "T2m": 2.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201202:1510", + "P": 0.0, + "G(i)": 4.37, + "H_sun": 4.69, + "T2m": 2.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201202:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201202:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201202:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201202:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.55, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201202:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201202:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201202:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.4, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201202:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201203:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201203:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201203:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201203:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.7, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201203:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201203:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201203:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201203:0710", + "P": 10.62, + "G(i)": 9.27, + "H_sun": 2.44, + "T2m": -2.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201203:0810", + "P": 514.38, + "G(i)": 114.88, + "H_sun": 10.47, + "T2m": -1.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201203:0910", + "P": 712.56, + "G(i)": 146.78, + "H_sun": 16.88, + "T2m": 1.33, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201203:1010", + "P": 998.76, + "G(i)": 199.48, + "H_sun": 21.16, + "T2m": 3.79, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201203:1110", + "P": 936.12, + "G(i)": 189.14, + "H_sun": 22.9, + "T2m": 5.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201203:1210", + "P": 772.56, + "G(i)": 159.82, + "H_sun": 21.87, + "T2m": 6.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201203:1310", + "P": 744.18, + "G(i)": 154.38, + "H_sun": 18.2, + "T2m": 6.82, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201203:1410", + "P": 330.54, + "G(i)": 77.8, + "H_sun": 12.29, + "T2m": 6.72, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201203:1510", + "P": 60.48, + "G(i)": 22.74, + "H_sun": 4.63, + "T2m": 5.97, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201203:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.7, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201203:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.07, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201203:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201203:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.51, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201203:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201203:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.15, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201203:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201203:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201204:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.03, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201204:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201204:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201204:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201204:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201204:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201204:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201204:0810", + "P": 115.14, + "G(i)": 34.3, + "H_sun": 10.3, + "T2m": 0.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201204:0910", + "P": 245.52, + "G(i)": 60.26, + "H_sun": 16.71, + "T2m": 0.93, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201204:1010", + "P": 240.42, + "G(i)": 59.33, + "H_sun": 21.01, + "T2m": 1.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:1110", + "P": 150.96, + "G(i)": 41.72, + "H_sun": 22.75, + "T2m": 1.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201204:1210", + "P": 468.72, + "G(i)": 101.98, + "H_sun": 21.75, + "T2m": 1.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201204:1310", + "P": 206.82, + "G(i)": 52.85, + "H_sun": 18.1, + "T2m": 1.39, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201204:1410", + "P": 503.7, + "G(i)": 107.55, + "H_sun": 12.21, + "T2m": 1.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201204:1510", + "P": 69.78, + "G(i)": 24.48, + "H_sun": 4.57, + "T2m": 1.26, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201204:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201204:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201204:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201204:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201204:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.03, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201205:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201205:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.85, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201205:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201205:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201205:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201205:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201205:0810", + "P": 48.78, + "G(i)": 19.47, + "H_sun": 10.14, + "T2m": -0.76, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201205:0910", + "P": 64.32, + "G(i)": 23.18, + "H_sun": 16.56, + "T2m": 0.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201205:1010", + "P": 236.58, + "G(i)": 58.41, + "H_sun": 20.86, + "T2m": 0.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201205:1110", + "P": 279.24, + "G(i)": 66.75, + "H_sun": 22.62, + "T2m": 1.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201205:1210", + "P": 197.1, + "G(i)": 50.99, + "H_sun": 21.63, + "T2m": 1.7, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201205:1310", + "P": 215.94, + "G(i)": 54.7, + "H_sun": 18.01, + "T2m": 1.79, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201205:1410", + "P": 173.58, + "G(i)": 46.36, + "H_sun": 12.14, + "T2m": 1.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201205:1510", + "P": 54.48, + "G(i)": 20.99, + "H_sun": 4.52, + "T2m": 1.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201205:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201205:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201205:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201205:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201205:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201205:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.58, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201206:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201206:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201206:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.57, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201206:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201206:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201206:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.22, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201206:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.25, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201206:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.9, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201206:0810", + "P": 635.4, + "G(i)": 143.54, + "H_sun": 9.99, + "T2m": 1.89, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201206:0910", + "P": 1436.16, + "G(i)": 281.55, + "H_sun": 16.4, + "T2m": 2.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201206:1010", + "P": 880.08, + "G(i)": 177.77, + "H_sun": 20.72, + "T2m": 3.76, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201206:1110", + "P": 880.14, + "G(i)": 178.24, + "H_sun": 22.49, + "T2m": 4.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201206:1210", + "P": 652.68, + "G(i)": 137.49, + "H_sun": 21.52, + "T2m": 5.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201206:1310", + "P": 1301.22, + "G(i)": 253.91, + "H_sun": 17.93, + "T2m": 5.85, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201206:1410", + "P": 1979.58, + "G(i)": 377.7, + "H_sun": 12.08, + "T2m": 5.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201206:1510", + "P": 42.72, + "G(i)": 18.36, + "H_sun": 4.48, + "T2m": 5.09, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201206:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201206:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201206:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201206:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201206:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201206:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201206:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201206:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.51, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201207:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201207:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.61, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201207:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201207:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201207:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201207:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201207:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201207:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201207:0810", + "P": 300.78, + "G(i)": 72.28, + "H_sun": 9.84, + "T2m": 0.9, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201207:0910", + "P": 277.98, + "G(i)": 66.75, + "H_sun": 16.26, + "T2m": 1.73, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201207:1010", + "P": 824.46, + "G(i)": 166.86, + "H_sun": 20.58, + "T2m": 2.29, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201207:1110", + "P": 1058.7, + "G(i)": 208.78, + "H_sun": 22.37, + "T2m": 2.89, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201207:1210", + "P": 149.4, + "G(i)": 41.72, + "H_sun": 21.42, + "T2m": 3.33, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201207:1310", + "P": 176.46, + "G(i)": 47.28, + "H_sun": 17.85, + "T2m": 3.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201207:1410", + "P": 195.0, + "G(i)": 50.99, + "H_sun": 12.03, + "T2m": 3.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201207:1510", + "P": 64.98, + "G(i)": 23.61, + "H_sun": 4.44, + "T2m": 3.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201207:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201207:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201207:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201207:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.05, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201208:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201208:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201208:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201208:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201208:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201208:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.59, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201208:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201208:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201208:0810", + "P": 105.72, + "G(i)": 32.45, + "H_sun": 9.69, + "T2m": 2.04, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201208:0910", + "P": 635.52, + "G(i)": 133.23, + "H_sun": 16.12, + "T2m": 2.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201208:1010", + "P": 154.26, + "G(i)": 42.65, + "H_sun": 20.45, + "T2m": 2.92, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201208:1110", + "P": 858.6, + "G(i)": 173.25, + "H_sun": 22.26, + "T2m": 3.45, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201208:1210", + "P": 363.96, + "G(i)": 83.44, + "H_sun": 21.33, + "T2m": 3.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201208:1310", + "P": 623.16, + "G(i)": 130.91, + "H_sun": 17.78, + "T2m": 3.96, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201208:1410", + "P": 190.14, + "G(i)": 50.06, + "H_sun": 11.98, + "T2m": 3.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201208:1510", + "P": 3.54, + "G(i)": 7.0, + "H_sun": 4.41, + "T2m": 3.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201208:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.55, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201208:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.58, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201208:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.41, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201208:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.87, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201208:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201208:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.15, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201208:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201208:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201209:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201209:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201209:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201209:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201209:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.98, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201209:0810", + "P": 158.58, + "G(i)": 43.57, + "H_sun": 9.55, + "T2m": 3.33, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201209:0910", + "P": 299.88, + "G(i)": 71.39, + "H_sun": 15.99, + "T2m": 3.96, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201209:1010", + "P": 766.02, + "G(i)": 158.11, + "H_sun": 20.33, + "T2m": 5.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:1110", + "P": 615.48, + "G(i)": 131.53, + "H_sun": 22.15, + "T2m": 6.73, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201209:1210", + "P": 526.62, + "G(i)": 115.64, + "H_sun": 21.25, + "T2m": 7.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201209:1310", + "P": 260.58, + "G(i)": 64.9, + "H_sun": 17.72, + "T2m": 8.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201209:1410", + "P": 263.88, + "G(i)": 65.36, + "H_sun": 11.94, + "T2m": 7.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201209:1510", + "P": 49.26, + "G(i)": 20.11, + "H_sun": 4.39, + "T2m": 7.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201209:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201209:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201209:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201209:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201209:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201209:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201209:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201209:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201210:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201210:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201210:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201210:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.48, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.98, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201210:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.81, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201210:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201210:0810", + "P": 396.9, + "G(i)": 93.55, + "H_sun": 9.42, + "T2m": 2.24, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201210:0910", + "P": 600.48, + "G(i)": 127.71, + "H_sun": 15.86, + "T2m": 3.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201210:1010", + "P": 1285.62, + "G(i)": 253.09, + "H_sun": 20.22, + "T2m": 4.83, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201210:1110", + "P": 1519.38, + "G(i)": 297.44, + "H_sun": 22.06, + "T2m": 6.08, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:1210", + "P": 2460.96, + "G(i)": 478.11, + "H_sun": 21.17, + "T2m": 6.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201210:1310", + "P": 813.9, + "G(i)": 167.98, + "H_sun": 17.66, + "T2m": 7.43, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201210:1410", + "P": 268.74, + "G(i)": 66.31, + "H_sun": 11.9, + "T2m": 7.51, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201210:1510", + "P": 52.8, + "G(i)": 20.99, + "H_sun": 4.37, + "T2m": 7.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201210:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201210:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.61, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201210:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201210:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201210:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.91, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.36, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201210:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201211:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201211:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201211:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.19, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201211:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201211:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.26, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201211:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.71, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201211:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.4, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201211:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201211:0810", + "P": 245.64, + "G(i)": 61.58, + "H_sun": 9.29, + "T2m": 1.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201211:0910", + "P": 445.08, + "G(i)": 98.38, + "H_sun": 15.74, + "T2m": 2.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201211:1010", + "P": 631.26, + "G(i)": 132.53, + "H_sun": 20.11, + "T2m": 2.96, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201211:1110", + "P": 593.88, + "G(i)": 125.96, + "H_sun": 21.96, + "T2m": 3.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201211:1210", + "P": 407.52, + "G(i)": 91.78, + "H_sun": 21.1, + "T2m": 4.0, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201211:1310", + "P": 448.92, + "G(i)": 99.49, + "H_sun": 17.61, + "T2m": 4.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201211:1410", + "P": 750.54, + "G(i)": 153.09, + "H_sun": 11.87, + "T2m": 4.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201211:1510", + "P": 5.88, + "G(i)": 7.87, + "H_sun": 4.36, + "T2m": 4.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201211:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201211:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201211:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201211:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201211:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201211:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201211:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201211:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.04, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201212:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201212:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201212:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201212:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201212:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201212:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201212:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201212:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201212:0810", + "P": 185.94, + "G(i)": 48.99, + "H_sun": 9.17, + "T2m": 1.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201212:0910", + "P": 446.7, + "G(i)": 98.4, + "H_sun": 15.63, + "T2m": 2.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201212:1010", + "P": 870.6, + "G(i)": 175.77, + "H_sun": 20.01, + "T2m": 3.24, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201212:1110", + "P": 1595.94, + "G(i)": 307.85, + "H_sun": 21.88, + "T2m": 4.22, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201212:1210", + "P": 2467.62, + "G(i)": 473.0, + "H_sun": 21.04, + "T2m": 5.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201212:1310", + "P": 1206.6, + "G(i)": 237.61, + "H_sun": 17.57, + "T2m": 5.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201212:1410", + "P": 1516.56, + "G(i)": 293.18, + "H_sun": 11.85, + "T2m": 6.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201212:1510", + "P": 42.54, + "G(i)": 18.36, + "H_sun": 4.36, + "T2m": 5.76, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201212:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201212:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201212:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.87, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201212:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201212:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201212:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201212:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201212:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201213:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201213:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.55, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.8, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.02, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0810", + "P": 779.76, + "G(i)": 180.63, + "H_sun": 9.05, + "T2m": 0.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201213:0910", + "P": 2052.36, + "G(i)": 401.77, + "H_sun": 15.52, + "T2m": 2.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201213:1010", + "P": 3069.9, + "G(i)": 595.78, + "H_sun": 19.91, + "T2m": 4.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201213:1110", + "P": 3630.72, + "G(i)": 716.09, + "H_sun": 21.81, + "T2m": 6.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201213:1210", + "P": 3879.78, + "G(i)": 775.01, + "H_sun": 20.98, + "T2m": 7.61, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201213:1310", + "P": 3605.04, + "G(i)": 718.07, + "H_sun": 17.54, + "T2m": 8.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201213:1410", + "P": 2953.32, + "G(i)": 578.18, + "H_sun": 11.84, + "T2m": 8.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:1510", + "P": 52.56, + "G(i)": 20.99, + "H_sun": 4.36, + "T2m": 7.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201213:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201213:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201213:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201213:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201213:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201213:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201213:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201213:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201214:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201214:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201214:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201214:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201214:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.89, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201214:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.14, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201214:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.98, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201214:0810", + "P": 616.32, + "G(i)": 143.98, + "H_sun": 8.94, + "T2m": 1.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201214:0910", + "P": 1924.86, + "G(i)": 378.27, + "H_sun": 15.42, + "T2m": 3.05, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:1010", + "P": 2864.76, + "G(i)": 556.15, + "H_sun": 19.82, + "T2m": 5.15, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:1110", + "P": 2258.04, + "G(i)": 437.74, + "H_sun": 21.74, + "T2m": 6.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:1210", + "P": 3372.84, + "G(i)": 665.23, + "H_sun": 20.94, + "T2m": 7.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201214:1310", + "P": 3391.62, + "G(i)": 669.03, + "H_sun": 17.51, + "T2m": 8.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201214:1410", + "P": 2204.22, + "G(i)": 428.06, + "H_sun": 11.83, + "T2m": 8.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201214:1510", + "P": 48.96, + "G(i)": 20.11, + "H_sun": 4.37, + "T2m": 7.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201214:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201214:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.38, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201214:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201214:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201214:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201214:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.66, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201214:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.17, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201214:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201215:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201215:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201215:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201215:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.95, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201215:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201215:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201215:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201215:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201215:0810", + "P": 432.78, + "G(i)": 102.7, + "H_sun": 8.84, + "T2m": 1.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201215:0910", + "P": 1052.16, + "G(i)": 211.28, + "H_sun": 15.32, + "T2m": 3.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201215:1010", + "P": 1587.78, + "G(i)": 308.3, + "H_sun": 19.74, + "T2m": 5.0, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201215:1110", + "P": 1393.92, + "G(i)": 273.45, + "H_sun": 21.68, + "T2m": 6.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1210", + "P": 1148.64, + "G(i)": 229.24, + "H_sun": 20.9, + "T2m": 7.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201215:1310", + "P": 2081.28, + "G(i)": 403.43, + "H_sun": 17.5, + "T2m": 7.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201215:1410", + "P": 408.42, + "G(i)": 92.95, + "H_sun": 11.84, + "T2m": 8.13, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1510", + "P": 56.16, + "G(i)": 21.86, + "H_sun": 4.39, + "T2m": 7.87, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201215:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201215:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201215:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201215:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201216:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.09, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201216:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201216:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201216:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201216:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201216:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201216:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201216:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201216:0810", + "P": 228.72, + "G(i)": 58.94, + "H_sun": 8.74, + "T2m": 4.13, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201216:0910", + "P": 342.06, + "G(i)": 79.76, + "H_sun": 15.24, + "T2m": 4.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201216:1010", + "P": 981.42, + "G(i)": 198.22, + "H_sun": 19.67, + "T2m": 5.79, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201216:1110", + "P": 1157.7, + "G(i)": 231.14, + "H_sun": 21.62, + "T2m": 6.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201216:1210", + "P": 899.28, + "G(i)": 183.86, + "H_sun": 20.86, + "T2m": 7.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201216:1310", + "P": 2087.82, + "G(i)": 404.83, + "H_sun": 17.49, + "T2m": 7.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201216:1410", + "P": 606.24, + "G(i)": 129.12, + "H_sun": 11.84, + "T2m": 7.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201216:1510", + "P": 63.78, + "G(i)": 23.61, + "H_sun": 4.41, + "T2m": 7.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201216:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201216:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201216:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201216:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201216:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.2, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201216:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201216:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201216:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201217:0810", + "P": 564.36, + "G(i)": 134.59, + "H_sun": 8.65, + "T2m": 3.95, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0910", + "P": 1930.74, + "G(i)": 382.47, + "H_sun": 15.16, + "T2m": 5.53, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201217:1010", + "P": 2859.66, + "G(i)": 554.59, + "H_sun": 19.61, + "T2m": 6.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201217:1110", + "P": 3341.76, + "G(i)": 655.4, + "H_sun": 21.58, + "T2m": 8.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201217:1210", + "P": 3702.66, + "G(i)": 737.11, + "H_sun": 20.84, + "T2m": 8.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201217:1310", + "P": 3452.76, + "G(i)": 687.91, + "H_sun": 17.48, + "T2m": 9.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201217:1410", + "P": 3173.1, + "G(i)": 628.42, + "H_sun": 11.86, + "T2m": 9.65, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201217:1510", + "P": 41.64, + "G(i)": 18.36, + "H_sun": 4.44, + "T2m": 9.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201217:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201217:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201217:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201217:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201217:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201217:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201217:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201217:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201218:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201218:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201218:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.81, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201218:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.61, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201218:0810", + "P": 400.92, + "G(i)": 96.82, + "H_sun": 8.56, + "T2m": 2.81, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201218:0910", + "P": 987.06, + "G(i)": 200.05, + "H_sun": 15.08, + "T2m": 3.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201218:1010", + "P": 1347.42, + "G(i)": 264.8, + "H_sun": 19.55, + "T2m": 5.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:1110", + "P": 1575.3, + "G(i)": 308.13, + "H_sun": 21.54, + "T2m": 6.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1210", + "P": 2713.56, + "G(i)": 530.08, + "H_sun": 20.82, + "T2m": 8.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1310", + "P": 3351.06, + "G(i)": 664.01, + "H_sun": 17.49, + "T2m": 8.93, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1410", + "P": 2838.9, + "G(i)": 556.83, + "H_sun": 11.88, + "T2m": 9.19, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1510", + "P": 59.46, + "G(i)": 22.74, + "H_sun": 4.48, + "T2m": 8.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201218:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201218:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201218:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201218:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201218:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201218:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201218:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201218:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201219:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201219:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201219:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201219:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201219:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201219:0810", + "P": 411.06, + "G(i)": 100.24, + "H_sun": 8.49, + "T2m": 4.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0910", + "P": 754.44, + "G(i)": 157.69, + "H_sun": 15.02, + "T2m": 5.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201219:1010", + "P": 295.68, + "G(i)": 71.39, + "H_sun": 19.5, + "T2m": 6.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201219:1110", + "P": 572.46, + "G(i)": 124.14, + "H_sun": 21.51, + "T2m": 7.5, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201219:1210", + "P": 270.0, + "G(i)": 66.75, + "H_sun": 20.81, + "T2m": 7.74, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201219:1310", + "P": 375.18, + "G(i)": 87.15, + "H_sun": 17.5, + "T2m": 7.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201219:1410", + "P": 244.62, + "G(i)": 61.62, + "H_sun": 11.91, + "T2m": 7.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201219:1510", + "P": 67.38, + "G(i)": 24.48, + "H_sun": 4.52, + "T2m": 7.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201219:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201219:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201219:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.02, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201219:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201219:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201219:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.97, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201220:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201220:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.1, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201220:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.21, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201220:0810", + "P": 99.18, + "G(i)": 31.52, + "H_sun": 8.41, + "T2m": 6.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201220:0910", + "P": 215.52, + "G(i)": 55.63, + "H_sun": 14.96, + "T2m": 6.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201220:1010", + "P": 309.24, + "G(i)": 74.17, + "H_sun": 19.46, + "T2m": 7.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201220:1110", + "P": 247.32, + "G(i)": 62.12, + "H_sun": 21.48, + "T2m": 7.15, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201220:1210", + "P": 357.06, + "G(i)": 83.44, + "H_sun": 20.81, + "T2m": 7.26, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201220:1310", + "P": 146.22, + "G(i)": 41.72, + "H_sun": 17.51, + "T2m": 7.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201220:1410", + "P": 305.88, + "G(i)": 73.31, + "H_sun": 11.94, + "T2m": 7.25, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:1510", + "P": 42.18, + "G(i)": 18.36, + "H_sun": 4.57, + "T2m": 7.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201220:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.22, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201220:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201220:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201221:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201221:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201221:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201221:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201221:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.93, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201221:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201221:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201221:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201221:0810", + "P": 154.74, + "G(i)": 43.45, + "H_sun": 8.35, + "T2m": 5.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201221:0910", + "P": 771.06, + "G(i)": 160.69, + "H_sun": 14.9, + "T2m": 5.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201221:1010", + "P": 286.44, + "G(i)": 69.53, + "H_sun": 19.42, + "T2m": 6.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201221:1110", + "P": 732.42, + "G(i)": 153.42, + "H_sun": 21.47, + "T2m": 7.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201221:1210", + "P": 723.48, + "G(i)": 151.89, + "H_sun": 20.82, + "T2m": 7.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201221:1310", + "P": 1512.06, + "G(i)": 295.76, + "H_sun": 17.54, + "T2m": 7.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201221:1410", + "P": 962.52, + "G(i)": 194.14, + "H_sun": 11.99, + "T2m": 7.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201221:1510", + "P": 63.6, + "G(i)": 23.61, + "H_sun": 4.63, + "T2m": 7.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201221:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201221:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201221:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201221:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201221:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201221:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201221:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201221:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201222:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201222:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.69, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201222:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201222:0810", + "P": 250.32, + "G(i)": 64.34, + "H_sun": 8.29, + "T2m": 4.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201222:0910", + "P": 478.8, + "G(i)": 106.17, + "H_sun": 14.86, + "T2m": 5.91, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:1010", + "P": 294.54, + "G(i)": 71.39, + "H_sun": 19.39, + "T2m": 7.26, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201222:1110", + "P": 1042.44, + "G(i)": 211.02, + "H_sun": 21.46, + "T2m": 8.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201222:1210", + "P": 488.64, + "G(i)": 109.16, + "H_sun": 20.83, + "T2m": 9.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:1310", + "P": 482.76, + "G(i)": 108.17, + "H_sun": 17.57, + "T2m": 9.93, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201222:1410", + "P": 1145.94, + "G(i)": 229.89, + "H_sun": 12.04, + "T2m": 10.42, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201222:1510", + "P": 66.42, + "G(i)": 24.48, + "H_sun": 4.69, + "T2m": 10.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201222:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201222:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201222:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201222:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201222:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201222:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201222:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201223:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201223:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201223:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201223:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.6, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201223:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201223:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.7, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201223:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201223:0810", + "P": 91.2, + "G(i)": 29.67, + "H_sun": 8.23, + "T2m": 5.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201223:0910", + "P": 291.18, + "G(i)": 70.46, + "H_sun": 14.82, + "T2m": 6.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201223:1010", + "P": 490.8, + "G(i)": 108.68, + "H_sun": 19.37, + "T2m": 7.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:1110", + "P": 1535.1, + "G(i)": 300.94, + "H_sun": 21.46, + "T2m": 8.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201223:1210", + "P": 264.36, + "G(i)": 65.82, + "H_sun": 20.85, + "T2m": 8.71, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201223:1310", + "P": 106.08, + "G(i)": 33.38, + "H_sun": 17.61, + "T2m": 9.17, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201223:1410", + "P": 123.18, + "G(i)": 37.08, + "H_sun": 12.09, + "T2m": 9.12, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201223:1510", + "P": 35.04, + "G(i)": 16.61, + "H_sun": 4.76, + "T2m": 8.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201223:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201223:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201223:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.66, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201223:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.31, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201223:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201223:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.97, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201224:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201224:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201224:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201224:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201224:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201224:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.48, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201224:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.3, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201224:0810", + "P": 175.08, + "G(i)": 47.98, + "H_sun": 8.19, + "T2m": 5.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201224:0910", + "P": 253.26, + "G(i)": 63.04, + "H_sun": 14.79, + "T2m": 6.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201224:1010", + "P": 1319.16, + "G(i)": 261.43, + "H_sun": 19.36, + "T2m": 7.09, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:1110", + "P": 360.9, + "G(i)": 84.37, + "H_sun": 21.47, + "T2m": 7.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201224:1210", + "P": 1960.32, + "G(i)": 380.99, + "H_sun": 20.88, + "T2m": 8.58, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201224:1310", + "P": 240.54, + "G(i)": 61.19, + "H_sun": 17.66, + "T2m": 9.01, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201224:1410", + "P": 180.6, + "G(i)": 49.14, + "H_sun": 12.15, + "T2m": 9.26, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201224:1510", + "P": 70.56, + "G(i)": 25.36, + "H_sun": 4.83, + "T2m": 9.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201224:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.27, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201224:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201224:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201224:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201224:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201224:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.0, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.83, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201225:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201225:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.46, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201225:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201225:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201225:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201225:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201225:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201225:0810", + "P": 10.14, + "G(i)": 9.27, + "H_sun": 8.15, + "T2m": 3.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:0910", + "P": 721.92, + "G(i)": 150.72, + "H_sun": 14.76, + "T2m": 4.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201225:1010", + "P": 99.54, + "G(i)": 31.52, + "H_sun": 19.35, + "T2m": 5.6, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201225:1110", + "P": 160.02, + "G(i)": 44.5, + "H_sun": 21.48, + "T2m": 6.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201225:1210", + "P": 521.46, + "G(i)": 114.72, + "H_sun": 20.92, + "T2m": 7.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201225:1310", + "P": 316.32, + "G(i)": 76.02, + "H_sun": 17.72, + "T2m": 8.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:1410", + "P": 313.5, + "G(i)": 75.02, + "H_sun": 12.22, + "T2m": 8.35, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201225:1510", + "P": 75.12, + "G(i)": 26.23, + "H_sun": 4.91, + "T2m": 7.22, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20201225:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201225:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201225:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201225:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.54, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201225:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201225:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201225:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201226:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201226:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201226:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201226:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201226:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201226:0810", + "P": 721.44, + "G(i)": 176.32, + "H_sun": 8.11, + "T2m": 1.31, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201226:0910", + "P": 2026.38, + "G(i)": 400.71, + "H_sun": 14.74, + "T2m": 2.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201226:1010", + "P": 3070.74, + "G(i)": 601.12, + "H_sun": 19.35, + "T2m": 5.31, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201226:1110", + "P": 3714.36, + "G(i)": 734.09, + "H_sun": 21.51, + "T2m": 6.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201226:1210", + "P": 3900.3, + "G(i)": 774.36, + "H_sun": 20.96, + "T2m": 7.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201226:1310", + "P": 3847.14, + "G(i)": 763.31, + "H_sun": 17.78, + "T2m": 7.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201226:1410", + "P": 3212.76, + "G(i)": 626.58, + "H_sun": 12.3, + "T2m": 7.75, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201226:1510", + "P": 35.4, + "G(i)": 16.61, + "H_sun": 5.0, + "T2m": 7.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201226:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.1, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.9, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201226:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201226:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.79, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201226:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201226:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201226:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201226:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201227:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201227:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.97, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201227:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201227:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201227:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.98, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201227:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201227:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.11, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201227:0810", + "P": 421.56, + "G(i)": 99.94, + "H_sun": 8.09, + "T2m": -3.44, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201227:0910", + "P": 931.98, + "G(i)": 185.88, + "H_sun": 14.73, + "T2m": -0.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:1010", + "P": 1234.02, + "G(i)": 238.21, + "H_sun": 19.36, + "T2m": 0.57, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201227:1110", + "P": 850.68, + "G(i)": 170.61, + "H_sun": 21.54, + "T2m": 1.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201227:1210", + "P": 1733.1, + "G(i)": 328.0, + "H_sun": 21.01, + "T2m": 1.87, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201227:1310", + "P": 1440.36, + "G(i)": 275.11, + "H_sun": 17.85, + "T2m": 2.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:1410", + "P": 1399.08, + "G(i)": 266.26, + "H_sun": 12.38, + "T2m": 1.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201227:1510", + "P": 97.56, + "G(i)": 30.61, + "H_sun": 5.09, + "T2m": 1.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201227:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.42, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201227:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201227:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201227:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.82, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201227:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201227:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.01, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201227:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201228:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201228:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201228:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.92, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201228:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.82, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20201228:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.03, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201228:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.11, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201228:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.44, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201228:0810", + "P": 134.7, + "G(i)": 38.01, + "H_sun": 8.07, + "T2m": -1.41, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201228:0910", + "P": 505.68, + "G(i)": 107.94, + "H_sun": 14.73, + "T2m": -0.84, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201228:1010", + "P": 738.84, + "G(i)": 149.59, + "H_sun": 19.38, + "T2m": -0.03, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201228:1110", + "P": 1205.34, + "G(i)": 232.38, + "H_sun": 21.58, + "T2m": 0.63, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201228:1210", + "P": 1390.5, + "G(i)": 265.9, + "H_sun": 21.07, + "T2m": 0.99, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201228:1310", + "P": 1582.56, + "G(i)": 300.04, + "H_sun": 17.93, + "T2m": 1.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201228:1410", + "P": 2229.66, + "G(i)": 416.0, + "H_sun": 12.47, + "T2m": 1.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201228:1510", + "P": 74.28, + "G(i)": 25.36, + "H_sun": 5.19, + "T2m": -0.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201228:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201228:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.92, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201228:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.3, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201228:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201228:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201229:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.38, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201229:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201229:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -6.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201229:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -6.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201229:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -6.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201229:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201229:0810", + "P": 315.54, + "G(i)": 76.51, + "H_sun": 8.05, + "T2m": -4.33, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201229:0910", + "P": 1761.54, + "G(i)": 338.07, + "H_sun": 14.73, + "T2m": -3.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:1010", + "P": 496.74, + "G(i)": 105.86, + "H_sun": 19.4, + "T2m": -1.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201229:1110", + "P": 349.74, + "G(i)": 79.73, + "H_sun": 21.62, + "T2m": 0.27, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201229:1210", + "P": 1173.12, + "G(i)": 227.52, + "H_sun": 21.14, + "T2m": 1.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201229:1310", + "P": 2631.12, + "G(i)": 495.97, + "H_sun": 18.01, + "T2m": 1.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201229:1410", + "P": 1482.24, + "G(i)": 281.86, + "H_sun": 12.57, + "T2m": 1.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201229:1510", + "P": 97.32, + "G(i)": 30.61, + "H_sun": 5.29, + "T2m": 1.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.37, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201229:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201229:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201229:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201229:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.0, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201229:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201229:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.47, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.0, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201230:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201230:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201230:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.66, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.68, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0810", + "P": 52.74, + "G(i)": 20.4, + "H_sun": 8.05, + "T2m": -0.8, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:0910", + "P": 193.68, + "G(i)": 50.06, + "H_sun": 14.74, + "T2m": 0.22, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:1010", + "P": 397.44, + "G(i)": 89.0, + "H_sun": 19.44, + "T2m": 1.47, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201230:1110", + "P": 1677.0, + "G(i)": 320.23, + "H_sun": 21.68, + "T2m": 2.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:1210", + "P": 770.76, + "G(i)": 158.11, + "H_sun": 21.21, + "T2m": 3.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201230:1310", + "P": 1386.24, + "G(i)": 270.13, + "H_sun": 18.1, + "T2m": 4.76, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201230:1410", + "P": 3010.02, + "G(i)": 581.94, + "H_sun": 12.67, + "T2m": 4.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201230:1510", + "P": 50.1, + "G(i)": 20.11, + "H_sun": 5.4, + "T2m": 4.07, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201230:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201230:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201230:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201230:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201230:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201230:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201230:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201231:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201231:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.51, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201231:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201231:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201231:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.81, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201231:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201231:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201231:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.37, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201231:0810", + "P": 579.24, + "G(i)": 139.55, + "H_sun": 8.05, + "T2m": -2.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201231:0910", + "P": 1749.0, + "G(i)": 337.29, + "H_sun": 14.76, + "T2m": -1.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201231:1010", + "P": 3200.04, + "G(i)": 603.86, + "H_sun": 19.48, + "T2m": -1.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201231:1110", + "P": 2602.56, + "G(i)": 486.84, + "H_sun": 21.74, + "T2m": -0.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201231:1210", + "P": 3213.24, + "G(i)": 606.07, + "H_sun": 21.29, + "T2m": 0.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201231:1310", + "P": 1223.52, + "G(i)": 235.76, + "H_sun": 18.2, + "T2m": 1.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201231:1410", + "P": 1690.44, + "G(i)": 318.98, + "H_sun": 12.78, + "T2m": 1.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201231:1510", + "P": 105.66, + "G(i)": 32.35, + "H_sun": 5.52, + "T2m": 1.29, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201231:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201231:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201231:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201231:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201231:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201231:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201231:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201231:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.35, + "WS10m": 0.97, + "Int": 0.0 + } + ] + }, + "meta": { + "inputs": { + "location": { + "description": "Selected location", + "variables": { + "latitude": { + "description": "Latitude", + "units": "decimal degree" + }, + "longitude": { + "description": "Longitude", + "units": "decimal degree" + }, + "elevation": { + "description": "Elevation", + "units": "m" + } + } + }, + "meteo_data": { + "description": "Sources of meteorological data", + "variables": { + "radiation_db": { + "description": "Solar radiation database" + }, + "meteo_db": { + "description": "Database used for meteorological variables other than solar radiation" + }, + "year_min": { + "description": "First year of the calculations" + }, + "year_max": { + "description": "Last year of the calculations" + }, + "use_horizon": { + "description": "Include horizon shadows" + }, + "horizon_db": { + "description": "Source of horizon data" + } + } + }, + "mounting_system": { + "description": "Mounting system", + "choices": "fixed, vertical_axis, inclined_axis, two_axis", + "fields": { + "slope": { + "description": "Inclination angle from the horizontal plane", + "units": "degree" + }, + "azimuth": { + "description": "Orientation (azimuth) angle of the (fixed) PV system (0 = S, 90 = W, -90 = E)", + "units": "degree" + } + } + }, + "pv_module": { + "description": "PV module parameters", + "variables": { + "technology": { + "description": "PV technology" + }, + "peak_power": { + "description": "Nominal (peak) power of the PV module", + "units": "kW" + }, + "system_loss": { + "description": "Sum of system losses", + "units": "%" + } + } + } + }, + "outputs": { + "hourly": { + "type": "time series", + "timestamp": "hourly averages", + "variables": { + "P": { + "description": "PV system power", + "units": "W" + }, + "G(i)": { + "description": "Global irradiance on the inclined plane (plane of the array)", + "units": "W/m2" + }, + "H_sun": { + "description": "Sun height", + "units": "degree" + }, + "T2m": { + "description": "2-m air temperature", + "units": "degree Celsius" + }, + "WS10m": { + "description": "10-m total wind speed", + "units": "m/s" + }, + "Int": { + "description": "1 means solar radiation values are reconstructed" + } + } + } + } + } +} diff --git a/pvtoolsOld/functions/seriescalc2.json b/pvtoolsOld/functions/seriescalc2.json new file mode 100644 index 0000000..6ae3c7b --- /dev/null +++ b/pvtoolsOld/functions/seriescalc2.json @@ -0,0 +1,79201 @@ +{ + "inputs": { + "location": { + "latitude": 45.0, + "longitude": 8.0, + "elevation": 250.0 + }, + "meteo_data": { + "radiation_db": "PVGIS-SARAH2", + "meteo_db": "ERA-Interim", + "year_min": 2020, + "year_max": 2020, + "use_horizon": true, + "horizon_db": null, + "horizon_data": "DEM-calculated" + }, + "mounting_system": { + "fixed": { + "slope": { + "value": 18, + "optimal": false + }, + "azimuth": { + "value": 35, + "optimal": false + }, + "type": "free-standing" + } + }, + "pv_module": { + "technology": "c-Si", + "peak_power": 6.0, + "system_loss": 12.0 + } + }, + "outputs": { + "hourly": [ + { + "time": "20200101:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.53, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200101:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200101:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200101:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200101:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.58, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200101:0810", + "P": 545.1, + "G(i)": 142.48, + "H_sun": 8.06, + "T2m": -1.34, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200101:0910", + "P": 1629.18, + "G(i)": 331.28, + "H_sun": 14.8, + "T2m": 1.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200101:1010", + "P": 2434.5, + "G(i)": 476.6, + "H_sun": 19.54, + "T2m": 4.15, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200101:1110", + "P": 2930.04, + "G(i)": 575.13, + "H_sun": 21.82, + "T2m": 6.63, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200101:1210", + "P": 3068.46, + "G(i)": 605.14, + "H_sun": 21.41, + "T2m": 8.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200101:1310", + "P": 2844.66, + "G(i)": 561.85, + "H_sun": 18.33, + "T2m": 9.53, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200101:1410", + "P": 2276.34, + "G(i)": 450.65, + "H_sun": 12.93, + "T2m": 9.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200101:1510", + "P": 53.1, + "G(i)": 21.2, + "H_sun": 5.68, + "T2m": 8.55, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200101:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200101:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.1, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200101:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200101:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200101:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200101:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200101:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200101:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200102:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.44, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200102:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.29, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200102:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.74, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200102:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.0, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200102:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200102:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.95, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200102:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.81, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200102:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:0810", + "P": 537.12, + "G(i)": 142.94, + "H_sun": 8.07, + "T2m": -0.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200102:0910", + "P": 1551.84, + "G(i)": 315.71, + "H_sun": 14.83, + "T2m": 1.7, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:1010", + "P": 2382.84, + "G(i)": 463.61, + "H_sun": 19.59, + "T2m": 3.79, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:1110", + "P": 2876.64, + "G(i)": 559.51, + "H_sun": 21.9, + "T2m": 5.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:1210", + "P": 3045.24, + "G(i)": 597.63, + "H_sun": 21.51, + "T2m": 6.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200102:1310", + "P": 2753.4, + "G(i)": 542.38, + "H_sun": 18.44, + "T2m": 8.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200102:1410", + "P": 2229.78, + "G(i)": 441.33, + "H_sun": 13.05, + "T2m": 8.24, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200102:1510", + "P": 53.34, + "G(i)": 21.2, + "H_sun": 5.8, + "T2m": 7.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200102:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200102:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200102:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200102:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200102:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200102:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200103:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200103:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200103:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.6, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200103:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.63, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200103:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200103:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200103:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200103:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.77, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:0810", + "P": 233.58, + "G(i)": 60.35, + "H_sun": 8.09, + "T2m": 1.27, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:0910", + "P": 439.2, + "G(i)": 97.62, + "H_sun": 14.87, + "T2m": 2.35, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:1010", + "P": 744.72, + "G(i)": 154.65, + "H_sun": 19.65, + "T2m": 4.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200103:1110", + "P": 1555.8, + "G(i)": 304.86, + "H_sun": 21.99, + "T2m": 5.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200103:1210", + "P": 982.86, + "G(i)": 199.79, + "H_sun": 21.61, + "T2m": 6.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200103:1310", + "P": 527.34, + "G(i)": 115.93, + "H_sun": 18.56, + "T2m": 7.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200103:1410", + "P": 229.44, + "G(i)": 58.81, + "H_sun": 13.18, + "T2m": 7.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200103:1510", + "P": 117.54, + "G(i)": 35.65, + "H_sun": 5.94, + "T2m": 7.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200103:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.7, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200103:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200103:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200103:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200103:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200103:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.02, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200103:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200103:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200104:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200104:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.48, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200104:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200104:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.51, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200104:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200104:0810", + "P": 479.28, + "G(i)": 124.96, + "H_sun": 8.12, + "T2m": 1.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:0910", + "P": 1591.86, + "G(i)": 326.01, + "H_sun": 14.92, + "T2m": 2.24, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200104:1010", + "P": 2265.3, + "G(i)": 444.32, + "H_sun": 19.73, + "T2m": 4.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:1110", + "P": 2786.64, + "G(i)": 548.6, + "H_sun": 22.08, + "T2m": 7.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:1210", + "P": 2976.12, + "G(i)": 591.85, + "H_sun": 21.72, + "T2m": 9.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:1310", + "P": 2804.28, + "G(i)": 560.57, + "H_sun": 18.69, + "T2m": 10.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200104:1410", + "P": 2181.84, + "G(i)": 437.28, + "H_sun": 13.32, + "T2m": 11.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200104:1510", + "P": 64.44, + "G(i)": 24.09, + "H_sun": 6.08, + "T2m": 10.47, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200104:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.3, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200104:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.38, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200104:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200104:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200104:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.24, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200104:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200104:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200105:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200105:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.29, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200105:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200105:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200105:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.7, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200105:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.38, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200105:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200105:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200105:0810", + "P": 517.02, + "G(i)": 136.94, + "H_sun": 8.16, + "T2m": 1.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200105:0910", + "P": 1600.14, + "G(i)": 328.54, + "H_sun": 14.98, + "T2m": 3.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200105:1010", + "P": 2374.08, + "G(i)": 468.61, + "H_sun": 19.8, + "T2m": 6.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200105:1110", + "P": 2877.48, + "G(i)": 567.77, + "H_sun": 22.18, + "T2m": 8.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200105:1210", + "P": 3014.16, + "G(i)": 598.11, + "H_sun": 21.84, + "T2m": 9.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200105:1310", + "P": 2787.12, + "G(i)": 553.47, + "H_sun": 18.83, + "T2m": 10.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200105:1410", + "P": 2299.8, + "G(i)": 457.75, + "H_sun": 13.46, + "T2m": 10.62, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200105:1510", + "P": 48.84, + "G(i)": 20.24, + "H_sun": 6.23, + "T2m": 9.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200105:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.9, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200105:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.13, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200105:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.79, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200105:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200105:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200105:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200105:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200105:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200106:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200106:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200106:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200106:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.53, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200106:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200106:0810", + "P": 352.86, + "G(i)": 88.24, + "H_sun": 8.2, + "T2m": 0.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200106:0910", + "P": 720.6, + "G(i)": 150.36, + "H_sun": 15.04, + "T2m": 1.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200106:1010", + "P": 920.4, + "G(i)": 186.65, + "H_sun": 19.89, + "T2m": 3.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200106:1110", + "P": 1036.62, + "G(i)": 208.69, + "H_sun": 22.29, + "T2m": 5.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200106:1210", + "P": 1904.4, + "G(i)": 370.55, + "H_sun": 21.97, + "T2m": 6.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200106:1310", + "P": 2546.22, + "G(i)": 495.02, + "H_sun": 18.97, + "T2m": 7.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200106:1410", + "P": 2287.8, + "G(i)": 446.77, + "H_sun": 13.61, + "T2m": 7.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200106:1510", + "P": 61.8, + "G(i)": 23.13, + "H_sun": 6.38, + "T2m": 6.48, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200106:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200106:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200106:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200106:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200106:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200106:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.67, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200106:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.42, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200107:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200107:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.58, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200107:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200107:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.63, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.77, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200107:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200107:0810", + "P": 174.48, + "G(i)": 46.44, + "H_sun": 8.25, + "T2m": -1.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200107:0910", + "P": 1019.46, + "G(i)": 205.75, + "H_sun": 15.11, + "T2m": -0.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200107:1010", + "P": 1949.52, + "G(i)": 373.31, + "H_sun": 19.98, + "T2m": 0.56, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200107:1110", + "P": 2841.84, + "G(i)": 544.82, + "H_sun": 22.41, + "T2m": 2.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200107:1210", + "P": 2957.1, + "G(i)": 572.52, + "H_sun": 22.11, + "T2m": 4.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200107:1310", + "P": 2747.94, + "G(i)": 534.55, + "H_sun": 19.11, + "T2m": 5.19, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:1410", + "P": 2281.68, + "G(i)": 446.83, + "H_sun": 13.76, + "T2m": 5.85, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200107:1510", + "P": 70.26, + "G(i)": 25.05, + "H_sun": 6.53, + "T2m": 5.76, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200107:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200107:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200107:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200107:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.44, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200107:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.11, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200107:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200107:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200107:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200108:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200108:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200108:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200108:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.69, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200108:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200108:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200108:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200108:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200108:0810", + "P": 335.22, + "G(i)": 82.99, + "H_sun": 8.3, + "T2m": -0.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200108:0910", + "P": 870.18, + "G(i)": 179.08, + "H_sun": 15.19, + "T2m": 1.75, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200108:1010", + "P": 1390.98, + "G(i)": 275.53, + "H_sun": 20.08, + "T2m": 5.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200108:1110", + "P": 1896.42, + "G(i)": 372.86, + "H_sun": 22.53, + "T2m": 7.38, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200108:1210", + "P": 2215.2, + "G(i)": 437.14, + "H_sun": 22.25, + "T2m": 8.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200108:1310", + "P": 2118.48, + "G(i)": 418.79, + "H_sun": 19.27, + "T2m": 9.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200108:1410", + "P": 2043.96, + "G(i)": 405.38, + "H_sun": 13.92, + "T2m": 9.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200108:1510", + "P": 98.82, + "G(i)": 31.8, + "H_sun": 6.7, + "T2m": 8.81, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200108:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200108:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.63, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200108:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200108:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200108:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200108:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200108:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.68, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200108:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200109:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.24, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200109:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200109:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200109:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.01, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200109:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.52, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200109:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.78, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200109:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.02, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200109:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.42, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200109:0810", + "P": 509.04, + "G(i)": 131.46, + "H_sun": 8.37, + "T2m": -0.79, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200109:0910", + "P": 1567.08, + "G(i)": 318.83, + "H_sun": 15.27, + "T2m": 1.51, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200109:1010", + "P": 2421.18, + "G(i)": 475.69, + "H_sun": 20.19, + "T2m": 4.07, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200109:1110", + "P": 2977.92, + "G(i)": 585.73, + "H_sun": 22.66, + "T2m": 6.0, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200109:1210", + "P": 3045.54, + "G(i)": 599.83, + "H_sun": 22.39, + "T2m": 7.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200109:1310", + "P": 2881.5, + "G(i)": 566.7, + "H_sun": 19.43, + "T2m": 8.45, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200109:1410", + "P": 2384.82, + "G(i)": 469.46, + "H_sun": 14.09, + "T2m": 8.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200109:1510", + "P": 65.34, + "G(i)": 24.09, + "H_sun": 6.86, + "T2m": 8.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200109:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.28, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200109:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.62, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200109:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200109:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200109:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.91, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200109:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.55, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200109:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200109:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200110:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200110:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200110:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.33, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200110:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200110:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200110:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200110:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200110:0810", + "P": 518.7, + "G(i)": 138.68, + "H_sun": 8.44, + "T2m": 3.29, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200110:0910", + "P": 1441.5, + "G(i)": 295.47, + "H_sun": 15.36, + "T2m": 3.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200110:1010", + "P": 2395.26, + "G(i)": 468.96, + "H_sun": 20.31, + "T2m": 5.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1110", + "P": 2898.84, + "G(i)": 565.73, + "H_sun": 22.8, + "T2m": 6.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200110:1210", + "P": 3098.52, + "G(i)": 607.63, + "H_sun": 22.55, + "T2m": 7.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1310", + "P": 2848.92, + "G(i)": 561.19, + "H_sun": 19.59, + "T2m": 7.99, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200110:1410", + "P": 2322.78, + "G(i)": 459.81, + "H_sun": 14.26, + "T2m": 8.27, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200110:1510", + "P": 69.42, + "G(i)": 25.05, + "H_sun": 7.04, + "T2m": 7.99, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200110:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.89, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200110:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200110:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.73, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200110:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200110:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200110:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200111:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200111:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200111:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200111:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.21, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200111:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.6, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200111:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.78, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200111:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:0810", + "P": 552.18, + "G(i)": 146.04, + "H_sun": 8.51, + "T2m": 0.56, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:0910", + "P": 1666.38, + "G(i)": 340.86, + "H_sun": 15.46, + "T2m": 2.47, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:1010", + "P": 2484.9, + "G(i)": 489.05, + "H_sun": 20.43, + "T2m": 5.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200111:1110", + "P": 2988.24, + "G(i)": 590.37, + "H_sun": 22.94, + "T2m": 7.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200111:1210", + "P": 3122.16, + "G(i)": 620.12, + "H_sun": 22.71, + "T2m": 9.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200111:1310", + "P": 2956.14, + "G(i)": 587.54, + "H_sun": 19.77, + "T2m": 10.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200111:1410", + "P": 2446.56, + "G(i)": 486.31, + "H_sun": 14.44, + "T2m": 10.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200111:1510", + "P": 60.66, + "G(i)": 23.13, + "H_sun": 7.21, + "T2m": 9.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200111:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200111:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200111:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200111:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200111:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200111:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200111:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200111:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200112:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200112:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200112:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200112:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.69, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200112:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.19, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200112:0810", + "P": 557.46, + "G(i)": 146.05, + "H_sun": 8.6, + "T2m": -0.08, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200112:0910", + "P": 1666.08, + "G(i)": 340.29, + "H_sun": 15.57, + "T2m": 2.01, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200112:1010", + "P": 2484.06, + "G(i)": 488.19, + "H_sun": 20.56, + "T2m": 4.87, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200112:1110", + "P": 3018.96, + "G(i)": 593.08, + "H_sun": 23.09, + "T2m": 6.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200112:1210", + "P": 3163.08, + "G(i)": 622.88, + "H_sun": 22.88, + "T2m": 7.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200112:1310", + "P": 2959.14, + "G(i)": 581.59, + "H_sun": 19.94, + "T2m": 8.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200112:1410", + "P": 2470.44, + "G(i)": 485.81, + "H_sun": 14.62, + "T2m": 8.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200112:1510", + "P": 73.8, + "G(i)": 26.02, + "H_sun": 7.39, + "T2m": 7.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200112:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.86, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200112:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200112:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200112:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200112:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200112:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200112:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.08, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200112:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200113:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200113:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.28, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200113:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200113:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200113:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200113:0810", + "P": 506.76, + "G(i)": 126.8, + "H_sun": 8.69, + "T2m": -2.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200113:0910", + "P": 1507.62, + "G(i)": 302.91, + "H_sun": 15.68, + "T2m": -0.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:1010", + "P": 2092.14, + "G(i)": 404.32, + "H_sun": 20.69, + "T2m": 2.04, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200113:1110", + "P": 2725.14, + "G(i)": 526.47, + "H_sun": 23.25, + "T2m": 3.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200113:1210", + "P": 2988.24, + "G(i)": 579.6, + "H_sun": 23.06, + "T2m": 4.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200113:1310", + "P": 2852.64, + "G(i)": 553.2, + "H_sun": 20.13, + "T2m": 5.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200113:1410", + "P": 2293.14, + "G(i)": 444.53, + "H_sun": 14.81, + "T2m": 5.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200113:1510", + "P": 155.82, + "G(i)": 43.36, + "H_sun": 7.58, + "T2m": 4.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200113:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200113:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200113:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.27, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200113:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200113:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.02, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200113:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200113:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.3, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200113:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200114:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200114:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200114:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.26, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200114:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.4, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200114:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200114:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200114:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200114:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200114:0810", + "P": 504.24, + "G(i)": 127.86, + "H_sun": 8.78, + "T2m": -0.46, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200114:0910", + "P": 1595.16, + "G(i)": 323.0, + "H_sun": 15.8, + "T2m": 1.75, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200114:1010", + "P": 2179.14, + "G(i)": 421.22, + "H_sun": 20.84, + "T2m": 3.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200114:1110", + "P": 2467.98, + "G(i)": 473.72, + "H_sun": 23.42, + "T2m": 4.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200114:1210", + "P": 1954.8, + "G(i)": 376.95, + "H_sun": 23.24, + "T2m": 5.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200114:1310", + "P": 2822.64, + "G(i)": 546.62, + "H_sun": 20.32, + "T2m": 5.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200114:1410", + "P": 2346.96, + "G(i)": 455.15, + "H_sun": 15.0, + "T2m": 5.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200114:1510", + "P": 109.62, + "G(i)": 33.73, + "H_sun": 7.77, + "T2m": 5.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200114:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200114:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.83, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200114:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.3, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200114:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200114:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200114:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200114:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200114:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200115:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0810", + "P": 414.6, + "G(i)": 102.58, + "H_sun": 8.88, + "T2m": 1.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:0910", + "P": 1577.28, + "G(i)": 320.08, + "H_sun": 15.92, + "T2m": 2.72, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:1010", + "P": 2058.06, + "G(i)": 397.96, + "H_sun": 20.99, + "T2m": 3.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200115:1110", + "P": 1201.26, + "G(i)": 237.33, + "H_sun": 23.59, + "T2m": 4.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200115:1210", + "P": 3059.82, + "G(i)": 590.3, + "H_sun": 23.43, + "T2m": 4.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:1310", + "P": 2926.38, + "G(i)": 565.39, + "H_sun": 20.52, + "T2m": 5.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:1410", + "P": 2541.42, + "G(i)": 492.46, + "H_sun": 15.2, + "T2m": 5.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:1510", + "P": 174.36, + "G(i)": 47.22, + "H_sun": 7.97, + "T2m": 5.12, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200115:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200115:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200115:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200115:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200115:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200115:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200116:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200116:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200116:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.3, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200116:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:0810", + "P": 555.42, + "G(i)": 145.45, + "H_sun": 8.99, + "T2m": 3.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200116:0910", + "P": 1622.94, + "G(i)": 332.93, + "H_sun": 16.05, + "T2m": 3.74, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200116:1010", + "P": 2414.4, + "G(i)": 474.53, + "H_sun": 21.14, + "T2m": 5.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1110", + "P": 2926.86, + "G(i)": 576.88, + "H_sun": 23.77, + "T2m": 6.77, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1210", + "P": 3109.44, + "G(i)": 616.53, + "H_sun": 23.62, + "T2m": 7.87, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1310", + "P": 2976.48, + "G(i)": 590.91, + "H_sun": 20.72, + "T2m": 8.38, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200116:1410", + "P": 2435.34, + "G(i)": 483.9, + "H_sun": 15.4, + "T2m": 8.68, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200116:1510", + "P": 81.78, + "G(i)": 27.94, + "H_sun": 8.17, + "T2m": 8.5, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200116:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200116:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200116:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200116:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200116:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.56, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200116:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200116:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.93, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200116:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200117:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200117:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200117:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200117:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200117:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200117:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200117:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200117:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200117:0810", + "P": 561.0, + "G(i)": 147.61, + "H_sun": 9.11, + "T2m": 2.33, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200117:0910", + "P": 1633.68, + "G(i)": 334.73, + "H_sun": 16.19, + "T2m": 4.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200117:1010", + "P": 2239.68, + "G(i)": 440.09, + "H_sun": 21.31, + "T2m": 6.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200117:1110", + "P": 725.28, + "G(i)": 152.86, + "H_sun": 23.95, + "T2m": 7.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200117:1210", + "P": 1197.24, + "G(i)": 240.41, + "H_sun": 23.82, + "T2m": 8.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200117:1310", + "P": 2967.48, + "G(i)": 580.54, + "H_sun": 20.93, + "T2m": 8.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200117:1410", + "P": 2482.2, + "G(i)": 485.16, + "H_sun": 15.61, + "T2m": 8.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200117:1510", + "P": 69.36, + "G(i)": 25.05, + "H_sun": 8.37, + "T2m": 8.32, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200117:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.1, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200117:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200117:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.57, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200117:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200117:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200117:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200117:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.2, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200117:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.98, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200118:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.78, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200118:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200118:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200118:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200118:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200118:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200118:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200118:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200118:0810", + "P": 571.8, + "G(i)": 148.47, + "H_sun": 9.23, + "T2m": 2.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200118:0910", + "P": 1549.2, + "G(i)": 315.68, + "H_sun": 16.34, + "T2m": 4.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200118:1010", + "P": 2535.36, + "G(i)": 498.61, + "H_sun": 21.48, + "T2m": 7.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200118:1110", + "P": 3085.2, + "G(i)": 605.77, + "H_sun": 24.15, + "T2m": 8.89, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200118:1210", + "P": 3257.16, + "G(i)": 643.56, + "H_sun": 24.03, + "T2m": 10.07, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200118:1310", + "P": 3064.26, + "G(i)": 609.86, + "H_sun": 21.14, + "T2m": 10.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200118:1410", + "P": 2571.78, + "G(i)": 512.94, + "H_sun": 15.82, + "T2m": 10.94, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200118:1510", + "P": 1725.24, + "G(i)": 351.93, + "H_sun": 8.58, + "T2m": 10.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200118:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200118:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200118:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200118:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200118:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.4, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200118:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.17, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200118:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200118:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200119:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200119:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200119:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.27, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200119:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200119:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200119:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.63, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200119:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.45, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200119:0810", + "P": 423.66, + "G(i)": 102.14, + "H_sun": 9.36, + "T2m": 0.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200119:0910", + "P": 798.84, + "G(i)": 164.77, + "H_sun": 16.49, + "T2m": 2.18, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200119:1010", + "P": 1334.4, + "G(i)": 262.74, + "H_sun": 21.66, + "T2m": 3.96, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200119:1110", + "P": 2670.6, + "G(i)": 516.65, + "H_sun": 24.35, + "T2m": 5.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200119:1210", + "P": 3227.22, + "G(i)": 627.08, + "H_sun": 24.24, + "T2m": 6.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:1310", + "P": 2977.26, + "G(i)": 577.73, + "H_sun": 21.36, + "T2m": 6.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200119:1410", + "P": 1543.44, + "G(i)": 302.29, + "H_sun": 16.04, + "T2m": 7.19, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200119:1510", + "P": 1616.04, + "G(i)": 323.13, + "H_sun": 8.79, + "T2m": 6.99, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200119:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200119:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.85, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200119:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200119:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200119:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200119:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200119:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200120:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200120:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200120:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.45, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200120:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.39, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.01, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.28, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200120:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200120:0810", + "P": 380.82, + "G(i)": 91.74, + "H_sun": 9.5, + "T2m": 2.13, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200120:0910", + "P": 721.38, + "G(i)": 150.3, + "H_sun": 16.65, + "T2m": 2.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200120:1010", + "P": 2117.64, + "G(i)": 411.74, + "H_sun": 21.84, + "T2m": 5.6, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200120:1110", + "P": 2939.88, + "G(i)": 568.58, + "H_sun": 24.55, + "T2m": 7.05, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200120:1210", + "P": 3211.02, + "G(i)": 621.42, + "H_sun": 24.46, + "T2m": 7.8, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200120:1310", + "P": 3123.06, + "G(i)": 605.22, + "H_sun": 21.59, + "T2m": 8.13, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200120:1410", + "P": 2676.06, + "G(i)": 519.18, + "H_sun": 16.26, + "T2m": 8.26, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200120:1510", + "P": 1082.04, + "G(i)": 220.82, + "H_sun": 9.01, + "T2m": 7.82, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200120:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.45, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200120:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.86, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200120:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.8, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200120:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200120:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.21, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200120:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.61, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200120:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.05, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200120:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200121:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200121:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200121:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200121:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200121:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200121:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.92, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200121:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.58, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200121:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200121:0810", + "P": 610.26, + "G(i)": 155.09, + "H_sun": 9.64, + "T2m": -0.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200121:0910", + "P": 1598.88, + "G(i)": 322.06, + "H_sun": 16.82, + "T2m": 2.15, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200121:1010", + "P": 1209.42, + "G(i)": 240.56, + "H_sun": 22.03, + "T2m": 4.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200121:1110", + "P": 1646.34, + "G(i)": 323.68, + "H_sun": 24.76, + "T2m": 6.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200121:1210", + "P": 705.9, + "G(i)": 149.48, + "H_sun": 24.69, + "T2m": 7.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200121:1310", + "P": 1461.96, + "G(i)": 290.29, + "H_sun": 21.82, + "T2m": 7.92, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200121:1410", + "P": 1289.46, + "G(i)": 257.53, + "H_sun": 16.49, + "T2m": 7.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200121:1510", + "P": 437.64, + "G(i)": 99.32, + "H_sun": 9.23, + "T2m": 7.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200121:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200121:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.21, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200121:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200121:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200121:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200121:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200121:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200121:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200122:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200122:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200122:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200122:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.63, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200122:0810", + "P": 565.08, + "G(i)": 139.16, + "H_sun": 9.79, + "T2m": -0.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200122:0910", + "P": 1667.22, + "G(i)": 336.56, + "H_sun": 16.99, + "T2m": 2.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200122:1010", + "P": 2212.14, + "G(i)": 432.55, + "H_sun": 22.23, + "T2m": 5.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200122:1110", + "P": 2824.2, + "G(i)": 556.17, + "H_sun": 24.98, + "T2m": 8.1, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200122:1210", + "P": 3192.84, + "G(i)": 635.96, + "H_sun": 24.92, + "T2m": 9.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200122:1310", + "P": 3072.72, + "G(i)": 614.31, + "H_sun": 22.05, + "T2m": 10.72, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200122:1410", + "P": 2135.58, + "G(i)": 424.26, + "H_sun": 16.72, + "T2m": 11.08, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200122:1510", + "P": 1582.5, + "G(i)": 321.65, + "H_sun": 9.45, + "T2m": 10.56, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200122:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200122:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.4, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200122:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200122:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200122:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200123:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200123:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.04, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200123:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.25, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200123:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.32, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200123:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.94, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200123:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.99, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200123:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.96, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200123:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200123:0810", + "P": 492.54, + "G(i)": 117.3, + "H_sun": 9.94, + "T2m": -0.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200123:0910", + "P": 1154.16, + "G(i)": 231.98, + "H_sun": 17.17, + "T2m": 2.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200123:1010", + "P": 2432.16, + "G(i)": 469.89, + "H_sun": 22.43, + "T2m": 4.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200123:1110", + "P": 3066.54, + "G(i)": 597.64, + "H_sun": 25.21, + "T2m": 6.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200123:1210", + "P": 2465.52, + "G(i)": 481.0, + "H_sun": 25.16, + "T2m": 7.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200123:1310", + "P": 2960.16, + "G(i)": 582.24, + "H_sun": 22.29, + "T2m": 8.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200123:1410", + "P": 2592.3, + "G(i)": 509.9, + "H_sun": 16.96, + "T2m": 8.81, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200123:1510", + "P": 1772.52, + "G(i)": 355.67, + "H_sun": 9.68, + "T2m": 8.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200123:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200123:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.6, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200123:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.88, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200123:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.4, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200123:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.82, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200123:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200123:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200123:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.1, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200124:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200124:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.24, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200124:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200124:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200124:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200124:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200124:0810", + "P": 641.82, + "G(i)": 163.99, + "H_sun": 10.1, + "T2m": 1.0, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200124:0910", + "P": 764.7, + "G(i)": 158.74, + "H_sun": 17.35, + "T2m": 3.1, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200124:1010", + "P": 1608.24, + "G(i)": 316.93, + "H_sun": 22.64, + "T2m": 5.98, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200124:1110", + "P": 2460.78, + "G(i)": 484.47, + "H_sun": 25.44, + "T2m": 7.65, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200124:1210", + "P": 2564.1, + "G(i)": 505.06, + "H_sun": 25.4, + "T2m": 8.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:1310", + "P": 1778.94, + "G(i)": 350.85, + "H_sun": 22.54, + "T2m": 9.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200124:1410", + "P": 2644.74, + "G(i)": 519.55, + "H_sun": 17.2, + "T2m": 9.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200124:1510", + "P": 1614.3, + "G(i)": 323.32, + "H_sun": 9.91, + "T2m": 8.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200124:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.46, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200124:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.02, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200124:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200124:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200124:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200124:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.1, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200124:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200124:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200125:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.55, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200125:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.46, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200125:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200125:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200125:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200125:0810", + "P": 493.98, + "G(i)": 118.21, + "H_sun": 10.27, + "T2m": 2.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200125:0910", + "P": 891.24, + "G(i)": 183.27, + "H_sun": 17.54, + "T2m": 4.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:1010", + "P": 2214.12, + "G(i)": 431.58, + "H_sun": 22.86, + "T2m": 5.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200125:1110", + "P": 794.76, + "G(i)": 165.44, + "H_sun": 25.67, + "T2m": 6.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200125:1210", + "P": 725.52, + "G(i)": 153.34, + "H_sun": 25.65, + "T2m": 7.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:1310", + "P": 611.1, + "G(i)": 132.23, + "H_sun": 22.79, + "T2m": 8.44, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200125:1410", + "P": 473.58, + "G(i)": 106.32, + "H_sun": 17.44, + "T2m": 8.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200125:1510", + "P": 740.46, + "G(i)": 157.08, + "H_sun": 10.14, + "T2m": 8.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200125:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200125:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200125:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200125:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200125:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200125:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200125:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200126:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200126:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.79, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200126:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.32, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200126:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.99, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200126:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200126:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.28, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200126:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:0810", + "P": 540.54, + "G(i)": 129.63, + "H_sun": 10.44, + "T2m": 2.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200126:0910", + "P": 1403.1, + "G(i)": 282.87, + "H_sun": 17.74, + "T2m": 3.34, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200126:1010", + "P": 2215.08, + "G(i)": 433.94, + "H_sun": 23.08, + "T2m": 6.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:1110", + "P": 2459.94, + "G(i)": 482.06, + "H_sun": 25.92, + "T2m": 7.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200126:1210", + "P": 3039.6, + "G(i)": 600.82, + "H_sun": 25.91, + "T2m": 8.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:1310", + "P": 2653.86, + "G(i)": 522.11, + "H_sun": 23.05, + "T2m": 9.14, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200126:1410", + "P": 2622.3, + "G(i)": 518.74, + "H_sun": 17.69, + "T2m": 9.41, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200126:1510", + "P": 1895.1, + "G(i)": 380.76, + "H_sun": 10.38, + "T2m": 9.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200126:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200126:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200126:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200126:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200126:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200126:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.22, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200126:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.79, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200127:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200127:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200127:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.64, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200127:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200127:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.25, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200127:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.92, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200127:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200127:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.61, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200127:0810", + "P": 657.0, + "G(i)": 164.6, + "H_sun": 10.62, + "T2m": 2.11, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200127:0910", + "P": 1674.48, + "G(i)": 338.54, + "H_sun": 17.94, + "T2m": 3.71, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200127:1010", + "P": 2598.54, + "G(i)": 512.7, + "H_sun": 23.31, + "T2m": 5.97, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200127:1110", + "P": 2920.8, + "G(i)": 576.19, + "H_sun": 26.16, + "T2m": 7.52, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200127:1210", + "P": 3024.24, + "G(i)": 596.83, + "H_sun": 26.16, + "T2m": 8.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200127:1310", + "P": 3074.34, + "G(i)": 606.45, + "H_sun": 23.31, + "T2m": 9.23, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200127:1410", + "P": 419.22, + "G(i)": 96.23, + "H_sun": 17.94, + "T2m": 9.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200127:1510", + "P": 1191.18, + "G(i)": 241.63, + "H_sun": 10.62, + "T2m": 9.36, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200127:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200127:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.29, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.0, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200127:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200127:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.98, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200127:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200128:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200128:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.1, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200128:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200128:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200128:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200128:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200128:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200128:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200128:0810", + "P": 635.76, + "G(i)": 154.39, + "H_sun": 10.81, + "T2m": 2.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200128:0910", + "P": 1755.72, + "G(i)": 353.38, + "H_sun": 18.15, + "T2m": 4.29, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200128:1010", + "P": 2632.2, + "G(i)": 511.05, + "H_sun": 23.54, + "T2m": 5.58, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200128:1110", + "P": 3195.48, + "G(i)": 624.46, + "H_sun": 26.42, + "T2m": 7.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200128:1210", + "P": 3109.98, + "G(i)": 613.14, + "H_sun": 26.43, + "T2m": 8.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200128:1310", + "P": 3114.3, + "G(i)": 618.95, + "H_sun": 23.57, + "T2m": 9.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200128:1410", + "P": 2611.5, + "G(i)": 518.43, + "H_sun": 18.2, + "T2m": 11.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200128:1510", + "P": 1989.6, + "G(i)": 401.2, + "H_sun": 10.86, + "T2m": 11.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200128:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.51, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200128:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.93, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200128:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.3, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200128:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200128:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200128:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200128:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200128:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200129:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200129:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.3, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200129:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200129:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200129:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200129:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.92, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200129:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200129:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200129:0810", + "P": 738.54, + "G(i)": 187.89, + "H_sun": 11.0, + "T2m": 1.26, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200129:0910", + "P": 1922.16, + "G(i)": 390.32, + "H_sun": 18.37, + "T2m": 4.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1010", + "P": 2764.26, + "G(i)": 549.83, + "H_sun": 23.78, + "T2m": 7.22, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200129:1110", + "P": 3269.1, + "G(i)": 657.11, + "H_sun": 26.68, + "T2m": 9.77, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1210", + "P": 3454.98, + "G(i)": 702.76, + "H_sun": 26.7, + "T2m": 11.57, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1310", + "P": 3395.76, + "G(i)": 693.36, + "H_sun": 23.84, + "T2m": 12.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200129:1410", + "P": 2870.04, + "G(i)": 583.28, + "H_sun": 18.46, + "T2m": 13.14, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200129:1510", + "P": 2039.28, + "G(i)": 414.41, + "H_sun": 11.11, + "T2m": 12.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200129:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200129:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200129:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200129:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.6, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200129:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.62, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200129:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200129:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200129:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200130:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200130:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200130:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200130:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.71, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200130:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.77, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200130:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200130:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200130:0710", + "P": 8.82, + "G(i)": 8.82, + "H_sun": 2.38, + "T2m": 1.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200130:0810", + "P": 685.86, + "G(i)": 167.64, + "H_sun": 11.19, + "T2m": 2.08, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200130:0910", + "P": 1569.54, + "G(i)": 316.17, + "H_sun": 18.59, + "T2m": 4.01, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200130:1010", + "P": 2580.6, + "G(i)": 510.7, + "H_sun": 24.03, + "T2m": 6.64, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200130:1110", + "P": 3175.62, + "G(i)": 632.17, + "H_sun": 26.94, + "T2m": 8.27, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200130:1210", + "P": 3128.1, + "G(i)": 621.46, + "H_sun": 26.97, + "T2m": 9.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200130:1310", + "P": 3139.74, + "G(i)": 622.42, + "H_sun": 24.11, + "T2m": 9.81, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200130:1410", + "P": 1485.96, + "G(i)": 296.09, + "H_sun": 18.72, + "T2m": 10.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200130:1510", + "P": 1803.96, + "G(i)": 360.66, + "H_sun": 11.36, + "T2m": 9.83, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200130:1610", + "P": 0.36, + "G(i)": 5.78, + "H_sun": 2.57, + "T2m": 8.82, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200130:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.4, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200130:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.83, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200130:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200130:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200130:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200130:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200130:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200131:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200131:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.8, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200131:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200131:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200131:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200131:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200131:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200131:0710", + "P": 11.16, + "G(i)": 9.7, + "H_sun": 2.56, + "T2m": 2.23, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200131:0810", + "P": 701.22, + "G(i)": 173.71, + "H_sun": 11.4, + "T2m": 2.97, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200131:0910", + "P": 1770.48, + "G(i)": 358.87, + "H_sun": 18.82, + "T2m": 4.91, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200131:1010", + "P": 2410.38, + "G(i)": 477.31, + "H_sun": 24.28, + "T2m": 7.68, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200131:1110", + "P": 2129.4, + "G(i)": 422.8, + "H_sun": 27.22, + "T2m": 9.37, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200131:1210", + "P": 1614.9, + "G(i)": 323.93, + "H_sun": 27.25, + "T2m": 10.89, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200131:1310", + "P": 1527.84, + "G(i)": 307.72, + "H_sun": 24.39, + "T2m": 11.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200131:1410", + "P": 1260.78, + "G(i)": 256.91, + "H_sun": 18.99, + "T2m": 12.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200131:1510", + "P": 902.16, + "G(i)": 190.35, + "H_sun": 11.61, + "T2m": 12.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200131:1610", + "P": 7.62, + "G(i)": 8.67, + "H_sun": 2.81, + "T2m": 11.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200131:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200131:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.87, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200131:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.59, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200131:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.52, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200131:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200131:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200131:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.63, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200201:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200201:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200201:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200201:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200201:0710", + "P": 0.0, + "G(i)": 3.92, + "H_sun": 2.75, + "T2m": 5.36, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200201:0810", + "P": 329.52, + "G(i)": 79.0, + "H_sun": 11.6, + "T2m": 5.89, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200201:0910", + "P": 454.8, + "G(i)": 102.24, + "H_sun": 19.05, + "T2m": 7.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200201:1010", + "P": 343.5, + "G(i)": 81.36, + "H_sun": 24.54, + "T2m": 8.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200201:1110", + "P": 276.66, + "G(i)": 68.62, + "H_sun": 27.49, + "T2m": 9.65, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200201:1210", + "P": 524.52, + "G(i)": 116.65, + "H_sun": 27.54, + "T2m": 10.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200201:1310", + "P": 698.1, + "G(i)": 149.63, + "H_sun": 24.67, + "T2m": 10.86, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:1410", + "P": 457.38, + "G(i)": 103.99, + "H_sun": 19.26, + "T2m": 10.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200201:1510", + "P": 439.62, + "G(i)": 100.59, + "H_sun": 11.86, + "T2m": 10.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:1610", + "P": 0.0, + "G(i)": 3.85, + "H_sun": 3.05, + "T2m": 10.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.98, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200201:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.04, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200201:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200201:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200201:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200201:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200201:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200202:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200202:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200202:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200202:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.95, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.24, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200202:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200202:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200202:0710", + "P": 0.72, + "G(i)": 5.88, + "H_sun": 2.94, + "T2m": 3.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:0810", + "P": 484.38, + "G(i)": 112.59, + "H_sun": 11.82, + "T2m": 5.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200202:0910", + "P": 736.2, + "G(i)": 155.31, + "H_sun": 19.29, + "T2m": 6.75, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200202:1010", + "P": 864.12, + "G(i)": 180.27, + "H_sun": 24.8, + "T2m": 9.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200202:1110", + "P": 1022.1, + "G(i)": 211.32, + "H_sun": 27.77, + "T2m": 11.45, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200202:1210", + "P": 1852.44, + "G(i)": 371.86, + "H_sun": 27.83, + "T2m": 13.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:1310", + "P": 2454.78, + "G(i)": 492.21, + "H_sun": 24.96, + "T2m": 13.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200202:1410", + "P": 2464.98, + "G(i)": 494.7, + "H_sun": 19.53, + "T2m": 14.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200202:1510", + "P": 1710.3, + "G(i)": 347.28, + "H_sun": 12.12, + "T2m": 13.74, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200202:1610", + "P": 22.86, + "G(i)": 13.49, + "H_sun": 3.29, + "T2m": 12.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200202:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200202:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200202:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.55, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200202:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200202:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200202:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200202:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200203:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200203:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.05, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200203:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200203:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200203:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.66, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200203:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200203:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200203:0710", + "P": 24.12, + "G(i)": 13.68, + "H_sun": 3.14, + "T2m": 4.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200203:0810", + "P": 688.44, + "G(i)": 163.98, + "H_sun": 12.04, + "T2m": 6.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200203:0910", + "P": 1721.46, + "G(i)": 352.68, + "H_sun": 19.53, + "T2m": 9.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200203:1010", + "P": 2546.04, + "G(i)": 510.13, + "H_sun": 25.07, + "T2m": 12.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200203:1110", + "P": 2856.78, + "G(i)": 575.97, + "H_sun": 28.06, + "T2m": 14.62, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200203:1210", + "P": 3381.3, + "G(i)": 694.22, + "H_sun": 28.12, + "T2m": 16.84, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200203:1310", + "P": 2972.64, + "G(i)": 615.61, + "H_sun": 25.24, + "T2m": 18.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200203:1410", + "P": 2817.12, + "G(i)": 586.85, + "H_sun": 19.81, + "T2m": 19.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200203:1510", + "P": 1852.44, + "G(i)": 388.06, + "H_sun": 12.38, + "T2m": 19.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200203:1610", + "P": 32.04, + "G(i)": 16.38, + "H_sun": 3.53, + "T2m": 18.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200203:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.46, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200203:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200203:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.41, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200203:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.63, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200203:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200203:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200203:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200204:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.63, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200204:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.89, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200204:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200204:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.64, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200204:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.57, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200204:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.82, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200204:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.65, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200204:0710", + "P": 35.82, + "G(i)": 17.42, + "H_sun": 3.35, + "T2m": 8.08, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200204:0810", + "P": 824.94, + "G(i)": 203.56, + "H_sun": 12.26, + "T2m": 8.35, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200204:0910", + "P": 2032.08, + "G(i)": 415.69, + "H_sun": 19.78, + "T2m": 12.3, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200204:1010", + "P": 2881.68, + "G(i)": 569.27, + "H_sun": 25.34, + "T2m": 14.22, + "WS10m": 4.34, + "Int": 0.0 + }, + { + "time": "20200204:1110", + "P": 3477.18, + "G(i)": 679.38, + "H_sun": 28.35, + "T2m": 13.92, + "WS10m": 5.17, + "Int": 0.0 + }, + { + "time": "20200204:1210", + "P": 3704.82, + "G(i)": 718.83, + "H_sun": 28.42, + "T2m": 13.37, + "WS10m": 5.93, + "Int": 0.0 + }, + { + "time": "20200204:1310", + "P": 3686.4, + "G(i)": 715.48, + "H_sun": 25.54, + "T2m": 12.65, + "WS10m": 5.1, + "Int": 0.0 + }, + { + "time": "20200204:1410", + "P": 3223.38, + "G(i)": 624.75, + "H_sun": 20.08, + "T2m": 12.05, + "WS10m": 4.69, + "Int": 0.0 + }, + { + "time": "20200204:1510", + "P": 2261.52, + "G(i)": 444.12, + "H_sun": 12.64, + "T2m": 11.32, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200204:1610", + "P": 44.94, + "G(i)": 19.27, + "H_sun": 3.78, + "T2m": 10.1, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200204:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.73, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200204:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.77, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200204:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.56, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200204:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200204:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.93, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200204:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200204:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.73, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200205:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200205:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.82, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200205:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.09, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200205:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200205:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.22, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200205:0710", + "P": 44.28, + "G(i)": 19.34, + "H_sun": 3.56, + "T2m": -0.05, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200205:0810", + "P": 892.62, + "G(i)": 214.01, + "H_sun": 12.49, + "T2m": 1.49, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:0910", + "P": 2120.76, + "G(i)": 426.03, + "H_sun": 20.04, + "T2m": 6.12, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200205:1010", + "P": 2963.4, + "G(i)": 584.7, + "H_sun": 25.62, + "T2m": 9.67, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:1110", + "P": 3475.44, + "G(i)": 690.9, + "H_sun": 28.65, + "T2m": 11.76, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200205:1210", + "P": 3709.5, + "G(i)": 742.38, + "H_sun": 28.72, + "T2m": 12.96, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200205:1310", + "P": 3640.02, + "G(i)": 729.75, + "H_sun": 25.83, + "T2m": 13.47, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200205:1410", + "P": 3115.86, + "G(i)": 623.83, + "H_sun": 20.36, + "T2m": 13.45, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200205:1510", + "P": 2269.68, + "G(i)": 457.51, + "H_sun": 12.9, + "T2m": 12.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200205:1610", + "P": 56.28, + "G(i)": 22.16, + "H_sun": 4.02, + "T2m": 11.07, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200205:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.52, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200205:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.68, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200205:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.61, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200205:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.8, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200205:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200205:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.41, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200205:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200206:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.48, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200206:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.06, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200206:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.11, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200206:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.66, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200206:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200206:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200206:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200206:0710", + "P": 25.68, + "G(i)": 13.72, + "H_sun": 3.77, + "T2m": 0.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200206:0810", + "P": 681.3, + "G(i)": 152.36, + "H_sun": 12.73, + "T2m": 0.93, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200206:0910", + "P": 1935.54, + "G(i)": 384.44, + "H_sun": 20.3, + "T2m": 3.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200206:1010", + "P": 2715.0, + "G(i)": 528.35, + "H_sun": 25.9, + "T2m": 5.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200206:1110", + "P": 3142.2, + "G(i)": 616.57, + "H_sun": 28.95, + "T2m": 7.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200206:1210", + "P": 3308.58, + "G(i)": 655.74, + "H_sun": 29.03, + "T2m": 8.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200206:1310", + "P": 3459.42, + "G(i)": 690.41, + "H_sun": 26.13, + "T2m": 9.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200206:1410", + "P": 3098.94, + "G(i)": 612.16, + "H_sun": 20.65, + "T2m": 9.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200206:1510", + "P": 2248.14, + "G(i)": 444.56, + "H_sun": 13.17, + "T2m": 9.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200206:1610", + "P": 65.22, + "G(i)": 24.09, + "H_sun": 4.27, + "T2m": 8.41, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200206:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.55, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200206:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200206:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200206:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200206:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200206:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200206:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200207:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.5, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200207:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200207:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.15, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.09, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200207:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.04, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0710", + "P": 56.94, + "G(i)": 22.4, + "H_sun": 3.99, + "T2m": -1.19, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0810", + "P": 898.62, + "G(i)": 212.64, + "H_sun": 12.97, + "T2m": -0.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:0910", + "P": 2088.48, + "G(i)": 416.51, + "H_sun": 20.56, + "T2m": 3.06, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200207:1010", + "P": 2940.18, + "G(i)": 578.75, + "H_sun": 26.19, + "T2m": 5.9, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200207:1110", + "P": 3410.22, + "G(i)": 680.5, + "H_sun": 29.26, + "T2m": 8.07, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200207:1210", + "P": 3598.26, + "G(i)": 725.08, + "H_sun": 29.34, + "T2m": 9.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200207:1310", + "P": 3567.6, + "G(i)": 718.04, + "H_sun": 26.44, + "T2m": 10.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200207:1410", + "P": 3045.66, + "G(i)": 608.2, + "H_sun": 20.93, + "T2m": 11.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200207:1510", + "P": 2215.5, + "G(i)": 442.98, + "H_sun": 13.43, + "T2m": 11.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200207:1610", + "P": 72.9, + "G(i)": 26.02, + "H_sun": 4.52, + "T2m": 9.89, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200207:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.62, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200207:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.8, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200207:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200207:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.06, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200207:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200207:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.24, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200207:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200208:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200208:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200208:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200208:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200208:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200208:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200208:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200208:0710", + "P": 62.22, + "G(i)": 23.48, + "H_sun": 4.22, + "T2m": -0.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200208:0810", + "P": 585.72, + "G(i)": 129.25, + "H_sun": 13.22, + "T2m": 0.91, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200208:0910", + "P": 971.64, + "G(i)": 196.83, + "H_sun": 20.84, + "T2m": 3.61, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200208:1010", + "P": 2528.94, + "G(i)": 494.58, + "H_sun": 26.49, + "T2m": 6.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200208:1110", + "P": 2580.12, + "G(i)": 506.12, + "H_sun": 29.57, + "T2m": 7.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200208:1210", + "P": 2382.24, + "G(i)": 469.56, + "H_sun": 29.66, + "T2m": 8.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200208:1310", + "P": 3104.94, + "G(i)": 616.31, + "H_sun": 26.74, + "T2m": 9.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200208:1410", + "P": 2823.84, + "G(i)": 557.95, + "H_sun": 21.22, + "T2m": 9.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200208:1510", + "P": 1548.18, + "G(i)": 308.58, + "H_sun": 13.7, + "T2m": 9.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200208:1610", + "P": 77.46, + "G(i)": 26.98, + "H_sun": 4.77, + "T2m": 8.81, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200208:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.39, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200208:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.96, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200208:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.59, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200208:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200208:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200208:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200208:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200209:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200209:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200209:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200209:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.95, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200209:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200209:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.54, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200209:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200209:0710", + "P": 42.48, + "G(i)": 23.88, + "H_sun": 4.45, + "T2m": 0.94, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200209:0810", + "P": 618.18, + "G(i)": 136.13, + "H_sun": 13.47, + "T2m": 1.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200209:0910", + "P": 751.02, + "G(i)": 156.21, + "H_sun": 21.11, + "T2m": 4.61, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200209:1010", + "P": 570.72, + "G(i)": 123.51, + "H_sun": 26.79, + "T2m": 6.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200209:1110", + "P": 436.26, + "G(i)": 99.0, + "H_sun": 29.88, + "T2m": 8.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200209:1210", + "P": 342.24, + "G(i)": 81.36, + "H_sun": 29.98, + "T2m": 9.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200209:1310", + "P": 1242.6, + "G(i)": 250.68, + "H_sun": 27.05, + "T2m": 9.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200209:1410", + "P": 371.58, + "G(i)": 87.24, + "H_sun": 21.51, + "T2m": 10.13, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200209:1510", + "P": 513.06, + "G(i)": 114.01, + "H_sun": 13.97, + "T2m": 10.0, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200209:1610", + "P": 77.28, + "G(i)": 26.98, + "H_sun": 5.02, + "T2m": 9.3, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200209:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200209:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.8, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200209:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.32, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200209:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200209:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200209:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200209:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.47, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200210:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200210:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.31, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200210:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200210:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200210:0710", + "P": 71.7, + "G(i)": 26.52, + "H_sun": 4.69, + "T2m": 2.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200210:0810", + "P": 491.16, + "G(i)": 109.37, + "H_sun": 13.73, + "T2m": 3.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:0910", + "P": 645.24, + "G(i)": 136.0, + "H_sun": 21.39, + "T2m": 3.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200210:1010", + "P": 2468.52, + "G(i)": 476.99, + "H_sun": 27.09, + "T2m": 5.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:1110", + "P": 3459.78, + "G(i)": 676.1, + "H_sun": 30.2, + "T2m": 6.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200210:1210", + "P": 3699.72, + "G(i)": 730.68, + "H_sun": 30.3, + "T2m": 9.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200210:1310", + "P": 3580.68, + "G(i)": 714.18, + "H_sun": 27.36, + "T2m": 11.48, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200210:1410", + "P": 2983.62, + "G(i)": 596.65, + "H_sun": 21.81, + "T2m": 13.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:1510", + "P": 2095.38, + "G(i)": 423.78, + "H_sun": 14.24, + "T2m": 14.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200210:1610", + "P": 55.56, + "G(i)": 22.16, + "H_sun": 5.27, + "T2m": 13.16, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200210:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200210:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200210:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200210:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.8, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200210:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.79, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200210:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.4, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200210:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200211:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200211:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.8, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200211:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.83, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200211:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200211:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200211:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200211:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.65, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200211:0710", + "P": 24.3, + "G(i)": 24.81, + "H_sun": 4.93, + "T2m": 7.57, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200211:0810", + "P": 939.96, + "G(i)": 226.43, + "H_sun": 13.99, + "T2m": 9.33, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200211:0910", + "P": 2090.82, + "G(i)": 431.22, + "H_sun": 21.68, + "T2m": 11.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200211:1010", + "P": 2914.68, + "G(i)": 593.46, + "H_sun": 27.4, + "T2m": 14.45, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200211:1110", + "P": 3413.4, + "G(i)": 700.4, + "H_sun": 30.53, + "T2m": 16.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200211:1210", + "P": 3662.82, + "G(i)": 740.23, + "H_sun": 30.63, + "T2m": 16.8, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200211:1310", + "P": 3643.92, + "G(i)": 728.93, + "H_sun": 27.68, + "T2m": 16.84, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200211:1410", + "P": 3110.46, + "G(i)": 620.07, + "H_sun": 22.1, + "T2m": 16.63, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200211:1510", + "P": 2278.44, + "G(i)": 459.59, + "H_sun": 14.52, + "T2m": 16.03, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200211:1610", + "P": 79.08, + "G(i)": 27.94, + "H_sun": 5.53, + "T2m": 14.77, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200211:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200211:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200211:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200211:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200211:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200211:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.31, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200211:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.37, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200212:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.47, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200212:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200212:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200212:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200212:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.03, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200212:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200212:0710", + "P": 29.46, + "G(i)": 27.18, + "H_sun": 5.17, + "T2m": 3.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200212:0810", + "P": 1013.46, + "G(i)": 236.34, + "H_sun": 14.25, + "T2m": 3.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200212:0910", + "P": 2233.86, + "G(i)": 445.39, + "H_sun": 21.97, + "T2m": 6.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:1010", + "P": 3131.04, + "G(i)": 618.18, + "H_sun": 27.71, + "T2m": 8.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200212:1110", + "P": 3640.2, + "G(i)": 728.03, + "H_sun": 30.86, + "T2m": 10.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:1210", + "P": 3770.52, + "G(i)": 758.76, + "H_sun": 30.96, + "T2m": 11.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200212:1310", + "P": 3774.96, + "G(i)": 759.04, + "H_sun": 28.0, + "T2m": 12.47, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200212:1410", + "P": 3215.1, + "G(i)": 643.9, + "H_sun": 22.4, + "T2m": 12.74, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200212:1510", + "P": 2396.22, + "G(i)": 481.02, + "H_sun": 14.79, + "T2m": 12.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200212:1610", + "P": 72.24, + "G(i)": 26.02, + "H_sun": 5.78, + "T2m": 11.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200212:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.1, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200212:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200212:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200212:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200212:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.45, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200212:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200212:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.4, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200213:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200213:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.72, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200213:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200213:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200213:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200213:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200213:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200213:0710", + "P": 88.38, + "G(i)": 33.59, + "H_sun": 5.42, + "T2m": 1.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200213:0810", + "P": 1006.8, + "G(i)": 232.28, + "H_sun": 14.52, + "T2m": 2.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200213:0910", + "P": 2142.84, + "G(i)": 428.89, + "H_sun": 22.26, + "T2m": 5.53, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200213:1010", + "P": 3000.48, + "G(i)": 594.42, + "H_sun": 28.03, + "T2m": 7.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200213:1110", + "P": 3541.08, + "G(i)": 704.27, + "H_sun": 31.19, + "T2m": 9.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200213:1210", + "P": 3645.36, + "G(i)": 728.79, + "H_sun": 31.29, + "T2m": 10.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200213:1310", + "P": 3446.94, + "G(i)": 688.43, + "H_sun": 28.32, + "T2m": 10.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200213:1410", + "P": 1301.04, + "G(i)": 262.31, + "H_sun": 22.7, + "T2m": 11.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200213:1510", + "P": 1942.2, + "G(i)": 384.94, + "H_sun": 15.07, + "T2m": 10.85, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200213:1610", + "P": 507.18, + "G(i)": 116.46, + "H_sun": 6.04, + "T2m": 9.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200213:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.18, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200213:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.75, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200213:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200213:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200213:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.57, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200213:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200213:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200214:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.09, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200214:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200214:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200214:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200214:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.05, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.36, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0710", + "P": 51.72, + "G(i)": 32.08, + "H_sun": 5.68, + "T2m": 1.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200214:0810", + "P": 993.6, + "G(i)": 224.61, + "H_sun": 14.8, + "T2m": 3.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200214:0910", + "P": 2155.5, + "G(i)": 430.99, + "H_sun": 22.56, + "T2m": 6.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1010", + "P": 3046.62, + "G(i)": 607.4, + "H_sun": 28.35, + "T2m": 9.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200214:1110", + "P": 3574.92, + "G(i)": 722.88, + "H_sun": 31.53, + "T2m": 11.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1210", + "P": 3690.12, + "G(i)": 754.44, + "H_sun": 31.63, + "T2m": 12.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1310", + "P": 3680.94, + "G(i)": 753.71, + "H_sun": 28.64, + "T2m": 13.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200214:1410", + "P": 3146.58, + "G(i)": 635.92, + "H_sun": 23.0, + "T2m": 14.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200214:1510", + "P": 2035.32, + "G(i)": 410.81, + "H_sun": 15.34, + "T2m": 13.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200214:1610", + "P": 887.94, + "G(i)": 194.89, + "H_sun": 6.29, + "T2m": 13.09, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200214:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.34, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200214:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.28, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200214:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200214:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.22, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200214:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.07, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200214:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200214:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200215:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.56, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200215:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200215:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.24, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200215:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200215:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200215:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200215:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200215:0710", + "P": 91.8, + "G(i)": 42.51, + "H_sun": 5.94, + "T2m": 1.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200215:0810", + "P": 1001.22, + "G(i)": 225.72, + "H_sun": 15.08, + "T2m": 3.33, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200215:0910", + "P": 1902.24, + "G(i)": 380.18, + "H_sun": 22.86, + "T2m": 6.37, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200215:1010", + "P": 3013.38, + "G(i)": 601.86, + "H_sun": 28.68, + "T2m": 9.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200215:1110", + "P": 3560.94, + "G(i)": 721.29, + "H_sun": 31.87, + "T2m": 10.99, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200215:1210", + "P": 3702.12, + "G(i)": 752.35, + "H_sun": 31.97, + "T2m": 12.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200215:1310", + "P": 3694.98, + "G(i)": 751.34, + "H_sun": 28.96, + "T2m": 13.15, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200215:1410", + "P": 3114.36, + "G(i)": 628.04, + "H_sun": 23.3, + "T2m": 13.47, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200215:1510", + "P": 1958.34, + "G(i)": 393.62, + "H_sun": 15.62, + "T2m": 13.38, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200215:1610", + "P": 596.58, + "G(i)": 135.14, + "H_sun": 6.55, + "T2m": 12.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200215:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.47, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200215:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.76, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200215:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.07, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200215:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200215:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200215:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.45, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200215:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.68, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200216:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.71, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200216:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.09, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200216:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200216:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200216:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200216:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:0710", + "P": 114.12, + "G(i)": 45.32, + "H_sun": 6.2, + "T2m": 2.42, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200216:0810", + "P": 1002.36, + "G(i)": 224.89, + "H_sun": 15.36, + "T2m": 3.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200216:0910", + "P": 2109.3, + "G(i)": 419.5, + "H_sun": 23.17, + "T2m": 5.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200216:1010", + "P": 2864.64, + "G(i)": 564.23, + "H_sun": 29.01, + "T2m": 7.86, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200216:1110", + "P": 2816.16, + "G(i)": 555.45, + "H_sun": 32.21, + "T2m": 9.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200216:1210", + "P": 2699.16, + "G(i)": 534.49, + "H_sun": 32.31, + "T2m": 10.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:1310", + "P": 2331.3, + "G(i)": 462.26, + "H_sun": 29.29, + "T2m": 10.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200216:1410", + "P": 993.72, + "G(i)": 205.64, + "H_sun": 23.6, + "T2m": 11.03, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200216:1510", + "P": 761.34, + "G(i)": 161.64, + "H_sun": 15.9, + "T2m": 11.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200216:1610", + "P": 394.26, + "G(i)": 93.71, + "H_sun": 6.8, + "T2m": 10.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200216:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200216:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200216:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.08, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200216:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200216:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200216:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.17, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200216:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.95, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200217:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200217:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200217:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.44, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200217:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200217:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200217:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200217:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200217:0710", + "P": 89.52, + "G(i)": 29.76, + "H_sun": 6.47, + "T2m": 6.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200217:0810", + "P": 402.54, + "G(i)": 92.15, + "H_sun": 15.65, + "T2m": 6.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200217:0910", + "P": 310.98, + "G(i)": 74.5, + "H_sun": 23.48, + "T2m": 6.81, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:1010", + "P": 381.18, + "G(i)": 88.22, + "H_sun": 29.34, + "T2m": 7.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:1110", + "P": 416.82, + "G(i)": 95.08, + "H_sun": 32.56, + "T2m": 7.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200217:1210", + "P": 525.54, + "G(i)": 115.67, + "H_sun": 32.66, + "T2m": 8.07, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1310", + "P": 954.0, + "G(i)": 195.45, + "H_sun": 29.62, + "T2m": 8.32, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1410", + "P": 446.7, + "G(i)": 100.97, + "H_sun": 23.91, + "T2m": 8.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200217:1510", + "P": 391.68, + "G(i)": 90.43, + "H_sun": 16.18, + "T2m": 8.33, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1610", + "P": 509.94, + "G(i)": 115.3, + "H_sun": 7.06, + "T2m": 8.12, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200217:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.68, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200217:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200217:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200217:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200217:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200217:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.76, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200218:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.38, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200218:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.11, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200218:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200218:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.28, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200218:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200218:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200218:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200218:0710", + "P": 128.76, + "G(i)": 51.45, + "H_sun": 6.74, + "T2m": 3.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:0810", + "P": 853.56, + "G(i)": 184.15, + "H_sun": 15.94, + "T2m": 5.35, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200218:0910", + "P": 1957.26, + "G(i)": 391.36, + "H_sun": 23.8, + "T2m": 9.15, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:1010", + "P": 3162.9, + "G(i)": 630.81, + "H_sun": 29.68, + "T2m": 11.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:1110", + "P": 3686.04, + "G(i)": 747.13, + "H_sun": 32.91, + "T2m": 13.03, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200218:1210", + "P": 3778.56, + "G(i)": 774.73, + "H_sun": 33.0, + "T2m": 14.09, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200218:1310", + "P": 3755.7, + "G(i)": 774.3, + "H_sun": 29.95, + "T2m": 14.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200218:1410", + "P": 3195.96, + "G(i)": 650.44, + "H_sun": 24.21, + "T2m": 14.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200218:1510", + "P": 2388.3, + "G(i)": 484.57, + "H_sun": 16.45, + "T2m": 14.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200218:1610", + "P": 1142.58, + "G(i)": 245.99, + "H_sun": 7.32, + "T2m": 13.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200218:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200218:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200218:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200218:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.04, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200218:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200218:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200218:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200219:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200219:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.2, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200219:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.43, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200219:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.72, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200219:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200219:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200219:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200219:0710", + "P": 119.58, + "G(i)": 53.95, + "H_sun": 7.02, + "T2m": 3.74, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200219:0810", + "P": 991.98, + "G(i)": 214.65, + "H_sun": 16.24, + "T2m": 3.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200219:0910", + "P": 1110.72, + "G(i)": 224.64, + "H_sun": 24.12, + "T2m": 6.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200219:1010", + "P": 3008.34, + "G(i)": 595.41, + "H_sun": 30.02, + "T2m": 9.25, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200219:1110", + "P": 3725.46, + "G(i)": 748.91, + "H_sun": 33.26, + "T2m": 11.71, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200219:1210", + "P": 3864.12, + "G(i)": 781.43, + "H_sun": 33.36, + "T2m": 13.36, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200219:1310", + "P": 3808.02, + "G(i)": 769.86, + "H_sun": 30.28, + "T2m": 14.48, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200219:1410", + "P": 3315.9, + "G(i)": 662.93, + "H_sun": 24.52, + "T2m": 15.1, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200219:1510", + "P": 2474.58, + "G(i)": 495.45, + "H_sun": 16.73, + "T2m": 14.95, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200219:1610", + "P": 1210.62, + "G(i)": 257.78, + "H_sun": 7.58, + "T2m": 13.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200219:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200219:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200219:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200219:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200219:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200219:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200219:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200220:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.8, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200220:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.81, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200220:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200220:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.82, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200220:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.06, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200220:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200220:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200220:0710", + "P": 189.18, + "G(i)": 56.94, + "H_sun": 7.3, + "T2m": 2.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200220:0810", + "P": 1089.84, + "G(i)": 238.65, + "H_sun": 16.54, + "T2m": 4.32, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200220:0910", + "P": 2311.26, + "G(i)": 461.8, + "H_sun": 24.44, + "T2m": 7.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200220:1010", + "P": 3019.98, + "G(i)": 599.55, + "H_sun": 30.37, + "T2m": 9.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200220:1110", + "P": 3650.1, + "G(i)": 733.68, + "H_sun": 33.62, + "T2m": 11.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200220:1210", + "P": 3479.7, + "G(i)": 700.57, + "H_sun": 33.71, + "T2m": 12.12, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200220:1310", + "P": 3760.2, + "G(i)": 763.78, + "H_sun": 30.62, + "T2m": 12.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200220:1410", + "P": 3291.78, + "G(i)": 662.61, + "H_sun": 24.82, + "T2m": 13.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200220:1510", + "P": 2615.04, + "G(i)": 524.47, + "H_sun": 17.01, + "T2m": 13.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200220:1610", + "P": 1141.62, + "G(i)": 241.65, + "H_sun": 7.83, + "T2m": 12.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200220:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.04, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200220:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200220:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.67, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200220:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.14, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200220:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200220:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200220:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200221:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200221:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200221:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200221:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.29, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200221:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200221:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200221:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:0710", + "P": 128.34, + "G(i)": 59.66, + "H_sun": 7.59, + "T2m": 1.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200221:0810", + "P": 1188.48, + "G(i)": 261.9, + "H_sun": 16.85, + "T2m": 2.94, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200221:0910", + "P": 2290.98, + "G(i)": 457.07, + "H_sun": 24.77, + "T2m": 6.8, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200221:1010", + "P": 2847.96, + "G(i)": 565.76, + "H_sun": 30.72, + "T2m": 9.68, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200221:1110", + "P": 2388.78, + "G(i)": 475.98, + "H_sun": 33.98, + "T2m": 11.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1210", + "P": 3048.48, + "G(i)": 615.47, + "H_sun": 34.07, + "T2m": 13.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200221:1310", + "P": 2954.16, + "G(i)": 597.1, + "H_sun": 30.96, + "T2m": 14.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1410", + "P": 3087.06, + "G(i)": 626.04, + "H_sun": 25.13, + "T2m": 14.87, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1510", + "P": 2402.28, + "G(i)": 485.42, + "H_sun": 17.29, + "T2m": 14.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200221:1610", + "P": 1326.6, + "G(i)": 281.03, + "H_sun": 8.09, + "T2m": 13.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200221:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200221:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.97, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200221:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.81, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200221:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200221:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.76, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200221:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200221:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.59, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200222:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200222:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200222:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200222:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200222:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200222:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200222:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200222:0710", + "P": 166.8, + "G(i)": 63.22, + "H_sun": 7.88, + "T2m": 2.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200222:0810", + "P": 1166.22, + "G(i)": 254.91, + "H_sun": 17.15, + "T2m": 3.69, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200222:0910", + "P": 2296.44, + "G(i)": 456.43, + "H_sun": 25.1, + "T2m": 6.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200222:1010", + "P": 3238.02, + "G(i)": 645.23, + "H_sun": 31.07, + "T2m": 8.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200222:1110", + "P": 3676.26, + "G(i)": 742.8, + "H_sun": 34.35, + "T2m": 10.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200222:1210", + "P": 3790.86, + "G(i)": 772.48, + "H_sun": 34.43, + "T2m": 11.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200222:1310", + "P": 3797.46, + "G(i)": 772.44, + "H_sun": 31.29, + "T2m": 12.48, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200222:1410", + "P": 3284.46, + "G(i)": 660.74, + "H_sun": 25.44, + "T2m": 12.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200222:1510", + "P": 2427.18, + "G(i)": 485.51, + "H_sun": 17.58, + "T2m": 12.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200222:1610", + "P": 1118.16, + "G(i)": 236.59, + "H_sun": 8.35, + "T2m": 12.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200222:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200222:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200222:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.44, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200222:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200222:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.18, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200222:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200222:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200223:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200223:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.36, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200223:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.86, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200223:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.8, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200223:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200223:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200223:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200223:0710", + "P": 202.2, + "G(i)": 55.04, + "H_sun": 8.17, + "T2m": 3.88, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200223:0810", + "P": 669.84, + "G(i)": 143.65, + "H_sun": 17.47, + "T2m": 5.61, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200223:0910", + "P": 2006.1, + "G(i)": 400.5, + "H_sun": 25.44, + "T2m": 8.22, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200223:1010", + "P": 2625.24, + "G(i)": 519.34, + "H_sun": 31.42, + "T2m": 10.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200223:1110", + "P": 2825.04, + "G(i)": 564.22, + "H_sun": 34.71, + "T2m": 12.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200223:1210", + "P": 3499.8, + "G(i)": 709.9, + "H_sun": 34.79, + "T2m": 14.05, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200223:1310", + "P": 1488.36, + "G(i)": 303.68, + "H_sun": 31.63, + "T2m": 15.29, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200223:1410", + "P": 1649.34, + "G(i)": 334.07, + "H_sun": 25.75, + "T2m": 15.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200223:1510", + "P": 769.08, + "G(i)": 165.83, + "H_sun": 17.86, + "T2m": 15.73, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200223:1610", + "P": 324.0, + "G(i)": 80.21, + "H_sun": 8.61, + "T2m": 14.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200223:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.3, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200223:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200223:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.12, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200223:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.29, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200223:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200223:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.86, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200223:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.33, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200224:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.06, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.71, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200224:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200224:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.8, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200224:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:0710", + "P": 161.52, + "G(i)": 70.54, + "H_sun": 8.46, + "T2m": 5.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:0810", + "P": 1246.98, + "G(i)": 276.38, + "H_sun": 17.78, + "T2m": 7.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200224:0910", + "P": 2392.92, + "G(i)": 481.97, + "H_sun": 25.77, + "T2m": 10.42, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200224:1010", + "P": 3233.94, + "G(i)": 654.4, + "H_sun": 31.78, + "T2m": 12.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200224:1110", + "P": 3680.22, + "G(i)": 761.05, + "H_sun": 35.08, + "T2m": 15.09, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200224:1210", + "P": 3708.54, + "G(i)": 773.12, + "H_sun": 35.15, + "T2m": 16.63, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200224:1310", + "P": 3718.86, + "G(i)": 773.83, + "H_sun": 31.97, + "T2m": 17.69, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200224:1410", + "P": 3315.96, + "G(i)": 682.99, + "H_sun": 26.06, + "T2m": 18.19, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200224:1510", + "P": 2547.3, + "G(i)": 521.17, + "H_sun": 18.14, + "T2m": 18.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:1610", + "P": 1307.76, + "G(i)": 279.71, + "H_sun": 8.86, + "T2m": 16.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200224:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.22, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.96, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200224:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.93, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200224:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.07, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200224:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200224:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200224:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200225:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.22, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200225:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200225:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200225:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200225:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200225:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200225:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.48, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200225:0710", + "P": 14.52, + "G(i)": 10.78, + "H_sun": 8.76, + "T2m": 6.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200225:0810", + "P": 176.4, + "G(i)": 48.03, + "H_sun": 18.1, + "T2m": 7.46, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200225:0910", + "P": 661.32, + "G(i)": 141.31, + "H_sun": 26.11, + "T2m": 8.36, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200225:1010", + "P": 1081.92, + "G(i)": 220.57, + "H_sun": 32.14, + "T2m": 9.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200225:1110", + "P": 1671.78, + "G(i)": 333.08, + "H_sun": 35.45, + "T2m": 10.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200225:1210", + "P": 486.3, + "G(i)": 109.79, + "H_sun": 35.52, + "T2m": 11.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200225:1310", + "P": 643.2, + "G(i)": 140.18, + "H_sun": 32.32, + "T2m": 11.99, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200225:1410", + "P": 673.68, + "G(i)": 145.82, + "H_sun": 26.37, + "T2m": 12.23, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200225:1510", + "P": 1657.62, + "G(i)": 329.63, + "H_sun": 18.42, + "T2m": 12.06, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200225:1610", + "P": 264.54, + "G(i)": 66.9, + "H_sun": 9.12, + "T2m": 11.27, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200225:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200225:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200225:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200225:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200225:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200225:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200225:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200226:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200226:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200226:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200226:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.51, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200226:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.54, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200226:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.31, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200226:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.2, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200226:0710", + "P": 187.02, + "G(i)": 79.32, + "H_sun": 9.07, + "T2m": 4.05, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200226:0810", + "P": 1365.3, + "G(i)": 298.57, + "H_sun": 18.42, + "T2m": 7.16, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200226:0910", + "P": 2545.92, + "G(i)": 506.46, + "H_sun": 26.46, + "T2m": 11.51, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200226:1010", + "P": 3555.24, + "G(i)": 692.24, + "H_sun": 32.51, + "T2m": 12.4, + "WS10m": 4.69, + "Int": 0.0 + }, + { + "time": "20200226:1110", + "P": 4015.56, + "G(i)": 777.68, + "H_sun": 35.83, + "T2m": 11.58, + "WS10m": 5.24, + "Int": 0.0 + }, + { + "time": "20200226:1210", + "P": 4084.08, + "G(i)": 788.61, + "H_sun": 35.88, + "T2m": 11.46, + "WS10m": 5.79, + "Int": 0.0 + }, + { + "time": "20200226:1310", + "P": 4186.62, + "G(i)": 802.91, + "H_sun": 32.66, + "T2m": 11.42, + "WS10m": 6.9, + "Int": 0.0 + }, + { + "time": "20200226:1410", + "P": 3736.8, + "G(i)": 711.36, + "H_sun": 26.68, + "T2m": 10.75, + "WS10m": 7.03, + "Int": 0.0 + }, + { + "time": "20200226:1510", + "P": 2766.0, + "G(i)": 528.26, + "H_sun": 18.7, + "T2m": 10.21, + "WS10m": 6.62, + "Int": 0.0 + }, + { + "time": "20200226:1610", + "P": 657.48, + "G(i)": 141.98, + "H_sun": 9.38, + "T2m": 9.27, + "WS10m": 5.52, + "Int": 0.0 + }, + { + "time": "20200226:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.98, + "WS10m": 4.62, + "Int": 0.0 + }, + { + "time": "20200226:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.89, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200226:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.65, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200226:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.69, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200226:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.57, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200226:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.87, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200226:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.34, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200227:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200227:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200227:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.9, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200227:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200227:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.75, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200227:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200227:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.23, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200227:0710", + "P": 204.12, + "G(i)": 81.51, + "H_sun": 9.37, + "T2m": 1.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200227:0810", + "P": 1313.34, + "G(i)": 277.97, + "H_sun": 18.75, + "T2m": 2.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200227:0910", + "P": 2322.0, + "G(i)": 453.97, + "H_sun": 26.81, + "T2m": 5.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200227:1010", + "P": 3536.22, + "G(i)": 690.49, + "H_sun": 32.88, + "T2m": 7.77, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200227:1110", + "P": 3778.62, + "G(i)": 745.58, + "H_sun": 36.21, + "T2m": 9.36, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200227:1210", + "P": 3892.56, + "G(i)": 775.97, + "H_sun": 36.25, + "T2m": 10.55, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200227:1310", + "P": 2862.06, + "G(i)": 563.94, + "H_sun": 33.0, + "T2m": 11.06, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200227:1410", + "P": 1000.2, + "G(i)": 205.68, + "H_sun": 26.99, + "T2m": 10.68, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200227:1510", + "P": 2412.6, + "G(i)": 468.38, + "H_sun": 18.98, + "T2m": 9.82, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200227:1610", + "P": 1522.44, + "G(i)": 307.19, + "H_sun": 9.63, + "T2m": 8.43, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200227:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.7, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200227:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200227:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200227:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.11, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200227:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200227:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200227:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200228:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200228:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200228:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200228:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.49, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200228:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.76, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200228:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.63, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200228:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200228:0710", + "P": 245.94, + "G(i)": 86.96, + "H_sun": 9.68, + "T2m": 1.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200228:0810", + "P": 1416.06, + "G(i)": 306.38, + "H_sun": 19.07, + "T2m": 4.91, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200228:0910", + "P": 2581.98, + "G(i)": 518.55, + "H_sun": 27.16, + "T2m": 8.14, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200228:1010", + "P": 3516.48, + "G(i)": 701.94, + "H_sun": 33.25, + "T2m": 9.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200228:1110", + "P": 3977.22, + "G(i)": 798.26, + "H_sun": 36.59, + "T2m": 10.7, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200228:1210", + "P": 3951.72, + "G(i)": 792.89, + "H_sun": 36.62, + "T2m": 11.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200228:1310", + "P": 4046.22, + "G(i)": 812.12, + "H_sun": 33.35, + "T2m": 11.98, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200228:1410", + "P": 3597.12, + "G(i)": 714.8, + "H_sun": 27.31, + "T2m": 12.35, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200228:1510", + "P": 2790.24, + "G(i)": 551.22, + "H_sun": 19.26, + "T2m": 12.34, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200228:1610", + "P": 1453.32, + "G(i)": 299.33, + "H_sun": 9.89, + "T2m": 11.63, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200228:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.63, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200228:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.68, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200228:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.74, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200228:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.54, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200228:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200228:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200228:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200229:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200229:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200229:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200229:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200229:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200229:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200229:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.14, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200229:0710", + "P": 312.36, + "G(i)": 80.6, + "H_sun": 9.68, + "T2m": 2.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200229:0810", + "P": 638.22, + "G(i)": 135.93, + "H_sun": 19.07, + "T2m": 4.82, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200229:0910", + "P": 1206.18, + "G(i)": 242.49, + "H_sun": 27.16, + "T2m": 7.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200229:1010", + "P": 2934.96, + "G(i)": 575.16, + "H_sun": 33.25, + "T2m": 8.73, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200229:1110", + "P": 1469.88, + "G(i)": 293.79, + "H_sun": 36.59, + "T2m": 9.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200229:1210", + "P": 1002.78, + "G(i)": 206.3, + "H_sun": 36.62, + "T2m": 9.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200229:1310", + "P": 276.36, + "G(i)": 68.62, + "H_sun": 33.35, + "T2m": 10.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200229:1410", + "P": 242.04, + "G(i)": 61.76, + "H_sun": 27.31, + "T2m": 9.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200229:1510", + "P": 992.04, + "G(i)": 202.59, + "H_sun": 19.26, + "T2m": 9.45, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200229:1610", + "P": 71.04, + "G(i)": 25.49, + "H_sun": 9.89, + "T2m": 8.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200229:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200229:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.93, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200229:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.9, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200229:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200229:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.75, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200229:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200229:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200301:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200301:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200301:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200301:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200301:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.93, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200301:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200301:0710", + "P": 91.5, + "G(i)": 29.41, + "H_sun": 10.0, + "T2m": 1.71, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200301:0810", + "P": 1107.84, + "G(i)": 227.12, + "H_sun": 19.4, + "T2m": 2.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:0910", + "P": 1922.64, + "G(i)": 372.08, + "H_sun": 27.51, + "T2m": 3.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200301:1010", + "P": 1832.94, + "G(i)": 355.32, + "H_sun": 33.62, + "T2m": 4.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:1110", + "P": 790.92, + "G(i)": 163.7, + "H_sun": 36.97, + "T2m": 5.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200301:1210", + "P": 1715.28, + "G(i)": 336.4, + "H_sun": 36.99, + "T2m": 6.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:1310", + "P": 2820.06, + "G(i)": 551.04, + "H_sun": 33.69, + "T2m": 7.24, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200301:1410", + "P": 1499.22, + "G(i)": 295.94, + "H_sun": 27.62, + "T2m": 7.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200301:1510", + "P": 2184.54, + "G(i)": 426.1, + "H_sun": 19.54, + "T2m": 8.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200301:1610", + "P": 294.12, + "G(i)": 71.85, + "H_sun": 10.15, + "T2m": 8.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200301:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.64, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200301:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200301:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200301:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200301:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.76, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200301:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200301:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200302:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200302:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200302:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200302:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200302:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200302:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.2, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200302:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.98, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200302:0710", + "P": 137.46, + "G(i)": 39.21, + "H_sun": 10.31, + "T2m": 2.49, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200302:0810", + "P": 368.28, + "G(i)": 84.3, + "H_sun": 19.74, + "T2m": 3.43, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200302:0910", + "P": 295.08, + "G(i)": 70.58, + "H_sun": 27.86, + "T2m": 4.04, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200302:1010", + "P": 393.3, + "G(i)": 89.2, + "H_sun": 33.99, + "T2m": 4.15, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200302:1110", + "P": 525.18, + "G(i)": 113.71, + "H_sun": 37.35, + "T2m": 4.16, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200302:1210", + "P": 487.92, + "G(i)": 106.85, + "H_sun": 37.37, + "T2m": 4.33, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200302:1310", + "P": 208.38, + "G(i)": 53.91, + "H_sun": 34.04, + "T2m": 4.84, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200302:1410", + "P": 272.82, + "G(i)": 66.66, + "H_sun": 27.93, + "T2m": 5.43, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200302:1510", + "P": 76.56, + "G(i)": 26.47, + "H_sun": 19.82, + "T2m": 5.72, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200302:1610", + "P": 168.42, + "G(i)": 46.07, + "H_sun": 10.4, + "T2m": 5.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200302:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.36, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200302:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.93, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200302:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.85, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200302:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200302:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.01, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200302:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200302:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.58, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200303:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200303:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200303:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200303:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.03, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200303:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.5, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200303:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200303:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.68, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200303:0710", + "P": 354.12, + "G(i)": 101.36, + "H_sun": 10.63, + "T2m": 3.25, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200303:0810", + "P": 1510.74, + "G(i)": 318.13, + "H_sun": 20.07, + "T2m": 5.73, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200303:0910", + "P": 2764.02, + "G(i)": 543.8, + "H_sun": 28.22, + "T2m": 9.01, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200303:1010", + "P": 3174.06, + "G(i)": 622.02, + "H_sun": 34.37, + "T2m": 11.38, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200303:1110", + "P": 4189.98, + "G(i)": 838.93, + "H_sun": 37.74, + "T2m": 12.55, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200303:1210", + "P": 4109.82, + "G(i)": 837.35, + "H_sun": 37.74, + "T2m": 13.34, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200303:1310", + "P": 4122.9, + "G(i)": 847.23, + "H_sun": 34.38, + "T2m": 13.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200303:1410", + "P": 2256.48, + "G(i)": 451.66, + "H_sun": 28.24, + "T2m": 13.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200303:1510", + "P": 2374.38, + "G(i)": 474.51, + "H_sun": 20.1, + "T2m": 13.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200303:1610", + "P": 1160.28, + "G(i)": 242.34, + "H_sun": 10.65, + "T2m": 12.85, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200303:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200303:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200303:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200303:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200303:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200303:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200303:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200304:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.39, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200304:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.07, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200304:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200304:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.02, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200304:0710", + "P": 335.82, + "G(i)": 106.08, + "H_sun": 10.95, + "T2m": 2.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200304:0810", + "P": 1542.6, + "G(i)": 325.17, + "H_sun": 20.41, + "T2m": 4.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200304:0910", + "P": 2694.72, + "G(i)": 535.35, + "H_sun": 28.58, + "T2m": 7.67, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200304:1010", + "P": 3541.74, + "G(i)": 712.76, + "H_sun": 34.75, + "T2m": 9.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200304:1110", + "P": 3962.28, + "G(i)": 815.84, + "H_sun": 38.13, + "T2m": 11.51, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200304:1210", + "P": 4004.82, + "G(i)": 821.2, + "H_sun": 38.12, + "T2m": 12.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200304:1310", + "P": 3720.36, + "G(i)": 754.62, + "H_sun": 34.73, + "T2m": 12.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200304:1410", + "P": 3324.0, + "G(i)": 666.16, + "H_sun": 28.55, + "T2m": 12.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200304:1510", + "P": 2780.52, + "G(i)": 552.76, + "H_sun": 20.37, + "T2m": 12.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200304:1610", + "P": 1526.34, + "G(i)": 313.05, + "H_sun": 10.91, + "T2m": 12.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200304:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200304:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.29, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200304:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.93, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200304:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200304:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200304:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.38, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200304:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200305:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200305:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200305:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200305:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200305:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.32, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200305:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200305:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200305:0710", + "P": 307.68, + "G(i)": 74.39, + "H_sun": 11.27, + "T2m": 3.17, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200305:0810", + "P": 616.14, + "G(i)": 131.11, + "H_sun": 20.75, + "T2m": 4.83, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200305:0910", + "P": 2073.9, + "G(i)": 401.38, + "H_sun": 28.94, + "T2m": 5.51, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200305:1010", + "P": 526.32, + "G(i)": 114.69, + "H_sun": 35.13, + "T2m": 6.04, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200305:1110", + "P": 654.24, + "G(i)": 138.21, + "H_sun": 38.52, + "T2m": 6.05, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200305:1210", + "P": 395.34, + "G(i)": 90.18, + "H_sun": 38.5, + "T2m": 6.02, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200305:1310", + "P": 416.4, + "G(i)": 94.1, + "H_sun": 35.08, + "T2m": 5.9, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200305:1410", + "P": 232.32, + "G(i)": 58.81, + "H_sun": 28.86, + "T2m": 5.62, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200305:1510", + "P": 247.56, + "G(i)": 61.76, + "H_sun": 20.65, + "T2m": 5.4, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200305:1610", + "P": 47.64, + "G(i)": 19.6, + "H_sun": 11.16, + "T2m": 4.99, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200305:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.51, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200305:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200305:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.53, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200305:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200305:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.58, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200305:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200305:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200306:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200306:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200306:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200306:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200306:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.06, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200306:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200306:0710", + "P": 313.14, + "G(i)": 74.46, + "H_sun": 11.6, + "T2m": 1.4, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200306:0810", + "P": 421.2, + "G(i)": 94.1, + "H_sun": 21.1, + "T2m": 2.53, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200306:0910", + "P": 871.2, + "G(i)": 177.66, + "H_sun": 29.31, + "T2m": 3.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200306:1010", + "P": 1563.9, + "G(i)": 308.2, + "H_sun": 35.52, + "T2m": 5.71, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200306:1110", + "P": 3980.58, + "G(i)": 801.32, + "H_sun": 38.91, + "T2m": 8.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200306:1210", + "P": 4251.72, + "G(i)": 868.53, + "H_sun": 38.87, + "T2m": 9.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1310", + "P": 4226.4, + "G(i)": 866.84, + "H_sun": 35.43, + "T2m": 11.34, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200306:1410", + "P": 3659.28, + "G(i)": 743.54, + "H_sun": 29.17, + "T2m": 12.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1510", + "P": 2890.56, + "G(i)": 581.67, + "H_sun": 20.93, + "T2m": 12.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1610", + "P": 1680.78, + "G(i)": 346.13, + "H_sun": 11.41, + "T2m": 12.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200306:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200306:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.48, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200306:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.57, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200306:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200306:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.76, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200306:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200306:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200307:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200307:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200307:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200307:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200307:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200307:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.09, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:0710", + "P": 397.38, + "G(i)": 120.25, + "H_sun": 11.93, + "T2m": 2.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200307:0810", + "P": 1647.36, + "G(i)": 344.16, + "H_sun": 21.44, + "T2m": 5.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200307:0910", + "P": 2813.52, + "G(i)": 555.23, + "H_sun": 29.67, + "T2m": 8.59, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:1010", + "P": 3684.24, + "G(i)": 732.92, + "H_sun": 35.9, + "T2m": 11.04, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200307:1110", + "P": 4224.42, + "G(i)": 856.6, + "H_sun": 39.3, + "T2m": 12.81, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200307:1210", + "P": 4196.28, + "G(i)": 864.56, + "H_sun": 39.25, + "T2m": 13.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200307:1310", + "P": 4218.96, + "G(i)": 879.92, + "H_sun": 35.77, + "T2m": 14.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200307:1410", + "P": 3779.4, + "G(i)": 781.72, + "H_sun": 29.48, + "T2m": 14.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200307:1510", + "P": 2872.44, + "G(i)": 584.55, + "H_sun": 21.2, + "T2m": 14.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200307:1610", + "P": 1630.08, + "G(i)": 338.4, + "H_sun": 11.67, + "T2m": 14.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200307:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.32, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200307:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.22, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200307:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.51, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200307:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.05, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200307:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.21, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200307:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.95, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200307:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.59, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200308:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.19, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200308:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200308:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200308:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200308:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200308:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.86, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200308:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200308:0710", + "P": 454.32, + "G(i)": 108.75, + "H_sun": 12.26, + "T2m": 2.13, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200308:0810", + "P": 1574.34, + "G(i)": 326.33, + "H_sun": 21.79, + "T2m": 4.72, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200308:0910", + "P": 2384.76, + "G(i)": 471.64, + "H_sun": 30.04, + "T2m": 7.76, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200308:1010", + "P": 3345.54, + "G(i)": 670.65, + "H_sun": 36.29, + "T2m": 9.7, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200308:1110", + "P": 4025.34, + "G(i)": 825.59, + "H_sun": 39.7, + "T2m": 11.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200308:1210", + "P": 4050.12, + "G(i)": 834.08, + "H_sun": 39.63, + "T2m": 12.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200308:1310", + "P": 2796.66, + "G(i)": 562.76, + "H_sun": 36.12, + "T2m": 12.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200308:1410", + "P": 1779.66, + "G(i)": 357.86, + "H_sun": 29.79, + "T2m": 13.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200308:1510", + "P": 2529.54, + "G(i)": 504.82, + "H_sun": 21.48, + "T2m": 13.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200308:1610", + "P": 112.32, + "G(i)": 35.29, + "H_sun": 11.92, + "T2m": 12.84, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200308:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200308:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200308:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.83, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200308:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.92, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200308:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200308:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200308:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200309:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200309:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200309:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200309:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200309:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.08, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200309:0610", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 2.32, + "T2m": 3.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200309:0710", + "P": 47.88, + "G(i)": 19.6, + "H_sun": 12.59, + "T2m": 4.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:0810", + "P": 251.58, + "G(i)": 62.74, + "H_sun": 22.14, + "T2m": 5.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200309:0910", + "P": 492.72, + "G(i)": 108.81, + "H_sun": 30.41, + "T2m": 6.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200309:1010", + "P": 1968.42, + "G(i)": 384.97, + "H_sun": 36.68, + "T2m": 6.63, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200309:1110", + "P": 1122.96, + "G(i)": 227.06, + "H_sun": 40.09, + "T2m": 7.34, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200309:1210", + "P": 3330.6, + "G(i)": 659.99, + "H_sun": 40.01, + "T2m": 7.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200309:1310", + "P": 2003.46, + "G(i)": 394.11, + "H_sun": 36.47, + "T2m": 8.62, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200309:1410", + "P": 2332.32, + "G(i)": 457.32, + "H_sun": 30.1, + "T2m": 9.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:1510", + "P": 2320.2, + "G(i)": 457.57, + "H_sun": 21.75, + "T2m": 9.72, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200309:1610", + "P": 835.74, + "G(i)": 176.27, + "H_sun": 12.17, + "T2m": 9.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200309:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200309:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200309:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.5, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200309:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200309:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.81, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200309:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200309:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200310:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200310:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200310:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.11, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200310:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200310:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200310:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200310:0610", + "P": 0.54, + "G(i)": 5.78, + "H_sun": 2.64, + "T2m": 2.4, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200310:0710", + "P": 436.62, + "G(i)": 100.99, + "H_sun": 12.92, + "T2m": 3.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200310:0810", + "P": 1628.04, + "G(i)": 338.15, + "H_sun": 22.49, + "T2m": 5.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200310:0910", + "P": 2628.06, + "G(i)": 521.98, + "H_sun": 30.78, + "T2m": 7.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200310:1010", + "P": 2914.38, + "G(i)": 580.81, + "H_sun": 37.07, + "T2m": 9.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200310:1110", + "P": 3783.6, + "G(i)": 767.3, + "H_sun": 40.49, + "T2m": 11.6, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200310:1210", + "P": 4153.68, + "G(i)": 851.35, + "H_sun": 40.39, + "T2m": 12.45, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200310:1310", + "P": 4048.32, + "G(i)": 831.34, + "H_sun": 36.81, + "T2m": 13.5, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200310:1410", + "P": 3623.88, + "G(i)": 737.74, + "H_sun": 30.4, + "T2m": 14.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200310:1510", + "P": 2748.96, + "G(i)": 550.83, + "H_sun": 22.03, + "T2m": 14.06, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200310:1610", + "P": 1355.58, + "G(i)": 279.76, + "H_sun": 12.41, + "T2m": 13.53, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200310:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200310:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200310:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.93, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200310:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.07, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200310:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200310:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200310:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200311:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200311:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200311:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200311:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200311:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200311:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200311:0610", + "P": 27.9, + "G(i)": 14.45, + "H_sun": 2.97, + "T2m": 3.09, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200311:0710", + "P": 463.32, + "G(i)": 132.94, + "H_sun": 13.26, + "T2m": 5.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200311:0810", + "P": 1638.6, + "G(i)": 343.06, + "H_sun": 22.84, + "T2m": 8.46, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200311:0910", + "P": 2753.16, + "G(i)": 554.53, + "H_sun": 31.16, + "T2m": 11.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200311:1010", + "P": 3481.86, + "G(i)": 712.9, + "H_sun": 37.46, + "T2m": 14.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200311:1110", + "P": 3953.1, + "G(i)": 824.94, + "H_sun": 40.88, + "T2m": 16.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200311:1210", + "P": 4078.26, + "G(i)": 855.32, + "H_sun": 40.78, + "T2m": 17.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200311:1310", + "P": 4072.8, + "G(i)": 852.78, + "H_sun": 37.16, + "T2m": 18.71, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200311:1410", + "P": 3633.96, + "G(i)": 752.05, + "H_sun": 30.71, + "T2m": 19.08, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200311:1510", + "P": 2784.36, + "G(i)": 568.54, + "H_sun": 22.3, + "T2m": 18.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200311:1610", + "P": 1594.32, + "G(i)": 333.14, + "H_sun": 12.66, + "T2m": 17.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200311:1710", + "P": 7.32, + "G(i)": 8.67, + "H_sun": 2.34, + "T2m": 15.98, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200311:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.4, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200311:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.73, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200311:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.81, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200311:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200311:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.32, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200311:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200312:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.02, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200312:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.76, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200312:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.51, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200312:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.16, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200312:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200312:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200312:0610", + "P": 7.98, + "G(i)": 8.67, + "H_sun": 3.3, + "T2m": 6.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200312:0710", + "P": 391.68, + "G(i)": 91.82, + "H_sun": 13.6, + "T2m": 7.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:0810", + "P": 675.96, + "G(i)": 144.76, + "H_sun": 23.19, + "T2m": 8.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200312:0910", + "P": 1099.62, + "G(i)": 225.56, + "H_sun": 31.53, + "T2m": 10.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200312:1010", + "P": 1647.9, + "G(i)": 331.78, + "H_sun": 37.86, + "T2m": 11.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:1110", + "P": 1338.6, + "G(i)": 274.0, + "H_sun": 41.28, + "T2m": 13.06, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200312:1210", + "P": 1530.42, + "G(i)": 312.62, + "H_sun": 41.16, + "T2m": 14.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200312:1310", + "P": 941.46, + "G(i)": 199.47, + "H_sun": 37.51, + "T2m": 15.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200312:1410", + "P": 623.16, + "G(i)": 138.21, + "H_sun": 31.02, + "T2m": 15.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200312:1510", + "P": 298.2, + "G(i)": 74.5, + "H_sun": 22.57, + "T2m": 15.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200312:1610", + "P": 459.9, + "G(i)": 106.4, + "H_sun": 12.91, + "T2m": 14.71, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200312:1710", + "P": 0.0, + "G(i)": 4.82, + "H_sun": 2.58, + "T2m": 13.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200312:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200312:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200312:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200312:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200312:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200313:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200313:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200313:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200313:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200313:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200313:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.82, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200313:0610", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 3.62, + "T2m": 8.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200313:0710", + "P": 525.18, + "G(i)": 139.28, + "H_sun": 13.93, + "T2m": 8.75, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200313:0810", + "P": 865.98, + "G(i)": 182.15, + "H_sun": 23.55, + "T2m": 10.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200313:0910", + "P": 2532.66, + "G(i)": 510.66, + "H_sun": 31.91, + "T2m": 11.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200313:1010", + "P": 1333.32, + "G(i)": 274.09, + "H_sun": 38.25, + "T2m": 13.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200313:1110", + "P": 2184.06, + "G(i)": 445.48, + "H_sun": 41.68, + "T2m": 14.82, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200313:1210", + "P": 3411.54, + "G(i)": 705.03, + "H_sun": 41.54, + "T2m": 15.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200313:1310", + "P": 3617.52, + "G(i)": 750.16, + "H_sun": 37.85, + "T2m": 16.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200313:1410", + "P": 3519.78, + "G(i)": 724.31, + "H_sun": 31.32, + "T2m": 17.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200313:1510", + "P": 2719.38, + "G(i)": 550.78, + "H_sun": 22.84, + "T2m": 17.21, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200313:1610", + "P": 1580.1, + "G(i)": 326.84, + "H_sun": 13.16, + "T2m": 16.56, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200313:1710", + "P": 16.74, + "G(i)": 11.76, + "H_sun": 2.81, + "T2m": 15.21, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200313:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.64, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200313:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.66, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200313:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200313:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200313:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.97, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200313:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.65, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200314:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200314:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200314:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200314:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200314:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200314:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200314:0610", + "P": 10.62, + "G(i)": 9.64, + "H_sun": 3.95, + "T2m": 9.97, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200314:0710", + "P": 132.3, + "G(i)": 39.21, + "H_sun": 14.27, + "T2m": 9.96, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200314:0810", + "P": 347.1, + "G(i)": 82.34, + "H_sun": 23.9, + "T2m": 10.02, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200314:0910", + "P": 203.1, + "G(i)": 53.91, + "H_sun": 32.28, + "T2m": 10.01, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200314:1010", + "P": 232.26, + "G(i)": 59.8, + "H_sun": 38.65, + "T2m": 10.03, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200314:1110", + "P": 306.78, + "G(i)": 74.5, + "H_sun": 42.08, + "T2m": 10.12, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200314:1210", + "P": 237.0, + "G(i)": 60.78, + "H_sun": 41.92, + "T2m": 10.27, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200314:1310", + "P": 281.46, + "G(i)": 69.6, + "H_sun": 38.2, + "T2m": 10.26, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200314:1410", + "P": 578.52, + "G(i)": 126.45, + "H_sun": 31.63, + "T2m": 10.28, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200314:1510", + "P": 550.92, + "G(i)": 121.35, + "H_sun": 23.11, + "T2m": 10.42, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200314:1610", + "P": 197.7, + "G(i)": 52.93, + "H_sun": 13.4, + "T2m": 10.45, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200314:1710", + "P": 5.4, + "G(i)": 7.84, + "H_sun": 3.04, + "T2m": 10.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200314:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200314:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200314:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.86, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200314:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.64, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200314:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200314:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200315:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200315:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.18, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200315:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.7, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200315:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200315:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200315:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200315:0610", + "P": 70.44, + "G(i)": 25.05, + "H_sun": 4.29, + "T2m": 5.46, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200315:0710", + "P": 561.06, + "G(i)": 151.72, + "H_sun": 14.61, + "T2m": 6.66, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200315:0810", + "P": 1199.04, + "G(i)": 244.05, + "H_sun": 24.26, + "T2m": 8.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200315:0910", + "P": 1131.72, + "G(i)": 229.19, + "H_sun": 32.66, + "T2m": 9.04, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200315:1010", + "P": 1084.92, + "G(i)": 220.95, + "H_sun": 39.04, + "T2m": 9.66, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200315:1110", + "P": 938.58, + "G(i)": 194.09, + "H_sun": 42.48, + "T2m": 10.18, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200315:1210", + "P": 873.48, + "G(i)": 182.33, + "H_sun": 42.3, + "T2m": 10.72, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200315:1310", + "P": 1233.78, + "G(i)": 249.9, + "H_sun": 38.54, + "T2m": 10.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200315:1410", + "P": 1434.9, + "G(i)": 287.29, + "H_sun": 31.93, + "T2m": 11.15, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200315:1510", + "P": 1304.94, + "G(i)": 262.13, + "H_sun": 23.38, + "T2m": 11.09, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200315:1610", + "P": 760.08, + "G(i)": 161.51, + "H_sun": 13.64, + "T2m": 10.82, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200315:1710", + "P": 17.34, + "G(i)": 11.76, + "H_sun": 3.27, + "T2m": 10.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.24, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200315:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.73, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200315:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.09, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.45, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.99, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200315:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200316:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200316:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.49, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200316:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200316:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.61, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200316:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.21, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200316:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.64, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200316:0610", + "P": 84.18, + "G(i)": 27.94, + "H_sun": 4.62, + "T2m": 3.27, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200316:0710", + "P": 606.36, + "G(i)": 151.9, + "H_sun": 14.95, + "T2m": 5.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200316:0810", + "P": 1767.72, + "G(i)": 363.36, + "H_sun": 24.62, + "T2m": 8.38, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200316:0910", + "P": 2716.44, + "G(i)": 537.14, + "H_sun": 33.04, + "T2m": 10.13, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200316:1010", + "P": 2065.44, + "G(i)": 409.66, + "H_sun": 39.44, + "T2m": 10.93, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200316:1110", + "P": 1506.18, + "G(i)": 303.8, + "H_sun": 42.88, + "T2m": 11.69, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200316:1210", + "P": 1009.32, + "G(i)": 209.77, + "H_sun": 42.69, + "T2m": 12.27, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200316:1310", + "P": 2056.44, + "G(i)": 411.78, + "H_sun": 38.89, + "T2m": 12.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200316:1410", + "P": 1670.46, + "G(i)": 336.5, + "H_sun": 32.23, + "T2m": 13.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200316:1510", + "P": 1173.24, + "G(i)": 241.29, + "H_sun": 23.64, + "T2m": 13.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200316:1610", + "P": 1111.74, + "G(i)": 231.6, + "H_sun": 13.89, + "T2m": 13.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200316:1710", + "P": 85.62, + "G(i)": 31.15, + "H_sun": 3.51, + "T2m": 12.45, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200316:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200316:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200316:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200316:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200316:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200316:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200317:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200317:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200317:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.53, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200317:0610", + "P": 78.96, + "G(i)": 26.98, + "H_sun": 4.95, + "T2m": 5.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200317:0710", + "P": 603.72, + "G(i)": 137.48, + "H_sun": 15.3, + "T2m": 6.66, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200317:0810", + "P": 1504.14, + "G(i)": 309.36, + "H_sun": 24.97, + "T2m": 9.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200317:0910", + "P": 2571.42, + "G(i)": 521.7, + "H_sun": 33.42, + "T2m": 11.97, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200317:1010", + "P": 3012.3, + "G(i)": 614.99, + "H_sun": 39.83, + "T2m": 13.52, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200317:1110", + "P": 3561.3, + "G(i)": 736.74, + "H_sun": 43.29, + "T2m": 14.77, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200317:1210", + "P": 3381.36, + "G(i)": 699.21, + "H_sun": 43.07, + "T2m": 15.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200317:1310", + "P": 3270.54, + "G(i)": 675.77, + "H_sun": 39.23, + "T2m": 16.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200317:1410", + "P": 3086.88, + "G(i)": 634.67, + "H_sun": 32.53, + "T2m": 16.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200317:1510", + "P": 2030.1, + "G(i)": 413.76, + "H_sun": 23.91, + "T2m": 16.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200317:1610", + "P": 1682.76, + "G(i)": 349.03, + "H_sun": 14.13, + "T2m": 16.66, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200317:1710", + "P": 90.42, + "G(i)": 32.45, + "H_sun": 3.74, + "T2m": 15.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200317:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200317:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200317:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200317:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200317:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200317:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.15, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200318:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200318:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.42, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200318:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200318:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200318:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200318:0610", + "P": 92.58, + "G(i)": 29.87, + "H_sun": 5.28, + "T2m": 3.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200318:0710", + "P": 634.74, + "G(i)": 163.94, + "H_sun": 15.64, + "T2m": 6.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200318:0810", + "P": 1814.58, + "G(i)": 374.81, + "H_sun": 25.33, + "T2m": 9.79, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200318:0910", + "P": 2874.0, + "G(i)": 578.4, + "H_sun": 33.8, + "T2m": 12.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200318:1010", + "P": 3667.56, + "G(i)": 747.53, + "H_sun": 40.23, + "T2m": 14.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200318:1110", + "P": 4185.54, + "G(i)": 868.19, + "H_sun": 43.69, + "T2m": 15.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200318:1210", + "P": 4480.38, + "G(i)": 942.22, + "H_sun": 43.45, + "T2m": 16.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200318:1310", + "P": 4225.56, + "G(i)": 888.13, + "H_sun": 39.57, + "T2m": 17.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200318:1410", + "P": 3754.56, + "G(i)": 780.86, + "H_sun": 32.83, + "T2m": 17.94, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:1510", + "P": 2867.28, + "G(i)": 587.03, + "H_sun": 24.17, + "T2m": 17.92, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:1610", + "P": 1729.44, + "G(i)": 359.37, + "H_sun": 14.37, + "T2m": 17.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200318:1710", + "P": 92.22, + "G(i)": 32.82, + "H_sun": 3.96, + "T2m": 16.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200318:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200318:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200318:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.5, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200318:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200318:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200318:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200319:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200319:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.98, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200319:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.3, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200319:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200319:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200319:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:0610", + "P": 95.64, + "G(i)": 30.84, + "H_sun": 5.62, + "T2m": 6.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:0710", + "P": 654.42, + "G(i)": 170.37, + "H_sun": 15.98, + "T2m": 7.8, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200319:0810", + "P": 1853.94, + "G(i)": 384.77, + "H_sun": 25.69, + "T2m": 10.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200319:0910", + "P": 2880.42, + "G(i)": 585.4, + "H_sun": 34.17, + "T2m": 14.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200319:1010", + "P": 3631.56, + "G(i)": 754.44, + "H_sun": 40.63, + "T2m": 16.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200319:1110", + "P": 4124.94, + "G(i)": 884.74, + "H_sun": 44.09, + "T2m": 17.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200319:1210", + "P": 4354.92, + "G(i)": 953.74, + "H_sun": 43.83, + "T2m": 18.41, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200319:1310", + "P": 4116.36, + "G(i)": 893.88, + "H_sun": 39.91, + "T2m": 18.96, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200319:1410", + "P": 3657.36, + "G(i)": 780.13, + "H_sun": 33.13, + "T2m": 19.25, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200319:1510", + "P": 2908.32, + "G(i)": 606.38, + "H_sun": 24.44, + "T2m": 19.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:1610", + "P": 1775.82, + "G(i)": 372.8, + "H_sun": 14.61, + "T2m": 18.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200319:1710", + "P": 113.04, + "G(i)": 38.18, + "H_sun": 4.19, + "T2m": 17.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200319:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200319:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200319:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200319:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200319:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.49, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200320:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.46, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200320:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.66, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200320:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200320:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200320:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200320:0610", + "P": 122.7, + "G(i)": 36.62, + "H_sun": 5.95, + "T2m": 5.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200320:0710", + "P": 668.16, + "G(i)": 174.38, + "H_sun": 16.32, + "T2m": 8.65, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:0810", + "P": 1019.04, + "G(i)": 210.78, + "H_sun": 26.05, + "T2m": 10.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200320:0910", + "P": 1431.96, + "G(i)": 290.41, + "H_sun": 34.55, + "T2m": 12.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200320:1010", + "P": 2973.54, + "G(i)": 598.97, + "H_sun": 41.03, + "T2m": 13.15, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200320:1110", + "P": 3978.96, + "G(i)": 830.51, + "H_sun": 44.49, + "T2m": 13.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:1210", + "P": 1181.04, + "G(i)": 246.74, + "H_sun": 44.21, + "T2m": 15.1, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200320:1310", + "P": 3059.4, + "G(i)": 629.69, + "H_sun": 40.25, + "T2m": 15.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200320:1410", + "P": 3638.34, + "G(i)": 763.69, + "H_sun": 33.42, + "T2m": 16.45, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200320:1510", + "P": 2763.48, + "G(i)": 566.93, + "H_sun": 24.7, + "T2m": 16.56, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200320:1610", + "P": 1902.72, + "G(i)": 393.59, + "H_sun": 14.85, + "T2m": 16.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200320:1710", + "P": 116.46, + "G(i)": 38.51, + "H_sun": 4.42, + "T2m": 15.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200320:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200320:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200320:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200320:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.09, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200320:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.02, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200320:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200321:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200321:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.99, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200321:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200321:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200321:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200321:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200321:0610", + "P": 109.98, + "G(i)": 33.73, + "H_sun": 6.29, + "T2m": 4.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200321:0710", + "P": 704.82, + "G(i)": 178.64, + "H_sun": 16.67, + "T2m": 7.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200321:0810", + "P": 1893.6, + "G(i)": 391.92, + "H_sun": 26.41, + "T2m": 11.07, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200321:0910", + "P": 2928.78, + "G(i)": 595.41, + "H_sun": 34.93, + "T2m": 13.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200321:1010", + "P": 3694.26, + "G(i)": 763.65, + "H_sun": 41.43, + "T2m": 15.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200321:1110", + "P": 4224.3, + "G(i)": 893.93, + "H_sun": 44.89, + "T2m": 16.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200321:1210", + "P": 4470.72, + "G(i)": 957.08, + "H_sun": 44.59, + "T2m": 17.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200321:1310", + "P": 4248.72, + "G(i)": 901.21, + "H_sun": 40.59, + "T2m": 18.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200321:1410", + "P": 3720.96, + "G(i)": 776.66, + "H_sun": 33.72, + "T2m": 18.46, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200321:1510", + "P": 2915.52, + "G(i)": 599.56, + "H_sun": 24.96, + "T2m": 18.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200321:1610", + "P": 1808.16, + "G(i)": 375.93, + "H_sun": 15.08, + "T2m": 18.2, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200321:1710", + "P": 126.9, + "G(i)": 40.94, + "H_sun": 4.65, + "T2m": 17.15, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200321:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.3, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200321:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.25, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200321:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.4, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200321:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200321:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.13, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200321:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200322:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200322:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.76, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200322:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200322:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.47, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200322:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.67, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200322:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.67, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200322:0610", + "P": 148.5, + "G(i)": 42.4, + "H_sun": 6.62, + "T2m": 8.31, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200322:0710", + "P": 369.96, + "G(i)": 86.84, + "H_sun": 17.01, + "T2m": 9.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200322:0810", + "P": 448.74, + "G(i)": 101.95, + "H_sun": 26.77, + "T2m": 10.15, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200322:0910", + "P": 391.98, + "G(i)": 91.16, + "H_sun": 35.31, + "T2m": 10.53, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200322:1010", + "P": 346.32, + "G(i)": 82.34, + "H_sun": 41.82, + "T2m": 10.63, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200322:1110", + "P": 734.46, + "G(i)": 155.86, + "H_sun": 45.29, + "T2m": 10.99, + "WS10m": 4.07, + "Int": 0.0 + }, + { + "time": "20200322:1210", + "P": 748.92, + "G(i)": 158.8, + "H_sun": 44.97, + "T2m": 11.3, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200322:1310", + "P": 1056.9, + "G(i)": 217.06, + "H_sun": 40.93, + "T2m": 11.68, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200322:1410", + "P": 1260.78, + "G(i)": 255.91, + "H_sun": 34.01, + "T2m": 12.4, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200322:1510", + "P": 661.02, + "G(i)": 143.54, + "H_sun": 25.22, + "T2m": 12.74, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200322:1610", + "P": 641.1, + "G(i)": 140.15, + "H_sun": 15.32, + "T2m": 12.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200322:1710", + "P": 91.68, + "G(i)": 31.42, + "H_sun": 4.87, + "T2m": 11.99, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200322:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200322:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200322:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200322:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.11, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200322:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200322:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.12, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200323:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.19, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200323:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.92, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200323:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.38, + "WS10m": 4.55, + "Int": 0.0 + }, + { + "time": "20200323:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.85, + "WS10m": 4.55, + "Int": 0.0 + }, + { + "time": "20200323:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.36, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200323:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.91, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200323:0610", + "P": 91.92, + "G(i)": 29.87, + "H_sun": 6.96, + "T2m": 5.43, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200323:0710", + "P": 312.9, + "G(i)": 74.5, + "H_sun": 17.36, + "T2m": 6.06, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200323:0810", + "P": 708.0, + "G(i)": 147.92, + "H_sun": 27.13, + "T2m": 5.98, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200323:0910", + "P": 649.14, + "G(i)": 137.23, + "H_sun": 35.69, + "T2m": 6.2, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200323:1010", + "P": 823.98, + "G(i)": 169.58, + "H_sun": 42.22, + "T2m": 6.58, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200323:1110", + "P": 1491.36, + "G(i)": 292.72, + "H_sun": 45.69, + "T2m": 6.91, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200323:1210", + "P": 2108.34, + "G(i)": 408.69, + "H_sun": 45.35, + "T2m": 7.16, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200323:1310", + "P": 2040.36, + "G(i)": 396.69, + "H_sun": 41.26, + "T2m": 7.44, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200323:1410", + "P": 1618.02, + "G(i)": 318.0, + "H_sun": 34.3, + "T2m": 7.95, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200323:1510", + "P": 1307.4, + "G(i)": 259.85, + "H_sun": 25.47, + "T2m": 8.05, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200323:1610", + "P": 1045.02, + "G(i)": 212.55, + "H_sun": 15.55, + "T2m": 7.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200323:1710", + "P": 102.0, + "G(i)": 33.15, + "H_sun": 5.1, + "T2m": 7.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200323:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200323:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200323:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200323:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200323:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200323:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.29, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200324:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.0, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200324:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.76, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200324:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200324:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.48, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200324:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200324:0610", + "P": 193.68, + "G(i)": 50.11, + "H_sun": 7.29, + "T2m": 0.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200324:0710", + "P": 820.44, + "G(i)": 199.61, + "H_sun": 17.7, + "T2m": 1.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200324:0810", + "P": 2139.96, + "G(i)": 423.76, + "H_sun": 27.48, + "T2m": 3.96, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:0910", + "P": 3232.32, + "G(i)": 624.63, + "H_sun": 36.07, + "T2m": 5.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200324:1010", + "P": 4087.62, + "G(i)": 800.76, + "H_sun": 42.62, + "T2m": 6.37, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200324:1110", + "P": 2791.32, + "G(i)": 544.53, + "H_sun": 46.1, + "T2m": 7.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200324:1210", + "P": 4550.7, + "G(i)": 918.47, + "H_sun": 45.72, + "T2m": 8.15, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200324:1310", + "P": 3173.22, + "G(i)": 624.56, + "H_sun": 41.6, + "T2m": 8.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200324:1410", + "P": 3583.5, + "G(i)": 704.04, + "H_sun": 34.59, + "T2m": 8.62, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200324:1510", + "P": 3237.18, + "G(i)": 627.38, + "H_sun": 25.73, + "T2m": 8.41, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200324:1610", + "P": 2147.4, + "G(i)": 420.47, + "H_sun": 15.79, + "T2m": 8.03, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200324:1710", + "P": 574.14, + "G(i)": 137.34, + "H_sun": 5.32, + "T2m": 7.41, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200324:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200324:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.23, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200324:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200324:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200324:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200325:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.43, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200325:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.55, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200325:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200325:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.31, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200325:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.32, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200325:0610", + "P": 43.68, + "G(i)": 18.31, + "H_sun": 7.63, + "T2m": -0.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:0710", + "P": 277.02, + "G(i)": 66.66, + "H_sun": 18.04, + "T2m": 2.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200325:0810", + "P": 541.38, + "G(i)": 116.65, + "H_sun": 27.84, + "T2m": 3.98, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:0910", + "P": 662.7, + "G(i)": 139.2, + "H_sun": 36.45, + "T2m": 4.47, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:1010", + "P": 2255.7, + "G(i)": 434.65, + "H_sun": 43.01, + "T2m": 4.99, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:1110", + "P": 1100.22, + "G(i)": 220.56, + "H_sun": 46.5, + "T2m": 5.83, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200325:1210", + "P": 2215.8, + "G(i)": 430.93, + "H_sun": 46.1, + "T2m": 6.63, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200325:1310", + "P": 622.44, + "G(i)": 133.31, + "H_sun": 41.93, + "T2m": 7.18, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200325:1410", + "P": 2589.84, + "G(i)": 500.49, + "H_sun": 34.88, + "T2m": 7.38, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200325:1510", + "P": 684.6, + "G(i)": 144.77, + "H_sun": 25.98, + "T2m": 7.38, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200325:1610", + "P": 1407.9, + "G(i)": 278.88, + "H_sun": 16.02, + "T2m": 7.24, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200325:1710", + "P": 283.2, + "G(i)": 73.48, + "H_sun": 5.54, + "T2m": 6.96, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200325:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.82, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200325:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.25, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200325:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.57, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200325:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.83, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200325:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.17, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200325:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200326:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200326:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.71, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200326:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.39, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200326:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.89, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200326:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.24, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200326:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.44, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200326:0610", + "P": 131.88, + "G(i)": 37.58, + "H_sun": 7.96, + "T2m": -0.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:0710", + "P": 851.58, + "G(i)": 185.69, + "H_sun": 18.38, + "T2m": 2.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200326:0810", + "P": 1583.34, + "G(i)": 310.11, + "H_sun": 28.2, + "T2m": 3.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200326:0910", + "P": 1933.62, + "G(i)": 374.16, + "H_sun": 36.83, + "T2m": 4.97, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:1010", + "P": 851.34, + "G(i)": 174.48, + "H_sun": 43.41, + "T2m": 5.47, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200326:1110", + "P": 505.02, + "G(i)": 110.77, + "H_sun": 46.89, + "T2m": 5.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:1210", + "P": 626.04, + "G(i)": 133.31, + "H_sun": 46.48, + "T2m": 5.87, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200326:1310", + "P": 1294.56, + "G(i)": 256.53, + "H_sun": 42.26, + "T2m": 5.95, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200326:1410", + "P": 652.68, + "G(i)": 138.21, + "H_sun": 35.17, + "T2m": 6.01, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200326:1510", + "P": 322.62, + "G(i)": 76.46, + "H_sun": 26.23, + "T2m": 5.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200326:1610", + "P": 130.44, + "G(i)": 38.23, + "H_sun": 16.25, + "T2m": 5.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200326:1710", + "P": 63.9, + "G(i)": 23.53, + "H_sun": 5.77, + "T2m": 5.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200326:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200326:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200326:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200326:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.98, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200326:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200326:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200327:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200327:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.76, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200327:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200327:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.16, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200327:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.32, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200327:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.51, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200327:0610", + "P": 114.48, + "G(i)": 34.69, + "H_sun": 8.3, + "T2m": 4.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200327:0710", + "P": 262.86, + "G(i)": 64.7, + "H_sun": 18.72, + "T2m": 5.29, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200327:0810", + "P": 854.94, + "G(i)": 175.05, + "H_sun": 28.56, + "T2m": 5.64, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200327:0910", + "P": 721.98, + "G(i)": 150.96, + "H_sun": 37.2, + "T2m": 6.27, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200327:1010", + "P": 841.26, + "G(i)": 173.5, + "H_sun": 43.81, + "T2m": 7.19, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200327:1110", + "P": 1481.64, + "G(i)": 292.62, + "H_sun": 47.29, + "T2m": 7.89, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200327:1210", + "P": 1828.08, + "G(i)": 359.49, + "H_sun": 46.85, + "T2m": 8.62, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200327:1310", + "P": 2301.78, + "G(i)": 452.43, + "H_sun": 42.59, + "T2m": 9.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200327:1410", + "P": 1088.4, + "G(i)": 222.15, + "H_sun": 35.45, + "T2m": 9.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200327:1510", + "P": 1414.92, + "G(i)": 282.78, + "H_sun": 26.49, + "T2m": 9.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200327:1610", + "P": 397.74, + "G(i)": 92.11, + "H_sun": 16.48, + "T2m": 9.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200327:1710", + "P": 265.38, + "G(i)": 69.46, + "H_sun": 5.99, + "T2m": 8.92, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200327:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.15, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200327:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200327:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200327:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.98, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200327:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200327:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.02, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200328:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200328:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200328:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.82, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200328:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200328:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200328:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200328:0610", + "P": 231.66, + "G(i)": 58.78, + "H_sun": 8.63, + "T2m": 5.85, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200328:0710", + "P": 875.34, + "G(i)": 208.61, + "H_sun": 19.06, + "T2m": 8.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200328:0810", + "P": 2058.9, + "G(i)": 420.95, + "H_sun": 28.91, + "T2m": 11.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200328:0910", + "P": 3020.4, + "G(i)": 612.01, + "H_sun": 37.58, + "T2m": 13.19, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200328:1010", + "P": 3789.6, + "G(i)": 788.27, + "H_sun": 44.2, + "T2m": 14.56, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200328:1110", + "P": 4256.58, + "G(i)": 903.43, + "H_sun": 47.69, + "T2m": 15.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200328:1210", + "P": 4571.4, + "G(i)": 980.41, + "H_sun": 47.22, + "T2m": 16.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200328:1310", + "P": 4237.56, + "G(i)": 899.1, + "H_sun": 42.92, + "T2m": 17.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200328:1410", + "P": 3812.88, + "G(i)": 796.87, + "H_sun": 35.74, + "T2m": 17.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1510", + "P": 3060.3, + "G(i)": 629.05, + "H_sun": 26.74, + "T2m": 17.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1610", + "P": 1947.3, + "G(i)": 402.38, + "H_sun": 16.71, + "T2m": 17.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1710", + "P": 658.26, + "G(i)": 158.93, + "H_sun": 6.21, + "T2m": 16.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200328:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200328:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200328:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200328:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.22, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200328:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200329:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200329:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200329:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200329:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200329:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200329:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200329:0610", + "P": 237.24, + "G(i)": 59.74, + "H_sun": 8.96, + "T2m": 4.92, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200329:0710", + "P": 860.28, + "G(i)": 189.0, + "H_sun": 19.4, + "T2m": 8.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200329:0810", + "P": 1725.96, + "G(i)": 352.9, + "H_sun": 29.26, + "T2m": 11.29, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200329:0910", + "P": 2669.76, + "G(i)": 543.03, + "H_sun": 37.95, + "T2m": 13.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200329:1010", + "P": 3767.04, + "G(i)": 785.28, + "H_sun": 44.59, + "T2m": 15.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1110", + "P": 3541.62, + "G(i)": 741.13, + "H_sun": 48.09, + "T2m": 16.43, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1210", + "P": 4141.02, + "G(i)": 885.82, + "H_sun": 47.59, + "T2m": 17.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1310", + "P": 4084.56, + "G(i)": 874.95, + "H_sun": 43.25, + "T2m": 17.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200329:1410", + "P": 3003.9, + "G(i)": 624.22, + "H_sun": 36.02, + "T2m": 18.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200329:1510", + "P": 1416.6, + "G(i)": 291.82, + "H_sun": 26.98, + "T2m": 17.23, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200329:1610", + "P": 239.58, + "G(i)": 62.74, + "H_sun": 16.94, + "T2m": 16.02, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200329:1710", + "P": 121.68, + "G(i)": 38.25, + "H_sun": 6.43, + "T2m": 15.07, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200329:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200329:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200329:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.16, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200329:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200329:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200329:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.86, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200330:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.24, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200330:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.36, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200330:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.14, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.77, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.45, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.22, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0610", + "P": 205.14, + "G(i)": 53.96, + "H_sun": 9.3, + "T2m": 8.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:0710", + "P": 319.2, + "G(i)": 76.46, + "H_sun": 19.74, + "T2m": 8.37, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200330:0810", + "P": 344.28, + "G(i)": 81.36, + "H_sun": 29.62, + "T2m": 8.55, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200330:0910", + "P": 612.9, + "G(i)": 132.33, + "H_sun": 38.32, + "T2m": 8.8, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200330:1010", + "P": 1225.44, + "G(i)": 247.32, + "H_sun": 44.99, + "T2m": 9.37, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200330:1110", + "P": 630.72, + "G(i)": 136.25, + "H_sun": 48.48, + "T2m": 9.73, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200330:1210", + "P": 479.52, + "G(i)": 107.83, + "H_sun": 47.96, + "T2m": 10.03, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200330:1310", + "P": 1165.68, + "G(i)": 237.02, + "H_sun": 43.57, + "T2m": 10.47, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:1410", + "P": 924.6, + "G(i)": 191.63, + "H_sun": 36.3, + "T2m": 10.44, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200330:1510", + "P": 514.74, + "G(i)": 114.69, + "H_sun": 27.23, + "T2m": 10.53, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200330:1610", + "P": 265.92, + "G(i)": 66.66, + "H_sun": 17.16, + "T2m": 10.48, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200330:1710", + "P": 46.2, + "G(i)": 19.6, + "H_sun": 6.65, + "T2m": 10.27, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200330:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200330:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.01, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200330:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200330:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200330:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.8, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200330:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.13, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200331:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.18, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200331:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.03, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200331:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200331:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.38, + "WS10m": 4.07, + "Int": 0.0 + }, + { + "time": "20200331:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.94, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200331:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.74, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200331:0610", + "P": 170.4, + "G(i)": 46.07, + "H_sun": 9.63, + "T2m": 3.62, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200331:0710", + "P": 403.32, + "G(i)": 91.16, + "H_sun": 20.08, + "T2m": 4.84, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200331:0810", + "P": 487.68, + "G(i)": 106.85, + "H_sun": 29.97, + "T2m": 4.88, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200331:0910", + "P": 642.24, + "G(i)": 135.27, + "H_sun": 38.7, + "T2m": 5.03, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200331:1010", + "P": 564.84, + "G(i)": 121.55, + "H_sun": 45.38, + "T2m": 5.89, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200331:1110", + "P": 610.02, + "G(i)": 130.37, + "H_sun": 48.88, + "T2m": 6.73, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200331:1210", + "P": 1583.1, + "G(i)": 311.31, + "H_sun": 48.33, + "T2m": 8.12, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200331:1310", + "P": 2969.34, + "G(i)": 576.77, + "H_sun": 43.89, + "T2m": 8.81, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200331:1410", + "P": 2821.32, + "G(i)": 549.58, + "H_sun": 36.58, + "T2m": 9.28, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200331:1510", + "P": 1623.12, + "G(i)": 320.39, + "H_sun": 27.47, + "T2m": 9.4, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200331:1610", + "P": 500.34, + "G(i)": 111.48, + "H_sun": 17.39, + "T2m": 9.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200331:1710", + "P": 235.68, + "G(i)": 62.21, + "H_sun": 6.86, + "T2m": 8.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200331:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200331:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.17, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200331:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200331:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200331:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.48, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200331:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.44, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200401:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200401:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200401:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.53, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200401:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200401:0610", + "P": 232.32, + "G(i)": 58.24, + "H_sun": 9.95, + "T2m": 2.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200401:0710", + "P": 532.44, + "G(i)": 115.29, + "H_sun": 20.41, + "T2m": 4.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200401:0810", + "P": 838.98, + "G(i)": 172.41, + "H_sun": 30.32, + "T2m": 5.44, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200401:0910", + "P": 1222.68, + "G(i)": 244.28, + "H_sun": 39.07, + "T2m": 6.57, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200401:1010", + "P": 1404.96, + "G(i)": 280.1, + "H_sun": 45.77, + "T2m": 7.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200401:1110", + "P": 2491.98, + "G(i)": 492.35, + "H_sun": 49.27, + "T2m": 8.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200401:1210", + "P": 3570.54, + "G(i)": 719.14, + "H_sun": 48.7, + "T2m": 9.27, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200401:1310", + "P": 3550.2, + "G(i)": 712.62, + "H_sun": 44.22, + "T2m": 9.99, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200401:1410", + "P": 2372.28, + "G(i)": 468.29, + "H_sun": 36.85, + "T2m": 10.5, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200401:1510", + "P": 3050.58, + "G(i)": 601.36, + "H_sun": 27.72, + "T2m": 10.56, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200401:1610", + "P": 2187.48, + "G(i)": 434.15, + "H_sun": 17.61, + "T2m": 10.41, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:1710", + "P": 811.98, + "G(i)": 184.8, + "H_sun": 7.08, + "T2m": 9.84, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200401:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200401:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.3, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200401:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200401:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200401:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.2, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200402:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200402:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200402:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.96, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200402:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.38, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200402:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.01, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200402:0610", + "P": 288.24, + "G(i)": 69.8, + "H_sun": 10.28, + "T2m": 1.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200402:0710", + "P": 1017.36, + "G(i)": 218.23, + "H_sun": 20.75, + "T2m": 3.88, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200402:0810", + "P": 2315.28, + "G(i)": 462.53, + "H_sun": 30.67, + "T2m": 6.07, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200402:0910", + "P": 3314.58, + "G(i)": 663.13, + "H_sun": 39.43, + "T2m": 7.6, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200402:1010", + "P": 4062.36, + "G(i)": 827.44, + "H_sun": 46.15, + "T2m": 9.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200402:1110", + "P": 4598.04, + "G(i)": 954.89, + "H_sun": 49.66, + "T2m": 10.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200402:1210", + "P": 4841.1, + "G(i)": 1019.67, + "H_sun": 49.07, + "T2m": 11.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200402:1310", + "P": 4518.96, + "G(i)": 941.83, + "H_sun": 44.53, + "T2m": 12.08, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200402:1410", + "P": 4084.8, + "G(i)": 836.31, + "H_sun": 37.13, + "T2m": 12.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:1510", + "P": 3312.9, + "G(i)": 665.63, + "H_sun": 27.96, + "T2m": 12.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200402:1610", + "P": 2138.52, + "G(i)": 430.61, + "H_sun": 17.84, + "T2m": 12.57, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200402:1710", + "P": 820.44, + "G(i)": 188.59, + "H_sun": 7.3, + "T2m": 12.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200402:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200402:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200402:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200402:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200402:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200403:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200403:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200403:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.77, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200403:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200403:0610", + "P": 179.34, + "G(i)": 53.34, + "H_sun": 10.61, + "T2m": 2.49, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200403:0710", + "P": 1056.0, + "G(i)": 240.83, + "H_sun": 21.08, + "T2m": 5.5, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200403:0810", + "P": 2279.76, + "G(i)": 460.51, + "H_sun": 31.01, + "T2m": 9.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200403:0910", + "P": 3290.22, + "G(i)": 663.08, + "H_sun": 39.8, + "T2m": 11.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200403:1010", + "P": 4042.32, + "G(i)": 830.47, + "H_sun": 46.54, + "T2m": 12.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:1110", + "P": 4494.48, + "G(i)": 940.3, + "H_sun": 50.05, + "T2m": 13.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200403:1210", + "P": 4777.2, + "G(i)": 1011.99, + "H_sun": 49.43, + "T2m": 14.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200403:1310", + "P": 4450.98, + "G(i)": 937.83, + "H_sun": 44.85, + "T2m": 15.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200403:1410", + "P": 3978.48, + "G(i)": 826.72, + "H_sun": 37.4, + "T2m": 15.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200403:1510", + "P": 3249.06, + "G(i)": 662.25, + "H_sun": 28.2, + "T2m": 15.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200403:1610", + "P": 2120.76, + "G(i)": 433.04, + "H_sun": 18.06, + "T2m": 15.55, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200403:1710", + "P": 749.52, + "G(i)": 174.75, + "H_sun": 7.51, + "T2m": 14.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200403:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200403:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200403:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.97, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200403:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200403:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.54, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200403:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200404:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200404:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200404:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200404:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.58, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200404:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200404:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200404:0610", + "P": 171.36, + "G(i)": 54.18, + "H_sun": 10.93, + "T2m": 4.62, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200404:0710", + "P": 1075.44, + "G(i)": 246.78, + "H_sun": 21.41, + "T2m": 6.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200404:0810", + "P": 2289.3, + "G(i)": 465.35, + "H_sun": 31.36, + "T2m": 10.72, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200404:0910", + "P": 3289.08, + "G(i)": 668.04, + "H_sun": 40.17, + "T2m": 12.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200404:1010", + "P": 4085.64, + "G(i)": 844.59, + "H_sun": 46.93, + "T2m": 14.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200404:1110", + "P": 4530.12, + "G(i)": 951.55, + "H_sun": 50.44, + "T2m": 15.44, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:1210", + "P": 4677.0, + "G(i)": 992.62, + "H_sun": 49.79, + "T2m": 16.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:1310", + "P": 4487.52, + "G(i)": 947.92, + "H_sun": 45.17, + "T2m": 17.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200404:1410", + "P": 4016.82, + "G(i)": 837.42, + "H_sun": 37.67, + "T2m": 17.4, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200404:1510", + "P": 3262.32, + "G(i)": 666.72, + "H_sun": 28.44, + "T2m": 17.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200404:1610", + "P": 2118.48, + "G(i)": 433.64, + "H_sun": 18.28, + "T2m": 17.09, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200404:1710", + "P": 760.74, + "G(i)": 177.73, + "H_sun": 7.73, + "T2m": 16.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200404:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.38, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200404:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.96, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200404:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200404:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200404:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200405:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.05, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200405:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200405:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.82, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200405:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200405:0610", + "P": 181.86, + "G(i)": 58.05, + "H_sun": 11.25, + "T2m": 6.41, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200405:0710", + "P": 1092.9, + "G(i)": 248.4, + "H_sun": 21.74, + "T2m": 8.29, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200405:0810", + "P": 1956.12, + "G(i)": 397.0, + "H_sun": 31.7, + "T2m": 12.01, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200405:0910", + "P": 3319.5, + "G(i)": 672.0, + "H_sun": 40.53, + "T2m": 13.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:1010", + "P": 4101.84, + "G(i)": 843.92, + "H_sun": 47.31, + "T2m": 15.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200405:1110", + "P": 4515.66, + "G(i)": 942.89, + "H_sun": 50.83, + "T2m": 16.19, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200405:1210", + "P": 4691.7, + "G(i)": 989.67, + "H_sun": 50.15, + "T2m": 16.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200405:1310", + "P": 4472.64, + "G(i)": 938.35, + "H_sun": 45.48, + "T2m": 17.32, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200405:1410", + "P": 4035.12, + "G(i)": 833.5, + "H_sun": 37.94, + "T2m": 17.55, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200405:1510", + "P": 3246.48, + "G(i)": 659.7, + "H_sun": 28.67, + "T2m": 17.49, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200405:1610", + "P": 2120.76, + "G(i)": 432.55, + "H_sun": 18.5, + "T2m": 17.05, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200405:1710", + "P": 788.52, + "G(i)": 183.17, + "H_sun": 7.94, + "T2m": 16.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200405:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.45, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200405:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200405:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200405:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.83, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200405:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.43, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200405:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200406:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200406:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.92, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200406:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.99, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200406:0610", + "P": 160.38, + "G(i)": 56.37, + "H_sun": 11.58, + "T2m": 5.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200406:0710", + "P": 1118.7, + "G(i)": 255.71, + "H_sun": 22.06, + "T2m": 8.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200406:0810", + "P": 2326.56, + "G(i)": 473.85, + "H_sun": 32.04, + "T2m": 12.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200406:0910", + "P": 3312.48, + "G(i)": 676.89, + "H_sun": 40.89, + "T2m": 14.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200406:1010", + "P": 4019.94, + "G(i)": 838.91, + "H_sun": 47.69, + "T2m": 16.59, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1110", + "P": 4409.7, + "G(i)": 937.01, + "H_sun": 51.21, + "T2m": 17.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1210", + "P": 4476.96, + "G(i)": 958.04, + "H_sun": 50.51, + "T2m": 18.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1310", + "P": 4385.4, + "G(i)": 937.07, + "H_sun": 45.79, + "T2m": 18.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1410", + "P": 3949.08, + "G(i)": 832.16, + "H_sun": 38.2, + "T2m": 18.94, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200406:1510", + "P": 3176.58, + "G(i)": 658.25, + "H_sun": 28.91, + "T2m": 18.87, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200406:1610", + "P": 2122.74, + "G(i)": 439.78, + "H_sun": 18.71, + "T2m": 18.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200406:1710", + "P": 830.52, + "G(i)": 194.1, + "H_sun": 8.15, + "T2m": 17.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200406:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200406:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.4, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200406:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200406:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200406:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.02, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200406:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200407:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0610", + "P": 143.88, + "G(i)": 56.24, + "H_sun": 11.89, + "T2m": 6.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200407:0710", + "P": 1144.2, + "G(i)": 264.82, + "H_sun": 22.39, + "T2m": 10.23, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200407:0810", + "P": 2375.4, + "G(i)": 487.39, + "H_sun": 32.38, + "T2m": 14.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200407:0910", + "P": 3378.54, + "G(i)": 695.52, + "H_sun": 41.25, + "T2m": 17.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:1010", + "P": 4047.66, + "G(i)": 860.51, + "H_sun": 48.07, + "T2m": 18.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200407:1110", + "P": 4418.22, + "G(i)": 971.59, + "H_sun": 51.59, + "T2m": 19.48, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200407:1210", + "P": 4522.68, + "G(i)": 1006.62, + "H_sun": 50.86, + "T2m": 20.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200407:1310", + "P": 4388.58, + "G(i)": 966.98, + "H_sun": 46.1, + "T2m": 20.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200407:1410", + "P": 3970.02, + "G(i)": 854.91, + "H_sun": 38.47, + "T2m": 21.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200407:1510", + "P": 3271.5, + "G(i)": 687.92, + "H_sun": 29.14, + "T2m": 21.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200407:1610", + "P": 2197.68, + "G(i)": 459.85, + "H_sun": 18.93, + "T2m": 20.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200407:1710", + "P": 862.74, + "G(i)": 202.42, + "H_sun": 8.36, + "T2m": 19.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200407:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.33, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200407:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200407:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200407:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200407:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200407:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200408:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200408:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200408:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.14, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200408:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200408:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200408:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200408:0610", + "P": 150.84, + "G(i)": 59.85, + "H_sun": 12.21, + "T2m": 8.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200408:0710", + "P": 1173.12, + "G(i)": 269.48, + "H_sun": 22.71, + "T2m": 10.32, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200408:0810", + "P": 2384.82, + "G(i)": 491.72, + "H_sun": 32.71, + "T2m": 14.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200408:0910", + "P": 3354.0, + "G(i)": 698.53, + "H_sun": 41.6, + "T2m": 17.1, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200408:1010", + "P": 3996.6, + "G(i)": 858.64, + "H_sun": 48.44, + "T2m": 18.37, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200408:1110", + "P": 4369.44, + "G(i)": 956.45, + "H_sun": 51.97, + "T2m": 19.25, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200408:1210", + "P": 4487.88, + "G(i)": 989.59, + "H_sun": 51.22, + "T2m": 19.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200408:1310", + "P": 4346.88, + "G(i)": 956.7, + "H_sun": 46.41, + "T2m": 20.39, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200408:1410", + "P": 3928.14, + "G(i)": 850.23, + "H_sun": 38.73, + "T2m": 20.63, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200408:1510", + "P": 3218.88, + "G(i)": 680.37, + "H_sun": 29.37, + "T2m": 20.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200408:1610", + "P": 2150.7, + "G(i)": 450.96, + "H_sun": 19.14, + "T2m": 20.26, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200408:1710", + "P": 895.44, + "G(i)": 208.55, + "H_sun": 8.58, + "T2m": 19.1, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200408:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200408:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200408:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200408:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200408:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200408:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200409:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.39, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200409:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200409:0610", + "P": 159.42, + "G(i)": 62.76, + "H_sun": 12.52, + "T2m": 6.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200409:0710", + "P": 1183.56, + "G(i)": 271.03, + "H_sun": 23.03, + "T2m": 10.51, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200409:0810", + "P": 2383.86, + "G(i)": 491.53, + "H_sun": 33.04, + "T2m": 14.51, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200409:0910", + "P": 3349.8, + "G(i)": 695.55, + "H_sun": 41.95, + "T2m": 17.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200409:1010", + "P": 4018.14, + "G(i)": 858.38, + "H_sun": 48.82, + "T2m": 18.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:1110", + "P": 4381.92, + "G(i)": 956.14, + "H_sun": 52.35, + "T2m": 20.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:1210", + "P": 4511.88, + "G(i)": 994.79, + "H_sun": 51.57, + "T2m": 20.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200409:1310", + "P": 4333.14, + "G(i)": 955.17, + "H_sun": 46.71, + "T2m": 21.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:1410", + "P": 3863.76, + "G(i)": 843.33, + "H_sun": 38.99, + "T2m": 21.87, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200409:1510", + "P": 3154.86, + "G(i)": 674.29, + "H_sun": 29.6, + "T2m": 21.96, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200409:1610", + "P": 2131.98, + "G(i)": 451.62, + "H_sun": 19.36, + "T2m": 21.75, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200409:1710", + "P": 872.64, + "G(i)": 205.42, + "H_sun": 8.79, + "T2m": 21.04, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200409:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.08, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200409:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200409:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200409:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200409:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200409:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200410:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200410:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.47, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200410:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.58, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200410:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0510", + "P": 5.22, + "G(i)": 7.71, + "H_sun": 2.26, + "T2m": 7.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0610", + "P": 191.46, + "G(i)": 70.0, + "H_sun": 12.83, + "T2m": 7.94, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200410:0710", + "P": 1215.6, + "G(i)": 278.52, + "H_sun": 23.34, + "T2m": 11.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200410:0810", + "P": 2433.48, + "G(i)": 504.48, + "H_sun": 33.37, + "T2m": 15.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:0910", + "P": 3415.02, + "G(i)": 716.0, + "H_sun": 42.3, + "T2m": 18.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200410:1010", + "P": 4054.62, + "G(i)": 877.5, + "H_sun": 49.19, + "T2m": 20.32, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200410:1110", + "P": 4370.58, + "G(i)": 976.57, + "H_sun": 52.73, + "T2m": 21.55, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200410:1210", + "P": 4477.02, + "G(i)": 1010.8, + "H_sun": 51.92, + "T2m": 22.35, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200410:1310", + "P": 4284.48, + "G(i)": 963.53, + "H_sun": 47.01, + "T2m": 22.86, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200410:1410", + "P": 3904.56, + "G(i)": 863.44, + "H_sun": 39.25, + "T2m": 23.11, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200410:1510", + "P": 3211.86, + "G(i)": 691.77, + "H_sun": 29.83, + "T2m": 23.06, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200410:1610", + "P": 2205.78, + "G(i)": 470.38, + "H_sun": 19.57, + "T2m": 22.79, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200410:1710", + "P": 922.44, + "G(i)": 216.38, + "H_sun": 8.99, + "T2m": 21.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200410:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.15, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200410:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.6, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200410:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.17, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200410:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.02, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200410:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.24, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200410:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.76, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200411:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200411:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200411:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.09, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200411:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200411:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.77, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200411:0510", + "P": 10.86, + "G(i)": 9.64, + "H_sun": 2.57, + "T2m": 6.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200411:0610", + "P": 189.9, + "G(i)": 71.8, + "H_sun": 13.14, + "T2m": 8.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200411:0710", + "P": 1238.34, + "G(i)": 282.6, + "H_sun": 23.66, + "T2m": 12.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200411:0810", + "P": 2444.58, + "G(i)": 505.37, + "H_sun": 33.7, + "T2m": 16.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200411:0910", + "P": 3401.46, + "G(i)": 708.47, + "H_sun": 42.65, + "T2m": 19.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200411:1010", + "P": 4060.8, + "G(i)": 865.86, + "H_sun": 49.56, + "T2m": 21.38, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200411:1110", + "P": 4451.28, + "G(i)": 967.0, + "H_sun": 53.1, + "T2m": 22.64, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200411:1210", + "P": 4579.62, + "G(i)": 1005.66, + "H_sun": 52.26, + "T2m": 23.44, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200411:1310", + "P": 4385.76, + "G(i)": 959.0, + "H_sun": 47.31, + "T2m": 23.94, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200411:1410", + "P": 3993.54, + "G(i)": 859.78, + "H_sun": 39.5, + "T2m": 24.16, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200411:1510", + "P": 3268.92, + "G(i)": 689.07, + "H_sun": 30.06, + "T2m": 24.03, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200411:1610", + "P": 2196.84, + "G(i)": 460.99, + "H_sun": 19.78, + "T2m": 23.46, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200411:1710", + "P": 926.64, + "G(i)": 215.62, + "H_sun": 9.2, + "T2m": 21.85, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200411:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.17, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200411:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.22, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200411:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.05, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200411:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.99, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200411:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200411:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200412:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200412:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200412:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200412:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200412:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200412:0510", + "P": 17.04, + "G(i)": 11.56, + "H_sun": 2.88, + "T2m": 7.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200412:0610", + "P": 214.08, + "G(i)": 76.82, + "H_sun": 13.45, + "T2m": 7.99, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200412:0710", + "P": 1251.54, + "G(i)": 283.02, + "H_sun": 23.97, + "T2m": 11.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200412:0810", + "P": 2435.04, + "G(i)": 502.61, + "H_sun": 34.02, + "T2m": 15.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200412:0910", + "P": 3345.96, + "G(i)": 701.61, + "H_sun": 43.0, + "T2m": 18.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200412:1010", + "P": 3990.3, + "G(i)": 865.81, + "H_sun": 49.92, + "T2m": 19.87, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200412:1110", + "P": 4087.56, + "G(i)": 886.68, + "H_sun": 53.47, + "T2m": 21.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200412:1210", + "P": 4586.64, + "G(i)": 1000.46, + "H_sun": 52.61, + "T2m": 22.06, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200412:1310", + "P": 4051.92, + "G(i)": 864.63, + "H_sun": 47.61, + "T2m": 22.5, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200412:1410", + "P": 4055.46, + "G(i)": 853.88, + "H_sun": 39.76, + "T2m": 22.37, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200412:1510", + "P": 1359.48, + "G(i)": 285.38, + "H_sun": 30.28, + "T2m": 21.7, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200412:1610", + "P": 925.62, + "G(i)": 199.46, + "H_sun": 19.99, + "T2m": 20.5, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200412:1710", + "P": 311.82, + "G(i)": 79.62, + "H_sun": 9.41, + "T2m": 18.86, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200412:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.94, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200412:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.65, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200412:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200412:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200412:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200412:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.01, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200413:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200413:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.66, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200413:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.32, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200413:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200413:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200413:0510", + "P": 16.74, + "G(i)": 11.56, + "H_sun": 3.19, + "T2m": 9.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200413:0610", + "P": 223.56, + "G(i)": 80.09, + "H_sun": 13.75, + "T2m": 10.31, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200413:0710", + "P": 1249.32, + "G(i)": 280.53, + "H_sun": 24.27, + "T2m": 13.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200413:0810", + "P": 1950.84, + "G(i)": 401.72, + "H_sun": 34.34, + "T2m": 15.63, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200413:0910", + "P": 2884.56, + "G(i)": 597.9, + "H_sun": 43.34, + "T2m": 17.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200413:1010", + "P": 3375.54, + "G(i)": 710.68, + "H_sun": 50.29, + "T2m": 18.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200413:1110", + "P": 4177.44, + "G(i)": 901.77, + "H_sun": 53.84, + "T2m": 19.83, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200413:1210", + "P": 4242.9, + "G(i)": 916.2, + "H_sun": 52.95, + "T2m": 20.55, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200413:1310", + "P": 2758.44, + "G(i)": 573.53, + "H_sun": 47.9, + "T2m": 21.01, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200413:1410", + "P": 1650.48, + "G(i)": 343.03, + "H_sun": 40.01, + "T2m": 20.9, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200413:1510", + "P": 2066.58, + "G(i)": 420.82, + "H_sun": 30.5, + "T2m": 20.16, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200413:1610", + "P": 669.84, + "G(i)": 148.56, + "H_sun": 20.2, + "T2m": 18.81, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200413:1710", + "P": 149.58, + "G(i)": 44.11, + "H_sun": 9.62, + "T2m": 17.48, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200413:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200413:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.72, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200413:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200413:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.39, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200413:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.9, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200413:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.44, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200414:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200414:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200414:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200414:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.77, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200414:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.86, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200414:0510", + "P": 30.3, + "G(i)": 15.42, + "H_sun": 3.49, + "T2m": 9.28, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200414:0610", + "P": 245.34, + "G(i)": 85.63, + "H_sun": 14.05, + "T2m": 10.51, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200414:0710", + "P": 1299.06, + "G(i)": 293.92, + "H_sun": 24.58, + "T2m": 12.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200414:0810", + "P": 2476.86, + "G(i)": 514.77, + "H_sun": 34.66, + "T2m": 15.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200414:0910", + "P": 3383.82, + "G(i)": 715.38, + "H_sun": 43.67, + "T2m": 17.95, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200414:1010", + "P": 4054.92, + "G(i)": 880.04, + "H_sun": 50.65, + "T2m": 19.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200414:1110", + "P": 4459.8, + "G(i)": 976.87, + "H_sun": 54.21, + "T2m": 21.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200414:1210", + "P": 4611.66, + "G(i)": 1014.41, + "H_sun": 53.29, + "T2m": 22.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200414:1310", + "P": 4462.8, + "G(i)": 972.66, + "H_sun": 48.19, + "T2m": 22.74, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200414:1410", + "P": 4000.08, + "G(i)": 855.0, + "H_sun": 40.26, + "T2m": 23.04, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200414:1510", + "P": 3256.74, + "G(i)": 681.51, + "H_sun": 30.73, + "T2m": 23.02, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200414:1610", + "P": 2236.98, + "G(i)": 466.09, + "H_sun": 20.41, + "T2m": 22.67, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200414:1710", + "P": 966.42, + "G(i)": 222.64, + "H_sun": 9.82, + "T2m": 21.58, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200414:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.87, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200414:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.48, + "WS10m": 4.48, + "Int": 0.0 + }, + { + "time": "20200414:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.77, + "WS10m": 4.69, + "Int": 0.0 + }, + { + "time": "20200414:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.84, + "WS10m": 4.62, + "Int": 0.0 + }, + { + "time": "20200414:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.8, + "WS10m": 4.55, + "Int": 0.0 + }, + { + "time": "20200414:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200415:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.76, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200415:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.37, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200415:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200415:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.72, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200415:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.35, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200415:0510", + "P": 20.04, + "G(i)": 12.53, + "H_sun": 3.79, + "T2m": 9.17, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200415:0610", + "P": 405.96, + "G(i)": 94.68, + "H_sun": 14.34, + "T2m": 9.34, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200415:0710", + "P": 968.34, + "G(i)": 201.48, + "H_sun": 24.88, + "T2m": 9.87, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200415:0810", + "P": 1853.04, + "G(i)": 369.33, + "H_sun": 34.97, + "T2m": 11.01, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200415:0910", + "P": 3285.12, + "G(i)": 655.31, + "H_sun": 44.01, + "T2m": 12.1, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200415:1010", + "P": 4189.26, + "G(i)": 858.82, + "H_sun": 51.0, + "T2m": 13.31, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200415:1110", + "P": 4654.14, + "G(i)": 980.01, + "H_sun": 54.57, + "T2m": 14.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200415:1210", + "P": 4746.36, + "G(i)": 1011.11, + "H_sun": 53.62, + "T2m": 15.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200415:1310", + "P": 4569.66, + "G(i)": 970.29, + "H_sun": 48.48, + "T2m": 16.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200415:1410", + "P": 4097.76, + "G(i)": 857.55, + "H_sun": 40.51, + "T2m": 17.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:1510", + "P": 3356.76, + "G(i)": 689.15, + "H_sun": 30.95, + "T2m": 17.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200415:1610", + "P": 2325.24, + "G(i)": 475.57, + "H_sun": 20.61, + "T2m": 17.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200415:1710", + "P": 1037.22, + "G(i)": 233.31, + "H_sun": 10.03, + "T2m": 16.79, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200415:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200415:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200415:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.6, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200416:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200416:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200416:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.6, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200416:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200416:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.0, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200416:0510", + "P": 48.84, + "G(i)": 20.24, + "H_sun": 4.09, + "T2m": 9.69, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200416:0610", + "P": 308.64, + "G(i)": 96.49, + "H_sun": 14.64, + "T2m": 9.58, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200416:0710", + "P": 1281.6, + "G(i)": 272.64, + "H_sun": 25.18, + "T2m": 10.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200416:0810", + "P": 2122.26, + "G(i)": 429.75, + "H_sun": 35.28, + "T2m": 12.73, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200416:0910", + "P": 3252.24, + "G(i)": 669.03, + "H_sun": 44.34, + "T2m": 14.49, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200416:1010", + "P": 3089.46, + "G(i)": 643.67, + "H_sun": 51.36, + "T2m": 16.1, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200416:1110", + "P": 3346.74, + "G(i)": 707.23, + "H_sun": 54.93, + "T2m": 17.44, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200416:1210", + "P": 3760.5, + "G(i)": 806.98, + "H_sun": 53.96, + "T2m": 18.54, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200416:1310", + "P": 2703.3, + "G(i)": 567.06, + "H_sun": 48.77, + "T2m": 19.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200416:1410", + "P": 3392.34, + "G(i)": 716.79, + "H_sun": 40.75, + "T2m": 19.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200416:1510", + "P": 3261.3, + "G(i)": 681.57, + "H_sun": 31.16, + "T2m": 20.37, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200416:1610", + "P": 2214.66, + "G(i)": 459.59, + "H_sun": 20.82, + "T2m": 20.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200416:1710", + "P": 984.78, + "G(i)": 224.56, + "H_sun": 10.23, + "T2m": 19.61, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200416:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.86, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200416:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.5, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200416:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200416:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.16, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200416:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.07, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200416:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.14, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200417:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.29, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200417:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.9, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.52, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200417:0510", + "P": 37.98, + "G(i)": 17.34, + "H_sun": 4.38, + "T2m": 7.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200417:0610", + "P": 396.48, + "G(i)": 107.73, + "H_sun": 14.93, + "T2m": 9.29, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200417:0710", + "P": 1350.6, + "G(i)": 300.87, + "H_sun": 25.47, + "T2m": 11.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200417:0810", + "P": 2279.46, + "G(i)": 465.93, + "H_sun": 35.59, + "T2m": 14.6, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200417:0910", + "P": 3144.0, + "G(i)": 651.86, + "H_sun": 44.67, + "T2m": 16.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200417:1010", + "P": 3628.08, + "G(i)": 767.92, + "H_sun": 51.71, + "T2m": 18.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200417:1110", + "P": 2999.16, + "G(i)": 631.29, + "H_sun": 55.29, + "T2m": 19.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200417:1210", + "P": 3344.34, + "G(i)": 709.67, + "H_sun": 54.29, + "T2m": 20.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200417:1310", + "P": 2496.24, + "G(i)": 521.84, + "H_sun": 49.05, + "T2m": 21.62, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200417:1410", + "P": 1926.24, + "G(i)": 401.62, + "H_sun": 40.99, + "T2m": 22.1, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200417:1510", + "P": 953.58, + "G(i)": 206.91, + "H_sun": 31.38, + "T2m": 21.86, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200417:1610", + "P": 492.3, + "G(i)": 115.33, + "H_sun": 21.02, + "T2m": 21.13, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200417:1710", + "P": 174.24, + "G(i)": 50.02, + "H_sun": 10.43, + "T2m": 19.76, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200417:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.91, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200417:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.75, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200417:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200417:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.08, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200417:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200417:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200418:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200418:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200418:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200418:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200418:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200418:0510", + "P": 33.66, + "G(i)": 16.38, + "H_sun": 4.67, + "T2m": 10.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200418:0610", + "P": 485.22, + "G(i)": 114.5, + "H_sun": 15.21, + "T2m": 10.95, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200418:0710", + "P": 969.0, + "G(i)": 205.18, + "H_sun": 25.76, + "T2m": 12.8, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200418:0810", + "P": 1948.92, + "G(i)": 400.91, + "H_sun": 35.89, + "T2m": 15.01, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200418:0910", + "P": 3001.02, + "G(i)": 625.09, + "H_sun": 44.99, + "T2m": 16.8, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200418:1010", + "P": 3395.7, + "G(i)": 717.21, + "H_sun": 52.05, + "T2m": 18.48, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200418:1110", + "P": 3350.82, + "G(i)": 712.08, + "H_sun": 55.64, + "T2m": 20.14, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200418:1210", + "P": 3799.68, + "G(i)": 816.47, + "H_sun": 54.62, + "T2m": 21.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200418:1310", + "P": 2524.02, + "G(i)": 529.64, + "H_sun": 49.34, + "T2m": 22.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200418:1410", + "P": 1753.02, + "G(i)": 367.45, + "H_sun": 41.24, + "T2m": 22.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200418:1510", + "P": 1894.2, + "G(i)": 392.4, + "H_sun": 31.59, + "T2m": 22.19, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200418:1610", + "P": 2072.94, + "G(i)": 428.46, + "H_sun": 21.22, + "T2m": 21.49, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200418:1710", + "P": 908.4, + "G(i)": 207.18, + "H_sun": 10.63, + "T2m": 20.19, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200418:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.36, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200418:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.4, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200418:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200418:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200418:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200418:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.24, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200419:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200419:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200419:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200419:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200419:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200419:0510", + "P": 48.72, + "G(i)": 20.24, + "H_sun": 4.96, + "T2m": 10.15, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200419:0610", + "P": 490.68, + "G(i)": 116.08, + "H_sun": 15.5, + "T2m": 11.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200419:0710", + "P": 1322.52, + "G(i)": 289.59, + "H_sun": 26.05, + "T2m": 13.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200419:0810", + "P": 1729.68, + "G(i)": 356.43, + "H_sun": 36.19, + "T2m": 15.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200419:0910", + "P": 1673.64, + "G(i)": 348.22, + "H_sun": 45.31, + "T2m": 17.72, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200419:1010", + "P": 1804.68, + "G(i)": 377.25, + "H_sun": 52.4, + "T2m": 19.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200419:1110", + "P": 1046.16, + "G(i)": 225.46, + "H_sun": 55.99, + "T2m": 20.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200419:1210", + "P": 1674.84, + "G(i)": 353.52, + "H_sun": 54.94, + "T2m": 20.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200419:1310", + "P": 652.74, + "G(i)": 148.02, + "H_sun": 49.61, + "T2m": 21.48, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200419:1410", + "P": 589.5, + "G(i)": 135.27, + "H_sun": 41.47, + "T2m": 21.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200419:1510", + "P": 304.14, + "G(i)": 77.44, + "H_sun": 31.81, + "T2m": 21.01, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200419:1610", + "P": 192.78, + "G(i)": 53.91, + "H_sun": 21.43, + "T2m": 20.06, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200419:1710", + "P": 108.9, + "G(i)": 35.29, + "H_sun": 10.83, + "T2m": 18.75, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200419:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200419:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200419:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200419:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200419:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200419:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200420:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200420:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200420:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200420:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200420:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.63, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200420:0510", + "P": 0.0, + "G(i)": 4.82, + "H_sun": 5.24, + "T2m": 13.6, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200420:0610", + "P": 90.24, + "G(i)": 30.39, + "H_sun": 15.77, + "T2m": 13.43, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200420:0710", + "P": 286.08, + "G(i)": 71.56, + "H_sun": 26.33, + "T2m": 13.68, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200420:0810", + "P": 390.6, + "G(i)": 92.14, + "H_sun": 36.48, + "T2m": 13.86, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200420:0910", + "P": 316.32, + "G(i)": 77.44, + "H_sun": 45.62, + "T2m": 13.59, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200420:1010", + "P": 663.66, + "G(i)": 144.1, + "H_sun": 52.74, + "T2m": 13.36, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1110", + "P": 638.7, + "G(i)": 139.2, + "H_sun": 56.34, + "T2m": 13.11, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200420:1210", + "P": 556.26, + "G(i)": 123.51, + "H_sun": 55.26, + "T2m": 13.02, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200420:1310", + "P": 362.34, + "G(i)": 86.26, + "H_sun": 49.89, + "T2m": 13.06, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200420:1410", + "P": 287.76, + "G(i)": 71.56, + "H_sun": 41.71, + "T2m": 12.93, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200420:1510", + "P": 307.5, + "G(i)": 75.48, + "H_sun": 32.02, + "T2m": 12.94, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1610", + "P": 234.0, + "G(i)": 60.78, + "H_sun": 21.63, + "T2m": 12.83, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200420:1710", + "P": 65.4, + "G(i)": 24.51, + "H_sun": 11.03, + "T2m": 12.82, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.72, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200420:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.33, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200420:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.19, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200420:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.97, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200420:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.76, + "WS10m": 4.07, + "Int": 0.0 + }, + { + "time": "20200420:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.54, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200421:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.37, + "WS10m": 4.0, + "Int": 0.0 + }, + { + "time": "20200421:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.08, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200421:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.82, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200421:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.56, + "WS10m": 3.86, + "Int": 0.0 + }, + { + "time": "20200421:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200421:0510", + "P": 0.3, + "G(i)": 5.78, + "H_sun": 5.52, + "T2m": 10.18, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200421:0610", + "P": 118.62, + "G(i)": 36.27, + "H_sun": 16.05, + "T2m": 10.09, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200421:0710", + "P": 276.06, + "G(i)": 68.62, + "H_sun": 26.61, + "T2m": 10.53, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200421:0810", + "P": 335.7, + "G(i)": 80.38, + "H_sun": 36.77, + "T2m": 10.76, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200421:0910", + "P": 555.3, + "G(i)": 122.53, + "H_sun": 45.93, + "T2m": 11.14, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200421:1010", + "P": 513.6, + "G(i)": 114.69, + "H_sun": 53.07, + "T2m": 11.24, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200421:1110", + "P": 436.26, + "G(i)": 99.99, + "H_sun": 56.69, + "T2m": 11.38, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200421:1210", + "P": 385.44, + "G(i)": 90.18, + "H_sun": 55.58, + "T2m": 11.33, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200421:1310", + "P": 385.56, + "G(i)": 90.18, + "H_sun": 50.16, + "T2m": 11.26, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200421:1410", + "P": 503.28, + "G(i)": 112.73, + "H_sun": 41.94, + "T2m": 11.32, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200421:1510", + "P": 284.88, + "G(i)": 70.58, + "H_sun": 32.23, + "T2m": 11.26, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200421:1610", + "P": 260.1, + "G(i)": 65.68, + "H_sun": 21.82, + "T2m": 11.27, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200421:1710", + "P": 296.34, + "G(i)": 73.35, + "H_sun": 11.23, + "T2m": 11.17, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200421:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.82, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200421:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.12, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200421:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.06, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200421:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.01, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200421:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.0, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200421:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.02, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200422:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.12, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200422:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.34, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200422:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200422:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.32, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200422:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200422:0510", + "P": 26.7, + "G(i)": 14.45, + "H_sun": 5.79, + "T2m": 10.07, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200422:0610", + "P": 507.66, + "G(i)": 127.51, + "H_sun": 16.32, + "T2m": 10.48, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200422:0710", + "P": 1419.9, + "G(i)": 302.9, + "H_sun": 26.88, + "T2m": 12.48, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200422:0810", + "P": 2635.86, + "G(i)": 532.01, + "H_sun": 37.06, + "T2m": 14.57, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200422:0910", + "P": 3658.56, + "G(i)": 738.82, + "H_sun": 46.24, + "T2m": 16.15, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200422:1010", + "P": 4384.14, + "G(i)": 899.93, + "H_sun": 53.4, + "T2m": 16.9, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200422:1110", + "P": 4648.62, + "G(i)": 964.64, + "H_sun": 57.03, + "T2m": 17.82, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200422:1210", + "P": 4888.68, + "G(i)": 1022.89, + "H_sun": 55.9, + "T2m": 18.74, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200422:1310", + "P": 4712.82, + "G(i)": 986.35, + "H_sun": 50.43, + "T2m": 19.4, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200422:1410", + "P": 4143.72, + "G(i)": 858.28, + "H_sun": 42.18, + "T2m": 19.77, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200422:1510", + "P": 3390.12, + "G(i)": 692.44, + "H_sun": 32.44, + "T2m": 19.68, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200422:1610", + "P": 2322.72, + "G(i)": 476.25, + "H_sun": 22.02, + "T2m": 19.47, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200422:1710", + "P": 1063.98, + "G(i)": 238.86, + "H_sun": 11.43, + "T2m": 18.72, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200422:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200422:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200422:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200422:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200422:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200422:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.82, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200423:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200423:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200423:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200423:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200423:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200423:0510", + "P": 103.32, + "G(i)": 32.76, + "H_sun": 6.06, + "T2m": 8.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200423:0610", + "P": 339.18, + "G(i)": 112.61, + "H_sun": 16.59, + "T2m": 9.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200423:0710", + "P": 1479.9, + "G(i)": 324.48, + "H_sun": 27.15, + "T2m": 12.28, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200423:0810", + "P": 2647.74, + "G(i)": 545.85, + "H_sun": 37.34, + "T2m": 15.21, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200423:0910", + "P": 3577.02, + "G(i)": 747.36, + "H_sun": 46.54, + "T2m": 17.27, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200423:1010", + "P": 4289.34, + "G(i)": 910.2, + "H_sun": 53.73, + "T2m": 18.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200423:1110", + "P": 4662.72, + "G(i)": 1010.13, + "H_sun": 57.37, + "T2m": 19.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200423:1210", + "P": 4716.12, + "G(i)": 1034.47, + "H_sun": 56.21, + "T2m": 20.08, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200423:1310", + "P": 4542.3, + "G(i)": 991.65, + "H_sun": 50.7, + "T2m": 20.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200423:1410", + "P": 4104.48, + "G(i)": 879.46, + "H_sun": 42.4, + "T2m": 20.83, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200423:1510", + "P": 3393.96, + "G(i)": 710.88, + "H_sun": 32.64, + "T2m": 20.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200423:1610", + "P": 2367.96, + "G(i)": 491.55, + "H_sun": 22.22, + "T2m": 20.46, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200423:1710", + "P": 1116.96, + "G(i)": 251.44, + "H_sun": 11.63, + "T2m": 19.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200423:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.24, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200423:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.99, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200423:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200423:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200423:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200423:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200424:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200424:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.07, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200424:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200424:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200424:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.38, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200424:0510", + "P": 111.48, + "G(i)": 34.69, + "H_sun": 6.33, + "T2m": 9.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200424:0610", + "P": 377.64, + "G(i)": 118.58, + "H_sun": 16.85, + "T2m": 10.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200424:0710", + "P": 1489.02, + "G(i)": 325.78, + "H_sun": 27.42, + "T2m": 13.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200424:0810", + "P": 2644.14, + "G(i)": 543.97, + "H_sun": 37.62, + "T2m": 16.49, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200424:0910", + "P": 3547.92, + "G(i)": 742.04, + "H_sun": 46.84, + "T2m": 18.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200424:1010", + "P": 4195.68, + "G(i)": 902.5, + "H_sun": 54.06, + "T2m": 19.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200424:1110", + "P": 4564.5, + "G(i)": 1000.12, + "H_sun": 57.7, + "T2m": 20.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200424:1210", + "P": 4676.64, + "G(i)": 1028.57, + "H_sun": 56.52, + "T2m": 22.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200424:1310", + "P": 4531.32, + "G(i)": 986.42, + "H_sun": 50.97, + "T2m": 22.71, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200424:1410", + "P": 4065.12, + "G(i)": 869.09, + "H_sun": 42.63, + "T2m": 23.25, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200424:1510", + "P": 3284.82, + "G(i)": 688.62, + "H_sun": 32.85, + "T2m": 23.31, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200424:1610", + "P": 2278.92, + "G(i)": 475.32, + "H_sun": 22.41, + "T2m": 22.82, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200424:1710", + "P": 1098.66, + "G(i)": 248.4, + "H_sun": 11.82, + "T2m": 21.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200424:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.8, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200424:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.41, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200424:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200424:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.76, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200424:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.73, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200424:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.06, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200425:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.45, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200425:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200425:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200425:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.68, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200425:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200425:0510", + "P": 76.92, + "G(i)": 26.98, + "H_sun": 6.59, + "T2m": 10.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200425:0610", + "P": 423.9, + "G(i)": 98.66, + "H_sun": 17.11, + "T2m": 12.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200425:0710", + "P": 931.14, + "G(i)": 197.98, + "H_sun": 27.68, + "T2m": 14.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200425:0810", + "P": 2252.28, + "G(i)": 459.33, + "H_sun": 37.89, + "T2m": 16.81, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200425:0910", + "P": 3533.28, + "G(i)": 725.23, + "H_sun": 47.14, + "T2m": 18.4, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200425:1010", + "P": 4226.4, + "G(i)": 885.46, + "H_sun": 54.37, + "T2m": 19.76, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200425:1110", + "P": 4625.16, + "G(i)": 980.41, + "H_sun": 58.03, + "T2m": 20.8, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200425:1210", + "P": 4749.3, + "G(i)": 1008.54, + "H_sun": 56.83, + "T2m": 21.45, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200425:1310", + "P": 4582.38, + "G(i)": 965.15, + "H_sun": 51.23, + "T2m": 21.65, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200425:1410", + "P": 4074.72, + "G(i)": 849.08, + "H_sun": 42.86, + "T2m": 21.72, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200425:1510", + "P": 3295.26, + "G(i)": 676.5, + "H_sun": 33.05, + "T2m": 21.48, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200425:1610", + "P": 2304.0, + "G(i)": 472.95, + "H_sun": 22.6, + "T2m": 20.89, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200425:1710", + "P": 1132.44, + "G(i)": 252.84, + "H_sun": 12.02, + "T2m": 19.71, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200425:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.09, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200425:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.28, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200425:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.96, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200425:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200425:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.57, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200425:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.99, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200426:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.64, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200426:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.19, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200426:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.82, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200426:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200426:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200426:0510", + "P": 142.5, + "G(i)": 41.44, + "H_sun": 6.85, + "T2m": 10.1, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200426:0610", + "P": 509.28, + "G(i)": 132.88, + "H_sun": 17.36, + "T2m": 11.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200426:0710", + "P": 1390.92, + "G(i)": 296.68, + "H_sun": 27.93, + "T2m": 14.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200426:0810", + "P": 1097.04, + "G(i)": 230.66, + "H_sun": 38.16, + "T2m": 15.86, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200426:0910", + "P": 2312.76, + "G(i)": 475.95, + "H_sun": 47.42, + "T2m": 17.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200426:1010", + "P": 1033.2, + "G(i)": 220.56, + "H_sun": 54.69, + "T2m": 18.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200426:1110", + "P": 3464.22, + "G(i)": 725.0, + "H_sun": 58.36, + "T2m": 19.58, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200426:1210", + "P": 3713.76, + "G(i)": 778.02, + "H_sun": 57.13, + "T2m": 20.1, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200426:1310", + "P": 3948.36, + "G(i)": 822.37, + "H_sun": 51.49, + "T2m": 20.43, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200426:1410", + "P": 1037.94, + "G(i)": 221.89, + "H_sun": 43.08, + "T2m": 20.5, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200426:1510", + "P": 2470.32, + "G(i)": 502.94, + "H_sun": 33.25, + "T2m": 20.17, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200426:1610", + "P": 1066.68, + "G(i)": 226.21, + "H_sun": 22.79, + "T2m": 19.35, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200426:1710", + "P": 1023.18, + "G(i)": 228.36, + "H_sun": 12.21, + "T2m": 18.56, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200426:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.6, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200426:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.21, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200426:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.1, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200426:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.39, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200426:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200426:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200427:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200427:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200427:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200427:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.34, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0510", + "P": 122.46, + "G(i)": 37.58, + "H_sun": 7.11, + "T2m": 13.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200427:0610", + "P": 579.18, + "G(i)": 133.27, + "H_sun": 17.61, + "T2m": 13.55, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0710", + "P": 1449.06, + "G(i)": 310.77, + "H_sun": 28.19, + "T2m": 14.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200427:0810", + "P": 1969.44, + "G(i)": 403.37, + "H_sun": 38.42, + "T2m": 15.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200427:0910", + "P": 2522.46, + "G(i)": 518.55, + "H_sun": 47.71, + "T2m": 16.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200427:1010", + "P": 2142.48, + "G(i)": 441.07, + "H_sun": 55.0, + "T2m": 16.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200427:1110", + "P": 2025.0, + "G(i)": 417.96, + "H_sun": 58.68, + "T2m": 17.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200427:1210", + "P": 4455.54, + "G(i)": 948.7, + "H_sun": 57.43, + "T2m": 17.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200427:1310", + "P": 2842.08, + "G(i)": 584.35, + "H_sun": 51.74, + "T2m": 18.64, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200427:1410", + "P": 3365.1, + "G(i)": 692.3, + "H_sun": 43.3, + "T2m": 19.27, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200427:1510", + "P": 2903.94, + "G(i)": 592.41, + "H_sun": 33.45, + "T2m": 19.42, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200427:1610", + "P": 1858.2, + "G(i)": 380.79, + "H_sun": 22.98, + "T2m": 18.81, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200427:1710", + "P": 511.14, + "G(i)": 119.73, + "H_sun": 12.4, + "T2m": 18.09, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200427:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.32, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200427:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.2, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200427:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.55, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200427:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.86, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200427:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200427:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.3, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200428:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.09, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200428:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200428:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200428:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.52, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200428:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.41, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200428:0510", + "P": 51.66, + "G(i)": 21.2, + "H_sun": 7.36, + "T2m": 13.4, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200428:0610", + "P": 227.64, + "G(i)": 59.8, + "H_sun": 17.86, + "T2m": 13.74, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200428:0710", + "P": 1107.96, + "G(i)": 233.21, + "H_sun": 28.43, + "T2m": 14.53, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200428:0810", + "P": 517.5, + "G(i)": 117.63, + "H_sun": 38.68, + "T2m": 15.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200428:0910", + "P": 1855.68, + "G(i)": 380.04, + "H_sun": 47.99, + "T2m": 15.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200428:1010", + "P": 2108.46, + "G(i)": 431.66, + "H_sun": 55.3, + "T2m": 16.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200428:1110", + "P": 2223.66, + "G(i)": 457.3, + "H_sun": 59.0, + "T2m": 17.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200428:1210", + "P": 3617.7, + "G(i)": 755.25, + "H_sun": 57.72, + "T2m": 17.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200428:1310", + "P": 865.08, + "G(i)": 186.25, + "H_sun": 52.0, + "T2m": 16.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200428:1410", + "P": 1116.96, + "G(i)": 234.97, + "H_sun": 43.52, + "T2m": 16.39, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200428:1510", + "P": 159.36, + "G(i)": 46.07, + "H_sun": 33.64, + "T2m": 16.14, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200428:1610", + "P": 551.58, + "G(i)": 125.02, + "H_sun": 23.17, + "T2m": 16.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200428:1710", + "P": 26.52, + "G(i)": 14.7, + "H_sun": 12.59, + "T2m": 15.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200428:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200428:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.5, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200428:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.06, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200428:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.46, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200428:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200428:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200429:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200429:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200429:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200429:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200429:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.1, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200429:0510", + "P": 179.16, + "G(i)": 49.14, + "H_sun": 7.6, + "T2m": 10.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200429:0610", + "P": 597.42, + "G(i)": 134.44, + "H_sun": 18.1, + "T2m": 11.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200429:0710", + "P": 1010.22, + "G(i)": 212.61, + "H_sun": 28.68, + "T2m": 13.92, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200429:0810", + "P": 1868.46, + "G(i)": 382.37, + "H_sun": 38.93, + "T2m": 15.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200429:0910", + "P": 3642.12, + "G(i)": 757.24, + "H_sun": 48.26, + "T2m": 17.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200429:1010", + "P": 4248.6, + "G(i)": 912.98, + "H_sun": 55.61, + "T2m": 18.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200429:1110", + "P": 4564.02, + "G(i)": 1015.26, + "H_sun": 59.31, + "T2m": 19.97, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200429:1210", + "P": 4649.16, + "G(i)": 1044.23, + "H_sun": 58.01, + "T2m": 20.8, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200429:1310", + "P": 4481.4, + "G(i)": 1001.4, + "H_sun": 52.25, + "T2m": 21.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200429:1410", + "P": 4059.9, + "G(i)": 888.39, + "H_sun": 43.73, + "T2m": 21.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200429:1510", + "P": 3326.34, + "G(i)": 708.0, + "H_sun": 33.84, + "T2m": 22.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200429:1610", + "P": 2383.44, + "G(i)": 500.67, + "H_sun": 23.36, + "T2m": 22.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200429:1710", + "P": 1185.9, + "G(i)": 266.3, + "H_sun": 12.78, + "T2m": 21.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200429:1810", + "P": 7.08, + "G(i)": 8.67, + "H_sun": 2.46, + "T2m": 19.64, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200429:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.43, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200429:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.95, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200429:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.66, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200429:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200429:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200430:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200430:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.39, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200430:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.41, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200430:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200430:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200430:0510", + "P": 141.54, + "G(i)": 41.44, + "H_sun": 7.84, + "T2m": 11.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:0610", + "P": 449.64, + "G(i)": 133.62, + "H_sun": 18.33, + "T2m": 12.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200430:0710", + "P": 1467.78, + "G(i)": 312.27, + "H_sun": 28.91, + "T2m": 14.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200430:0810", + "P": 1357.02, + "G(i)": 281.57, + "H_sun": 39.18, + "T2m": 15.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200430:0910", + "P": 1976.88, + "G(i)": 406.23, + "H_sun": 48.53, + "T2m": 16.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:1010", + "P": 2197.14, + "G(i)": 453.06, + "H_sun": 55.9, + "T2m": 17.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:1110", + "P": 1829.88, + "G(i)": 381.1, + "H_sun": 59.62, + "T2m": 17.97, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200430:1210", + "P": 623.76, + "G(i)": 140.18, + "H_sun": 58.3, + "T2m": 18.09, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200430:1310", + "P": 1428.96, + "G(i)": 298.42, + "H_sun": 52.49, + "T2m": 17.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200430:1410", + "P": 1645.02, + "G(i)": 341.47, + "H_sun": 43.94, + "T2m": 18.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200430:1510", + "P": 2314.8, + "G(i)": 477.18, + "H_sun": 34.03, + "T2m": 18.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200430:1610", + "P": 1333.74, + "G(i)": 277.98, + "H_sun": 23.55, + "T2m": 17.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200430:1710", + "P": 529.14, + "G(i)": 122.53, + "H_sun": 12.97, + "T2m": 16.84, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200430:1810", + "P": 2.34, + "G(i)": 6.75, + "H_sun": 2.65, + "T2m": 15.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200430:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.9, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200430:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.62, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200430:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200430:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200430:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200501:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200501:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200501:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.27, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200501:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200501:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0510", + "P": 174.96, + "G(i)": 48.18, + "H_sun": 8.08, + "T2m": 9.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0610", + "P": 499.2, + "G(i)": 112.73, + "H_sun": 18.56, + "T2m": 10.34, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0710", + "P": 1136.7, + "G(i)": 237.9, + "H_sun": 29.15, + "T2m": 13.05, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200501:0810", + "P": 2223.9, + "G(i)": 454.99, + "H_sun": 39.42, + "T2m": 14.91, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200501:0910", + "P": 2896.86, + "G(i)": 597.91, + "H_sun": 48.79, + "T2m": 16.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200501:1010", + "P": 4102.62, + "G(i)": 875.09, + "H_sun": 56.19, + "T2m": 18.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200501:1110", + "P": 2377.38, + "G(i)": 497.79, + "H_sun": 59.93, + "T2m": 19.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200501:1210", + "P": 2660.4, + "G(i)": 565.04, + "H_sun": 58.59, + "T2m": 20.69, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200501:1310", + "P": 3759.12, + "G(i)": 818.39, + "H_sun": 52.74, + "T2m": 21.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200501:1410", + "P": 1930.26, + "G(i)": 409.16, + "H_sun": 44.15, + "T2m": 22.0, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200501:1510", + "P": 325.5, + "G(i)": 82.34, + "H_sun": 34.22, + "T2m": 22.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200501:1610", + "P": 366.84, + "G(i)": 90.18, + "H_sun": 23.73, + "T2m": 20.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200501:1710", + "P": 483.84, + "G(i)": 114.19, + "H_sun": 13.15, + "T2m": 18.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200501:1810", + "P": 0.0, + "G(i)": 3.85, + "H_sun": 2.85, + "T2m": 17.4, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200501:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200501:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.33, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200501:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200501:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200501:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200502:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200502:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200502:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200502:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.66, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200502:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.22, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200502:0510", + "P": 165.66, + "G(i)": 46.25, + "H_sun": 8.31, + "T2m": 9.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200502:0610", + "P": 514.62, + "G(i)": 144.16, + "H_sun": 18.79, + "T2m": 11.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200502:0710", + "P": 1571.52, + "G(i)": 336.07, + "H_sun": 29.37, + "T2m": 14.19, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200502:0810", + "P": 2760.9, + "G(i)": 568.62, + "H_sun": 39.66, + "T2m": 16.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200502:0910", + "P": 3639.78, + "G(i)": 759.05, + "H_sun": 49.05, + "T2m": 19.46, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200502:1010", + "P": 4280.76, + "G(i)": 907.26, + "H_sun": 56.48, + "T2m": 21.55, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200502:1110", + "P": 4665.3, + "G(i)": 1001.06, + "H_sun": 60.23, + "T2m": 22.91, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200502:1210", + "P": 4739.76, + "G(i)": 1021.84, + "H_sun": 58.87, + "T2m": 23.87, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200502:1310", + "P": 4558.56, + "G(i)": 983.66, + "H_sun": 52.98, + "T2m": 24.5, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200502:1410", + "P": 4087.92, + "G(i)": 872.68, + "H_sun": 44.36, + "T2m": 24.88, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200502:1510", + "P": 3339.0, + "G(i)": 698.74, + "H_sun": 34.41, + "T2m": 24.95, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200502:1610", + "P": 2389.44, + "G(i)": 498.57, + "H_sun": 23.91, + "T2m": 24.56, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200502:1710", + "P": 939.18, + "G(i)": 212.57, + "H_sun": 13.34, + "T2m": 23.46, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200502:1810", + "P": 12.96, + "G(i)": 10.78, + "H_sun": 3.05, + "T2m": 21.51, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200502:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.8, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200502:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.44, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200502:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.39, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200502:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.35, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200502:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200503:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200503:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.29, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200503:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200503:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200503:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200503:0510", + "P": 178.2, + "G(i)": 49.14, + "H_sun": 8.54, + "T2m": 11.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200503:0610", + "P": 458.22, + "G(i)": 139.76, + "H_sun": 19.01, + "T2m": 13.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200503:0710", + "P": 1598.4, + "G(i)": 348.41, + "H_sun": 29.6, + "T2m": 15.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200503:0810", + "P": 2708.94, + "G(i)": 558.51, + "H_sun": 39.9, + "T2m": 18.07, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200503:0910", + "P": 3606.54, + "G(i)": 747.1, + "H_sun": 49.31, + "T2m": 19.69, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200503:1010", + "P": 4234.44, + "G(i)": 891.62, + "H_sun": 56.76, + "T2m": 20.79, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200503:1110", + "P": 4597.32, + "G(i)": 982.89, + "H_sun": 60.53, + "T2m": 21.54, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200503:1210", + "P": 4727.76, + "G(i)": 1014.91, + "H_sun": 59.15, + "T2m": 22.22, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200503:1310", + "P": 4539.3, + "G(i)": 970.87, + "H_sun": 53.22, + "T2m": 22.66, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200503:1410", + "P": 4044.96, + "G(i)": 855.79, + "H_sun": 44.57, + "T2m": 22.88, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200503:1510", + "P": 3307.86, + "G(i)": 689.71, + "H_sun": 34.6, + "T2m": 22.79, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200503:1610", + "P": 2308.8, + "G(i)": 480.68, + "H_sun": 24.09, + "T2m": 22.34, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200503:1710", + "P": 1170.54, + "G(i)": 261.78, + "H_sun": 13.52, + "T2m": 21.61, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200503:1810", + "P": 24.3, + "G(i)": 15.19, + "H_sun": 3.24, + "T2m": 19.8, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200503:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200503:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.62, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200503:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200503:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.81, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200503:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.11, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200504:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200504:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200504:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200504:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.71, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200504:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.16, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200504:0510", + "P": 136.8, + "G(i)": 40.47, + "H_sun": 8.76, + "T2m": 11.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200504:0610", + "P": 636.18, + "G(i)": 142.89, + "H_sun": 19.23, + "T2m": 13.57, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200504:0710", + "P": 1393.98, + "G(i)": 290.51, + "H_sun": 29.82, + "T2m": 14.62, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200504:0810", + "P": 2227.8, + "G(i)": 453.52, + "H_sun": 40.12, + "T2m": 15.95, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200504:0910", + "P": 2859.24, + "G(i)": 586.72, + "H_sun": 49.56, + "T2m": 17.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200504:1010", + "P": 4010.28, + "G(i)": 846.16, + "H_sun": 57.04, + "T2m": 18.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200504:1110", + "P": 4617.84, + "G(i)": 998.03, + "H_sun": 60.82, + "T2m": 19.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200504:1210", + "P": 4670.1, + "G(i)": 1024.44, + "H_sun": 59.42, + "T2m": 20.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:1310", + "P": 4434.6, + "G(i)": 980.65, + "H_sun": 53.45, + "T2m": 21.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200504:1410", + "P": 3984.36, + "G(i)": 870.64, + "H_sun": 44.77, + "T2m": 21.88, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200504:1510", + "P": 3315.18, + "G(i)": 702.66, + "H_sun": 34.78, + "T2m": 22.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:1610", + "P": 2341.74, + "G(i)": 492.2, + "H_sun": 24.27, + "T2m": 22.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:1710", + "P": 1201.32, + "G(i)": 268.71, + "H_sun": 13.7, + "T2m": 21.76, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200504:1810", + "P": 30.9, + "G(i)": 17.04, + "H_sun": 3.43, + "T2m": 20.16, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200504:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200504:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200504:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.63, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200504:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200504:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.36, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200505:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200505:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200505:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.79, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200505:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200505:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.11, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200505:0510", + "P": 191.76, + "G(i)": 52.03, + "H_sun": 8.98, + "T2m": 11.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200505:0610", + "P": 627.84, + "G(i)": 156.94, + "H_sun": 19.44, + "T2m": 12.46, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200505:0710", + "P": 1617.48, + "G(i)": 349.86, + "H_sun": 30.03, + "T2m": 14.23, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200505:0810", + "P": 2567.58, + "G(i)": 527.29, + "H_sun": 40.35, + "T2m": 15.67, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200505:0910", + "P": 3227.82, + "G(i)": 672.56, + "H_sun": 49.8, + "T2m": 17.26, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200505:1010", + "P": 3615.54, + "G(i)": 768.43, + "H_sun": 57.31, + "T2m": 18.77, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200505:1110", + "P": 3741.72, + "G(i)": 808.86, + "H_sun": 61.11, + "T2m": 20.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200505:1210", + "P": 3488.88, + "G(i)": 753.64, + "H_sun": 59.69, + "T2m": 21.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200505:1310", + "P": 4233.42, + "G(i)": 926.11, + "H_sun": 53.68, + "T2m": 22.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200505:1410", + "P": 3848.52, + "G(i)": 825.25, + "H_sun": 44.97, + "T2m": 22.68, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200505:1510", + "P": 3118.08, + "G(i)": 654.28, + "H_sun": 34.97, + "T2m": 22.81, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200505:1610", + "P": 1680.72, + "G(i)": 352.39, + "H_sun": 24.45, + "T2m": 22.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200505:1710", + "P": 395.88, + "G(i)": 96.84, + "H_sun": 13.89, + "T2m": 21.54, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200505:1810", + "P": 16.14, + "G(i)": 11.76, + "H_sun": 3.62, + "T2m": 19.99, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200505:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.44, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200505:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.44, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200505:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200505:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200505:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200506:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200506:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.6, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200506:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200506:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200506:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200506:0510", + "P": 181.2, + "G(i)": 50.11, + "H_sun": 9.19, + "T2m": 13.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200506:0610", + "P": 507.18, + "G(i)": 149.23, + "H_sun": 19.65, + "T2m": 15.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200506:0710", + "P": 1613.76, + "G(i)": 350.22, + "H_sun": 30.24, + "T2m": 16.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200506:0810", + "P": 2689.02, + "G(i)": 558.13, + "H_sun": 40.56, + "T2m": 17.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200506:0910", + "P": 3521.64, + "G(i)": 738.14, + "H_sun": 50.03, + "T2m": 19.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200506:1010", + "P": 4048.32, + "G(i)": 862.25, + "H_sun": 57.57, + "T2m": 21.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200506:1110", + "P": 4399.44, + "G(i)": 941.28, + "H_sun": 61.39, + "T2m": 21.68, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200506:1210", + "P": 4540.38, + "G(i)": 976.62, + "H_sun": 59.96, + "T2m": 22.58, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200506:1310", + "P": 4471.92, + "G(i)": 951.01, + "H_sun": 53.91, + "T2m": 22.79, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200506:1410", + "P": 4002.54, + "G(i)": 832.34, + "H_sun": 45.17, + "T2m": 22.31, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200506:1510", + "P": 3353.28, + "G(i)": 685.04, + "H_sun": 35.15, + "T2m": 21.45, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200506:1610", + "P": 1697.7, + "G(i)": 350.17, + "H_sun": 24.63, + "T2m": 20.98, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200506:1710", + "P": 1027.2, + "G(i)": 226.45, + "H_sun": 14.06, + "T2m": 20.12, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200506:1810", + "P": 27.42, + "G(i)": 15.89, + "H_sun": 3.81, + "T2m": 18.79, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200506:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.95, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200506:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.46, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200506:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.62, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200506:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.05, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200506:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200507:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200507:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200507:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200507:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.41, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200507:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200507:0510", + "P": 185.94, + "G(i)": 51.07, + "H_sun": 9.4, + "T2m": 13.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200507:0610", + "P": 666.42, + "G(i)": 164.92, + "H_sun": 19.85, + "T2m": 14.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200507:0710", + "P": 1581.6, + "G(i)": 334.04, + "H_sun": 30.44, + "T2m": 15.65, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200507:0810", + "P": 2777.88, + "G(i)": 567.42, + "H_sun": 40.78, + "T2m": 16.6, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200507:0910", + "P": 3648.06, + "G(i)": 756.09, + "H_sun": 50.27, + "T2m": 17.69, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200507:1010", + "P": 4208.7, + "G(i)": 902.69, + "H_sun": 57.83, + "T2m": 19.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200507:1110", + "P": 4517.1, + "G(i)": 999.23, + "H_sun": 61.67, + "T2m": 20.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200507:1210", + "P": 4540.92, + "G(i)": 1025.11, + "H_sun": 60.22, + "T2m": 21.31, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200507:1310", + "P": 4377.18, + "G(i)": 980.94, + "H_sun": 54.13, + "T2m": 21.93, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200507:1410", + "P": 3960.12, + "G(i)": 871.91, + "H_sun": 45.37, + "T2m": 22.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200507:1510", + "P": 3285.54, + "G(i)": 705.49, + "H_sun": 35.33, + "T2m": 22.99, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200507:1610", + "P": 2358.84, + "G(i)": 500.39, + "H_sun": 24.8, + "T2m": 23.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200507:1710", + "P": 1247.46, + "G(i)": 280.45, + "H_sun": 14.24, + "T2m": 23.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200507:1810", + "P": 127.5, + "G(i)": 50.67, + "H_sun": 4.0, + "T2m": 22.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200507:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200507:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200507:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200507:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200507:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200508:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200508:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200508:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200508:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200508:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200508:0510", + "P": 165.96, + "G(i)": 47.22, + "H_sun": 9.6, + "T2m": 14.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200508:0610", + "P": 574.98, + "G(i)": 130.58, + "H_sun": 20.04, + "T2m": 15.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200508:0710", + "P": 1216.98, + "G(i)": 257.65, + "H_sun": 30.63, + "T2m": 17.38, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200508:0810", + "P": 1993.56, + "G(i)": 413.69, + "H_sun": 40.98, + "T2m": 18.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200508:0910", + "P": 2511.42, + "G(i)": 524.85, + "H_sun": 50.49, + "T2m": 19.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200508:1010", + "P": 3748.14, + "G(i)": 804.24, + "H_sun": 58.09, + "T2m": 20.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200508:1110", + "P": 4346.64, + "G(i)": 958.24, + "H_sun": 61.94, + "T2m": 21.43, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200508:1210", + "P": 4559.52, + "G(i)": 1030.66, + "H_sun": 60.47, + "T2m": 22.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200508:1310", + "P": 3143.46, + "G(i)": 678.71, + "H_sun": 54.36, + "T2m": 23.06, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200508:1410", + "P": 3467.22, + "G(i)": 746.67, + "H_sun": 45.56, + "T2m": 23.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200508:1510", + "P": 2504.46, + "G(i)": 527.67, + "H_sun": 35.51, + "T2m": 24.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200508:1610", + "P": 2242.02, + "G(i)": 471.03, + "H_sun": 24.97, + "T2m": 23.95, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200508:1710", + "P": 1260.12, + "G(i)": 280.87, + "H_sun": 14.42, + "T2m": 23.07, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200508:1810", + "P": 100.86, + "G(i)": 39.61, + "H_sun": 4.19, + "T2m": 21.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200508:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.12, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200508:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200508:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200508:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200508:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200509:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.8, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200509:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.34, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200509:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200509:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200509:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.41, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200509:0510", + "P": 105.36, + "G(i)": 33.73, + "H_sun": 9.8, + "T2m": 12.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200509:0610", + "P": 723.72, + "G(i)": 165.67, + "H_sun": 20.24, + "T2m": 14.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200509:0710", + "P": 1640.76, + "G(i)": 351.73, + "H_sun": 30.83, + "T2m": 16.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200509:0810", + "P": 2687.1, + "G(i)": 555.4, + "H_sun": 41.18, + "T2m": 18.79, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200509:0910", + "P": 3226.92, + "G(i)": 674.51, + "H_sun": 50.71, + "T2m": 20.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200509:1010", + "P": 3950.28, + "G(i)": 845.71, + "H_sun": 58.34, + "T2m": 21.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200509:1110", + "P": 4424.52, + "G(i)": 960.6, + "H_sun": 62.21, + "T2m": 22.01, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200509:1210", + "P": 4586.22, + "G(i)": 989.7, + "H_sun": 60.73, + "T2m": 22.3, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200509:1310", + "P": 3537.9, + "G(i)": 743.15, + "H_sun": 54.57, + "T2m": 22.19, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200509:1410", + "P": 3816.54, + "G(i)": 799.82, + "H_sun": 45.75, + "T2m": 22.1, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200509:1510", + "P": 2872.86, + "G(i)": 592.39, + "H_sun": 35.68, + "T2m": 22.2, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200509:1610", + "P": 658.74, + "G(i)": 148.41, + "H_sun": 25.14, + "T2m": 21.67, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200509:1710", + "P": 293.46, + "G(i)": 75.09, + "H_sun": 14.59, + "T2m": 20.58, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200509:1810", + "P": 22.62, + "G(i)": 13.72, + "H_sun": 4.37, + "T2m": 19.39, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200509:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.8, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200509:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.08, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200509:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.56, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200509:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200509:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200510:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200510:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.29, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200510:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.01, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200510:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200510:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200510:0510", + "P": 147.84, + "G(i)": 43.36, + "H_sun": 9.99, + "T2m": 14.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200510:0610", + "P": 694.68, + "G(i)": 157.27, + "H_sun": 20.42, + "T2m": 15.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200510:0710", + "P": 1511.64, + "G(i)": 319.56, + "H_sun": 31.01, + "T2m": 16.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200510:0810", + "P": 2381.94, + "G(i)": 493.31, + "H_sun": 41.38, + "T2m": 16.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200510:0910", + "P": 3226.98, + "G(i)": 672.83, + "H_sun": 50.93, + "T2m": 17.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200510:1010", + "P": 1195.62, + "G(i)": 251.92, + "H_sun": 58.58, + "T2m": 17.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200510:1110", + "P": 4087.26, + "G(i)": 861.47, + "H_sun": 62.48, + "T2m": 18.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200510:1210", + "P": 3552.36, + "G(i)": 741.62, + "H_sun": 60.98, + "T2m": 18.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200510:1310", + "P": 2116.38, + "G(i)": 435.23, + "H_sun": 54.79, + "T2m": 18.61, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200510:1410", + "P": 519.36, + "G(i)": 119.59, + "H_sun": 45.94, + "T2m": 18.69, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200510:1510", + "P": 534.12, + "G(i)": 122.53, + "H_sun": 35.85, + "T2m": 18.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200510:1610", + "P": 217.8, + "G(i)": 58.81, + "H_sun": 25.31, + "T2m": 18.28, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200510:1710", + "P": 51.9, + "G(i)": 21.57, + "H_sun": 14.76, + "T2m": 17.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200510:1810", + "P": 41.7, + "G(i)": 19.55, + "H_sun": 4.55, + "T2m": 16.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200510:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200510:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.41, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200510:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200510:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.87, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200510:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.84, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200511:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200511:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.44, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200511:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.27, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200511:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.15, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200511:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.96, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200511:0510", + "P": 213.12, + "G(i)": 56.85, + "H_sun": 10.17, + "T2m": 13.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200511:0610", + "P": 129.42, + "G(i)": 39.21, + "H_sun": 20.6, + "T2m": 14.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200511:0710", + "P": 213.18, + "G(i)": 56.85, + "H_sun": 31.19, + "T2m": 13.51, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200511:0810", + "P": 1649.58, + "G(i)": 337.56, + "H_sun": 41.57, + "T2m": 14.18, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200511:0910", + "P": 1282.14, + "G(i)": 265.59, + "H_sun": 51.13, + "T2m": 15.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200511:1010", + "P": 1111.2, + "G(i)": 232.32, + "H_sun": 58.82, + "T2m": 15.57, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200511:1110", + "P": 2904.18, + "G(i)": 596.77, + "H_sun": 62.73, + "T2m": 16.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200511:1210", + "P": 3011.22, + "G(i)": 618.57, + "H_sun": 61.22, + "T2m": 17.09, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200511:1310", + "P": 1674.84, + "G(i)": 345.21, + "H_sun": 55.0, + "T2m": 17.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200511:1410", + "P": 1459.86, + "G(i)": 301.47, + "H_sun": 46.12, + "T2m": 16.89, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200511:1510", + "P": 671.58, + "G(i)": 148.02, + "H_sun": 36.03, + "T2m": 16.18, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200511:1610", + "P": 833.34, + "G(i)": 180.07, + "H_sun": 25.48, + "T2m": 16.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200511:1710", + "P": 158.94, + "G(i)": 46.07, + "H_sun": 14.93, + "T2m": 16.57, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200511:1810", + "P": 37.14, + "G(i)": 17.64, + "H_sun": 4.73, + "T2m": 16.26, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200511:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200511:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.57, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200511:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200511:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200511:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200512:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.9, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200512:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200512:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200512:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.66, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200512:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200512:0510", + "P": 219.42, + "G(i)": 57.82, + "H_sun": 10.36, + "T2m": 12.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200512:0610", + "P": 639.0, + "G(i)": 142.83, + "H_sun": 20.78, + "T2m": 14.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200512:0710", + "P": 1144.02, + "G(i)": 239.28, + "H_sun": 31.37, + "T2m": 14.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200512:0810", + "P": 2170.56, + "G(i)": 445.02, + "H_sun": 41.75, + "T2m": 15.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200512:0910", + "P": 3383.58, + "G(i)": 704.31, + "H_sun": 51.34, + "T2m": 17.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200512:1010", + "P": 3457.92, + "G(i)": 725.72, + "H_sun": 59.05, + "T2m": 18.63, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200512:1110", + "P": 3205.14, + "G(i)": 678.05, + "H_sun": 62.99, + "T2m": 19.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200512:1210", + "P": 3175.2, + "G(i)": 674.85, + "H_sun": 61.46, + "T2m": 20.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200512:1310", + "P": 3379.86, + "G(i)": 718.3, + "H_sun": 55.21, + "T2m": 20.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200512:1410", + "P": 3944.7, + "G(i)": 843.26, + "H_sun": 46.3, + "T2m": 21.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200512:1510", + "P": 2888.58, + "G(i)": 597.27, + "H_sun": 36.19, + "T2m": 21.58, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200512:1610", + "P": 2436.24, + "G(i)": 501.74, + "H_sun": 25.64, + "T2m": 20.91, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200512:1710", + "P": 1210.44, + "G(i)": 264.93, + "H_sun": 15.1, + "T2m": 20.09, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200512:1810", + "P": 162.78, + "G(i)": 57.1, + "H_sun": 4.91, + "T2m": 18.99, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200512:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.39, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200512:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200512:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.69, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200512:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.07, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200512:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.97, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200513:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200513:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200513:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200513:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.95, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200513:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.66, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200513:0510", + "P": 13.14, + "G(i)": 10.6, + "H_sun": 10.53, + "T2m": 14.34, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200513:0610", + "P": 85.68, + "G(i)": 29.41, + "H_sun": 20.95, + "T2m": 14.06, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200513:0710", + "P": 223.38, + "G(i)": 58.81, + "H_sun": 31.54, + "T2m": 13.42, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200513:0810", + "P": 271.86, + "G(i)": 68.62, + "H_sun": 41.93, + "T2m": 13.47, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200513:0910", + "P": 521.7, + "G(i)": 117.63, + "H_sun": 51.53, + "T2m": 14.03, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200513:1010", + "P": 777.0, + "G(i)": 166.64, + "H_sun": 59.27, + "T2m": 14.59, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200513:1110", + "P": 698.64, + "G(i)": 151.94, + "H_sun": 63.23, + "T2m": 14.83, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200513:1210", + "P": 459.12, + "G(i)": 105.87, + "H_sun": 61.7, + "T2m": 14.82, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200513:1310", + "P": 423.9, + "G(i)": 99.0, + "H_sun": 55.41, + "T2m": 14.66, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200513:1410", + "P": 304.2, + "G(i)": 75.48, + "H_sun": 46.48, + "T2m": 14.9, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200513:1510", + "P": 240.6, + "G(i)": 62.74, + "H_sun": 36.36, + "T2m": 15.19, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200513:1610", + "P": 203.1, + "G(i)": 54.89, + "H_sun": 25.81, + "T2m": 14.51, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200513:1710", + "P": 349.08, + "G(i)": 84.42, + "H_sun": 15.27, + "T2m": 14.4, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200513:1810", + "P": 2.7, + "G(i)": 6.86, + "H_sun": 5.09, + "T2m": 14.17, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200513:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.59, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200513:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.52, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200513:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200513:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200513:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.53, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200514:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200514:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200514:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200514:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.59, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200514:0510", + "P": 92.46, + "G(i)": 30.84, + "H_sun": 10.7, + "T2m": 12.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:0610", + "P": 597.12, + "G(i)": 133.13, + "H_sun": 21.11, + "T2m": 13.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200514:0710", + "P": 1288.5, + "G(i)": 268.0, + "H_sun": 31.7, + "T2m": 14.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200514:0810", + "P": 1464.24, + "G(i)": 301.74, + "H_sun": 42.1, + "T2m": 14.86, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200514:0910", + "P": 1984.26, + "G(i)": 406.39, + "H_sun": 51.72, + "T2m": 15.83, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200514:1010", + "P": 3462.06, + "G(i)": 719.96, + "H_sun": 59.49, + "T2m": 16.76, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200514:1110", + "P": 4278.24, + "G(i)": 917.35, + "H_sun": 63.48, + "T2m": 17.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:1210", + "P": 2618.16, + "G(i)": 543.82, + "H_sun": 61.93, + "T2m": 17.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:1310", + "P": 3729.48, + "G(i)": 794.7, + "H_sun": 55.62, + "T2m": 18.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200514:1410", + "P": 3512.82, + "G(i)": 741.04, + "H_sun": 46.66, + "T2m": 18.38, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200514:1510", + "P": 3129.84, + "G(i)": 650.57, + "H_sun": 36.52, + "T2m": 19.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200514:1610", + "P": 1025.94, + "G(i)": 218.25, + "H_sun": 25.97, + "T2m": 18.91, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200514:1710", + "P": 784.92, + "G(i)": 174.21, + "H_sun": 15.43, + "T2m": 18.71, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200514:1810", + "P": 85.98, + "G(i)": 31.61, + "H_sun": 5.26, + "T2m": 17.92, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200514:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200514:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.53, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200514:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.14, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200514:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200514:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200515:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.7, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200515:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200515:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.9, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200515:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.85, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:0510", + "P": 154.08, + "G(i)": 44.33, + "H_sun": 10.87, + "T2m": 12.84, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:0610", + "P": 370.2, + "G(i)": 88.22, + "H_sun": 21.27, + "T2m": 13.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200515:0710", + "P": 1081.02, + "G(i)": 228.39, + "H_sun": 31.86, + "T2m": 15.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200515:0810", + "P": 2094.18, + "G(i)": 432.8, + "H_sun": 42.27, + "T2m": 16.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200515:0910", + "P": 3391.92, + "G(i)": 708.21, + "H_sun": 51.91, + "T2m": 18.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200515:1010", + "P": 3878.82, + "G(i)": 822.88, + "H_sun": 59.71, + "T2m": 18.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200515:1110", + "P": 2428.62, + "G(i)": 506.51, + "H_sun": 63.71, + "T2m": 20.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:1210", + "P": 1734.54, + "G(i)": 364.8, + "H_sun": 62.16, + "T2m": 20.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:1310", + "P": 3865.26, + "G(i)": 831.87, + "H_sun": 55.81, + "T2m": 21.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:1410", + "P": 3565.02, + "G(i)": 752.5, + "H_sun": 46.83, + "T2m": 21.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:1510", + "P": 1943.7, + "G(i)": 403.33, + "H_sun": 36.69, + "T2m": 20.91, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200515:1610", + "P": 753.9, + "G(i)": 167.26, + "H_sun": 26.13, + "T2m": 20.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200515:1710", + "P": 165.06, + "G(i)": 48.03, + "H_sun": 15.6, + "T2m": 20.08, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200515:1810", + "P": 106.62, + "G(i)": 37.08, + "H_sun": 5.43, + "T2m": 19.25, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200515:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200515:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200515:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.67, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200516:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.29, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200516:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200516:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200516:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200516:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200516:0510", + "P": 292.14, + "G(i)": 73.23, + "H_sun": 11.03, + "T2m": 14.89, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200516:0610", + "P": 750.06, + "G(i)": 168.31, + "H_sun": 21.42, + "T2m": 15.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200516:0710", + "P": 1064.64, + "G(i)": 224.2, + "H_sun": 32.01, + "T2m": 15.86, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200516:0810", + "P": 655.74, + "G(i)": 145.08, + "H_sun": 42.43, + "T2m": 16.7, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200516:0910", + "P": 957.06, + "G(i)": 203.89, + "H_sun": 52.09, + "T2m": 17.5, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200516:1010", + "P": 2262.3, + "G(i)": 464.17, + "H_sun": 59.91, + "T2m": 18.08, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200516:1110", + "P": 3246.78, + "G(i)": 678.52, + "H_sun": 63.95, + "T2m": 18.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200516:1210", + "P": 2118.24, + "G(i)": 438.38, + "H_sun": 62.38, + "T2m": 18.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200516:1310", + "P": 1847.64, + "G(i)": 383.18, + "H_sun": 56.01, + "T2m": 19.6, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200516:1410", + "P": 343.92, + "G(i)": 85.28, + "H_sun": 47.01, + "T2m": 20.18, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200516:1510", + "P": 272.1, + "G(i)": 70.58, + "H_sun": 36.85, + "T2m": 20.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200516:1610", + "P": 253.98, + "G(i)": 66.66, + "H_sun": 26.28, + "T2m": 19.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200516:1710", + "P": 157.26, + "G(i)": 46.07, + "H_sun": 15.76, + "T2m": 19.01, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200516:1810", + "P": 13.26, + "G(i)": 10.78, + "H_sun": 5.6, + "T2m": 18.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200516:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.95, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200516:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.44, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200516:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200516:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.31, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200516:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.06, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200517:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200517:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200517:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.46, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200517:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.35, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200517:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200517:0510", + "P": 47.58, + "G(i)": 20.24, + "H_sun": 11.18, + "T2m": 14.32, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200517:0610", + "P": 343.2, + "G(i)": 83.32, + "H_sun": 21.57, + "T2m": 14.63, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200517:0710", + "P": 299.1, + "G(i)": 74.5, + "H_sun": 32.16, + "T2m": 14.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200517:0810", + "P": 1547.94, + "G(i)": 317.07, + "H_sun": 42.58, + "T2m": 15.12, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200517:0910", + "P": 1968.72, + "G(i)": 401.41, + "H_sun": 52.26, + "T2m": 15.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:1010", + "P": 2996.4, + "G(i)": 611.96, + "H_sun": 60.11, + "T2m": 16.25, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200517:1110", + "P": 3336.72, + "G(i)": 687.03, + "H_sun": 64.17, + "T2m": 16.85, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200517:1210", + "P": 2501.64, + "G(i)": 513.87, + "H_sun": 62.6, + "T2m": 17.51, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:1310", + "P": 2851.14, + "G(i)": 587.47, + "H_sun": 56.2, + "T2m": 17.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200517:1410", + "P": 2622.9, + "G(i)": 538.3, + "H_sun": 47.17, + "T2m": 18.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200517:1510", + "P": 2634.24, + "G(i)": 538.4, + "H_sun": 37.0, + "T2m": 18.45, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200517:1610", + "P": 1550.22, + "G(i)": 320.41, + "H_sun": 26.44, + "T2m": 18.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:1710", + "P": 1316.1, + "G(i)": 284.56, + "H_sun": 15.92, + "T2m": 18.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200517:1810", + "P": 256.98, + "G(i)": 80.16, + "H_sun": 5.77, + "T2m": 17.28, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200517:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.46, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200517:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200517:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.48, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200517:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.0, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200517:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200518:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200518:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200518:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.03, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200518:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200518:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200518:0510", + "P": 308.76, + "G(i)": 76.13, + "H_sun": 11.33, + "T2m": 13.39, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200518:0610", + "P": 657.42, + "G(i)": 174.56, + "H_sun": 21.71, + "T2m": 15.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200518:0710", + "P": 1711.32, + "G(i)": 366.98, + "H_sun": 32.3, + "T2m": 17.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200518:0810", + "P": 2512.62, + "G(i)": 519.53, + "H_sun": 42.73, + "T2m": 18.29, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200518:0910", + "P": 3276.84, + "G(i)": 682.18, + "H_sun": 52.43, + "T2m": 19.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200518:1010", + "P": 3464.16, + "G(i)": 732.72, + "H_sun": 60.31, + "T2m": 20.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200518:1110", + "P": 3876.78, + "G(i)": 839.15, + "H_sun": 64.39, + "T2m": 21.97, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200518:1210", + "P": 4220.22, + "G(i)": 932.41, + "H_sun": 62.81, + "T2m": 22.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200518:1310", + "P": 3788.52, + "G(i)": 835.01, + "H_sun": 56.38, + "T2m": 23.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200518:1410", + "P": 3923.04, + "G(i)": 863.25, + "H_sun": 47.34, + "T2m": 23.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200518:1510", + "P": 3227.22, + "G(i)": 688.75, + "H_sun": 37.16, + "T2m": 24.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200518:1610", + "P": 1395.54, + "G(i)": 297.47, + "H_sun": 26.59, + "T2m": 23.97, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200518:1710", + "P": 1167.66, + "G(i)": 259.83, + "H_sun": 16.07, + "T2m": 23.55, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200518:1810", + "P": 212.52, + "G(i)": 67.97, + "H_sun": 5.93, + "T2m": 23.13, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200518:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.26, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200518:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200518:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200518:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200518:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200519:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200519:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200519:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.17, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200519:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200519:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200519:0510", + "P": 67.2, + "G(i)": 25.05, + "H_sun": 11.47, + "T2m": 13.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200519:0610", + "P": 477.12, + "G(i)": 110.12, + "H_sun": 21.85, + "T2m": 15.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200519:0710", + "P": 513.3, + "G(i)": 117.63, + "H_sun": 32.44, + "T2m": 16.84, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200519:0810", + "P": 584.88, + "G(i)": 132.33, + "H_sun": 42.87, + "T2m": 18.54, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200519:0910", + "P": 1738.44, + "G(i)": 360.83, + "H_sun": 52.59, + "T2m": 20.21, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200519:1010", + "P": 2323.98, + "G(i)": 484.23, + "H_sun": 60.5, + "T2m": 21.83, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200519:1110", + "P": 2903.64, + "G(i)": 618.1, + "H_sun": 64.61, + "T2m": 23.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200519:1210", + "P": 3046.92, + "G(i)": 658.91, + "H_sun": 63.02, + "T2m": 23.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200519:1310", + "P": 1893.78, + "G(i)": 399.24, + "H_sun": 56.57, + "T2m": 22.88, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200519:1410", + "P": 623.88, + "G(i)": 143.12, + "H_sun": 47.5, + "T2m": 22.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200519:1510", + "P": 216.54, + "G(i)": 59.8, + "H_sun": 37.31, + "T2m": 23.15, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200519:1610", + "P": 1089.6, + "G(i)": 236.79, + "H_sun": 26.74, + "T2m": 22.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200519:1710", + "P": 212.7, + "G(i)": 58.81, + "H_sun": 16.23, + "T2m": 22.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200519:1810", + "P": 0.0, + "G(i)": 4.9, + "H_sun": 6.09, + "T2m": 21.17, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200519:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.65, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200519:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.34, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200519:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.23, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200519:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.21, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200519:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200520:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.78, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200520:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.4, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200520:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200520:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200520:0510", + "P": 285.96, + "G(i)": 71.31, + "H_sun": 11.61, + "T2m": 12.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200520:0610", + "P": 636.36, + "G(i)": 175.57, + "H_sun": 21.98, + "T2m": 15.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200520:0710", + "P": 1700.16, + "G(i)": 364.71, + "H_sun": 32.57, + "T2m": 18.25, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:0810", + "P": 2239.14, + "G(i)": 469.6, + "H_sun": 43.01, + "T2m": 20.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:0910", + "P": 3603.6, + "G(i)": 772.26, + "H_sun": 52.74, + "T2m": 22.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:1010", + "P": 4181.52, + "G(i)": 921.54, + "H_sun": 60.68, + "T2m": 23.95, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:1110", + "P": 4544.22, + "G(i)": 1023.66, + "H_sun": 64.82, + "T2m": 25.07, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200520:1210", + "P": 4606.32, + "G(i)": 1050.41, + "H_sun": 63.23, + "T2m": 25.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:1310", + "P": 4420.92, + "G(i)": 1002.06, + "H_sun": 56.75, + "T2m": 26.24, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200520:1410", + "P": 4056.9, + "G(i)": 895.1, + "H_sun": 47.66, + "T2m": 26.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200520:1510", + "P": 3358.32, + "G(i)": 726.46, + "H_sun": 37.46, + "T2m": 26.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200520:1610", + "P": 2443.5, + "G(i)": 523.32, + "H_sun": 26.89, + "T2m": 26.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200520:1710", + "P": 1344.42, + "G(i)": 301.63, + "H_sun": 16.38, + "T2m": 25.42, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200520:1810", + "P": 279.66, + "G(i)": 87.65, + "H_sun": 6.25, + "T2m": 24.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200520:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200520:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200520:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.11, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200520:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.73, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200520:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.93, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200521:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.77, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200521:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.33, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200521:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.06, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200521:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.73, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200521:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.46, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200521:0510", + "P": 272.58, + "G(i)": 69.38, + "H_sun": 11.74, + "T2m": 15.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200521:0610", + "P": 806.7, + "G(i)": 184.7, + "H_sun": 22.11, + "T2m": 17.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200521:0710", + "P": 1584.48, + "G(i)": 336.72, + "H_sun": 32.7, + "T2m": 19.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200521:0810", + "P": 2714.82, + "G(i)": 569.03, + "H_sun": 43.14, + "T2m": 20.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200521:0910", + "P": 3494.76, + "G(i)": 753.64, + "H_sun": 52.89, + "T2m": 21.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1010", + "P": 4058.4, + "G(i)": 902.74, + "H_sun": 60.86, + "T2m": 23.14, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200521:1110", + "P": 4435.2, + "G(i)": 1000.63, + "H_sun": 65.02, + "T2m": 24.14, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200521:1210", + "P": 4516.68, + "G(i)": 1020.53, + "H_sun": 63.42, + "T2m": 24.77, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200521:1310", + "P": 4355.46, + "G(i)": 984.07, + "H_sun": 56.92, + "T2m": 25.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200521:1410", + "P": 3918.12, + "G(i)": 872.91, + "H_sun": 47.82, + "T2m": 25.92, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200521:1510", + "P": 3282.66, + "G(i)": 717.32, + "H_sun": 37.61, + "T2m": 25.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1610", + "P": 2373.3, + "G(i)": 509.84, + "H_sun": 27.04, + "T2m": 25.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200521:1710", + "P": 1307.4, + "G(i)": 293.9, + "H_sun": 16.53, + "T2m": 25.69, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1810", + "P": 268.62, + "G(i)": 83.77, + "H_sun": 6.41, + "T2m": 24.81, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200521:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200521:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200521:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200521:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200521:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200522:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.21, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200522:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200522:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200522:0510", + "P": 324.48, + "G(i)": 79.98, + "H_sun": 11.87, + "T2m": 15.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200522:0610", + "P": 780.84, + "G(i)": 176.2, + "H_sun": 22.23, + "T2m": 17.93, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200522:0710", + "P": 1591.32, + "G(i)": 341.16, + "H_sun": 32.82, + "T2m": 20.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200522:0810", + "P": 2501.58, + "G(i)": 528.95, + "H_sun": 43.27, + "T2m": 21.77, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200522:0910", + "P": 3360.3, + "G(i)": 722.77, + "H_sun": 53.03, + "T2m": 23.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200522:1010", + "P": 3709.38, + "G(i)": 808.5, + "H_sun": 61.03, + "T2m": 24.45, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:1110", + "P": 3945.3, + "G(i)": 869.26, + "H_sun": 65.22, + "T2m": 25.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200522:1210", + "P": 3936.84, + "G(i)": 865.7, + "H_sun": 63.62, + "T2m": 26.2, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200522:1310", + "P": 3084.78, + "G(i)": 665.94, + "H_sun": 57.09, + "T2m": 26.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200522:1410", + "P": 3348.9, + "G(i)": 724.44, + "H_sun": 47.97, + "T2m": 26.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200522:1510", + "P": 3181.98, + "G(i)": 682.75, + "H_sun": 37.75, + "T2m": 26.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200522:1610", + "P": 2284.98, + "G(i)": 487.18, + "H_sun": 27.18, + "T2m": 25.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:1710", + "P": 1366.86, + "G(i)": 304.53, + "H_sun": 16.67, + "T2m": 24.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200522:1810", + "P": 291.24, + "G(i)": 89.17, + "H_sun": 6.56, + "T2m": 23.79, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200522:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.78, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200522:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200522:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200522:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200522:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200523:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200523:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200523:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200523:0510", + "P": 299.58, + "G(i)": 75.16, + "H_sun": 11.99, + "T2m": 16.35, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200523:0610", + "P": 624.48, + "G(i)": 141.4, + "H_sun": 22.35, + "T2m": 18.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200523:0710", + "P": 1242.9, + "G(i)": 264.62, + "H_sun": 32.93, + "T2m": 19.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200523:0810", + "P": 1884.54, + "G(i)": 395.03, + "H_sun": 43.39, + "T2m": 21.03, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200523:0910", + "P": 3344.22, + "G(i)": 708.53, + "H_sun": 53.17, + "T2m": 22.39, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200523:1010", + "P": 3663.72, + "G(i)": 786.42, + "H_sun": 61.19, + "T2m": 23.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200523:1110", + "P": 4088.46, + "G(i)": 894.77, + "H_sun": 65.41, + "T2m": 24.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:1210", + "P": 2755.14, + "G(i)": 585.75, + "H_sun": 63.81, + "T2m": 25.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200523:1310", + "P": 3771.36, + "G(i)": 804.83, + "H_sun": 57.26, + "T2m": 25.01, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200523:1410", + "P": 2251.02, + "G(i)": 475.48, + "H_sun": 48.12, + "T2m": 24.43, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200523:1510", + "P": 979.56, + "G(i)": 214.68, + "H_sun": 37.9, + "T2m": 23.87, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200523:1610", + "P": 909.36, + "G(i)": 199.71, + "H_sun": 27.32, + "T2m": 23.22, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200523:1710", + "P": 42.9, + "G(i)": 19.6, + "H_sun": 16.82, + "T2m": 22.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200523:1810", + "P": 95.22, + "G(i)": 33.01, + "H_sun": 6.72, + "T2m": 22.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200523:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200523:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200523:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200523:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200523:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200524:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200524:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.05, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200524:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200524:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.14, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200524:0410", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 2.31, + "T2m": 14.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200524:0510", + "P": 316.32, + "G(i)": 78.05, + "H_sun": 12.11, + "T2m": 14.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200524:0610", + "P": 710.76, + "G(i)": 187.06, + "H_sun": 22.46, + "T2m": 16.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200524:0710", + "P": 1828.26, + "G(i)": 392.34, + "H_sun": 33.04, + "T2m": 18.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200524:0810", + "P": 2868.42, + "G(i)": 592.13, + "H_sun": 43.5, + "T2m": 19.59, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200524:0910", + "P": 3710.76, + "G(i)": 775.0, + "H_sun": 53.3, + "T2m": 20.77, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200524:1010", + "P": 4333.38, + "G(i)": 927.49, + "H_sun": 61.35, + "T2m": 21.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200524:1110", + "P": 4633.32, + "G(i)": 1011.13, + "H_sun": 65.59, + "T2m": 22.71, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200524:1210", + "P": 4516.38, + "G(i)": 986.0, + "H_sun": 63.99, + "T2m": 23.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200524:1310", + "P": 4393.62, + "G(i)": 956.37, + "H_sun": 57.43, + "T2m": 23.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200524:1410", + "P": 4011.9, + "G(i)": 865.15, + "H_sun": 48.27, + "T2m": 23.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200524:1510", + "P": 3158.34, + "G(i)": 669.3, + "H_sun": 38.04, + "T2m": 23.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200524:1610", + "P": 2469.66, + "G(i)": 521.57, + "H_sun": 27.46, + "T2m": 23.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200524:1710", + "P": 1377.48, + "G(i)": 304.42, + "H_sun": 16.96, + "T2m": 23.11, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200524:1810", + "P": 267.84, + "G(i)": 79.74, + "H_sun": 6.86, + "T2m": 22.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200524:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200524:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200524:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200524:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200524:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200525:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200525:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.08, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200525:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.69, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200525:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.1, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200525:0410", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 2.43, + "T2m": 12.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200525:0510", + "P": 275.1, + "G(i)": 69.38, + "H_sun": 12.22, + "T2m": 13.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200525:0610", + "P": 705.9, + "G(i)": 185.15, + "H_sun": 22.56, + "T2m": 15.58, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200525:0710", + "P": 1799.34, + "G(i)": 384.98, + "H_sun": 33.14, + "T2m": 17.55, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200525:0810", + "P": 2849.94, + "G(i)": 591.06, + "H_sun": 43.61, + "T2m": 18.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200525:0910", + "P": 3656.76, + "G(i)": 771.55, + "H_sun": 53.42, + "T2m": 19.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200525:1010", + "P": 4225.2, + "G(i)": 914.59, + "H_sun": 61.5, + "T2m": 21.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200525:1110", + "P": 4528.56, + "G(i)": 1014.05, + "H_sun": 65.77, + "T2m": 22.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200525:1210", + "P": 4521.72, + "G(i)": 1015.62, + "H_sun": 64.17, + "T2m": 23.32, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200525:1310", + "P": 4510.38, + "G(i)": 1004.97, + "H_sun": 57.59, + "T2m": 24.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200525:1410", + "P": 4005.06, + "G(i)": 882.72, + "H_sun": 48.42, + "T2m": 24.44, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200525:1510", + "P": 3327.72, + "G(i)": 723.12, + "H_sun": 38.17, + "T2m": 24.7, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200525:1610", + "P": 2445.3, + "G(i)": 520.82, + "H_sun": 27.59, + "T2m": 24.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200525:1710", + "P": 1361.7, + "G(i)": 301.07, + "H_sun": 17.1, + "T2m": 24.24, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200525:1810", + "P": 307.92, + "G(i)": 91.8, + "H_sun": 7.01, + "T2m": 23.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200525:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.41, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200525:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.14, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200525:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200525:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200525:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200526:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200526:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.38, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200526:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.35, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200526:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.4, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200526:0410", + "P": 0.0, + "G(i)": 4.82, + "H_sun": 2.55, + "T2m": 15.06, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200526:0510", + "P": 349.92, + "G(i)": 84.8, + "H_sun": 12.32, + "T2m": 15.32, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200526:0610", + "P": 751.02, + "G(i)": 189.19, + "H_sun": 22.66, + "T2m": 17.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200526:0710", + "P": 1732.32, + "G(i)": 368.15, + "H_sun": 33.24, + "T2m": 18.86, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200526:0810", + "P": 2846.1, + "G(i)": 586.16, + "H_sun": 43.71, + "T2m": 19.85, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200526:0910", + "P": 3661.44, + "G(i)": 763.29, + "H_sun": 53.54, + "T2m": 20.74, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200526:1010", + "P": 4262.88, + "G(i)": 908.87, + "H_sun": 61.64, + "T2m": 21.71, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200526:1110", + "P": 4427.64, + "G(i)": 962.31, + "H_sun": 65.94, + "T2m": 22.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200526:1210", + "P": 4497.36, + "G(i)": 1002.61, + "H_sun": 64.35, + "T2m": 23.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200526:1310", + "P": 4024.5, + "G(i)": 901.05, + "H_sun": 57.74, + "T2m": 23.9, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200526:1410", + "P": 3382.62, + "G(i)": 734.3, + "H_sun": 48.56, + "T2m": 24.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200526:1510", + "P": 2471.88, + "G(i)": 525.93, + "H_sun": 38.31, + "T2m": 24.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200526:1610", + "P": 2131.14, + "G(i)": 451.79, + "H_sun": 27.73, + "T2m": 24.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200526:1710", + "P": 1387.44, + "G(i)": 307.67, + "H_sun": 17.23, + "T2m": 23.97, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200526:1810", + "P": 328.32, + "G(i)": 97.56, + "H_sun": 7.15, + "T2m": 23.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200526:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.28, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200526:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.49, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200526:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.35, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200526:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.53, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200526:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.86, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200527:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.33, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200527:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.92, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200527:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.51, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200527:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.95, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200527:0410", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 2.66, + "T2m": 14.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200527:0510", + "P": 225.84, + "G(i)": 59.74, + "H_sun": 12.42, + "T2m": 15.01, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200527:0610", + "P": 764.82, + "G(i)": 169.32, + "H_sun": 22.75, + "T2m": 16.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200527:0710", + "P": 1796.76, + "G(i)": 380.65, + "H_sun": 33.33, + "T2m": 16.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200527:0810", + "P": 2855.1, + "G(i)": 583.09, + "H_sun": 43.81, + "T2m": 17.46, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200527:0910", + "P": 3669.96, + "G(i)": 759.36, + "H_sun": 53.65, + "T2m": 17.91, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200527:1010", + "P": 4282.62, + "G(i)": 908.14, + "H_sun": 61.78, + "T2m": 18.46, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200527:1110", + "P": 4583.4, + "G(i)": 995.83, + "H_sun": 66.11, + "T2m": 19.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200527:1210", + "P": 4184.1, + "G(i)": 910.83, + "H_sun": 64.52, + "T2m": 20.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200527:1310", + "P": 3891.78, + "G(i)": 845.18, + "H_sun": 57.89, + "T2m": 20.97, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200527:1410", + "P": 3638.52, + "G(i)": 786.18, + "H_sun": 48.7, + "T2m": 21.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200527:1510", + "P": 3372.6, + "G(i)": 723.39, + "H_sun": 38.44, + "T2m": 21.84, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200527:1610", + "P": 2516.46, + "G(i)": 533.61, + "H_sun": 27.86, + "T2m": 22.01, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200527:1710", + "P": 1387.26, + "G(i)": 304.12, + "H_sun": 17.37, + "T2m": 21.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200527:1810", + "P": 311.46, + "G(i)": 90.52, + "H_sun": 7.29, + "T2m": 21.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200527:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.6, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200527:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.14, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200527:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200527:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.54, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200527:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.95, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200528:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.39, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.69, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200528:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.0, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0410", + "P": 4.8, + "G(i)": 7.71, + "H_sun": 2.76, + "T2m": 14.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200528:0510", + "P": 311.7, + "G(i)": 77.09, + "H_sun": 12.52, + "T2m": 14.48, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200528:0610", + "P": 703.92, + "G(i)": 186.17, + "H_sun": 22.84, + "T2m": 16.36, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0710", + "P": 1771.14, + "G(i)": 382.65, + "H_sun": 33.42, + "T2m": 18.51, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200528:0810", + "P": 2770.02, + "G(i)": 585.62, + "H_sun": 43.9, + "T2m": 20.16, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200528:0910", + "P": 3542.7, + "G(i)": 760.33, + "H_sun": 53.75, + "T2m": 21.49, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200528:1010", + "P": 4120.14, + "G(i)": 904.42, + "H_sun": 61.91, + "T2m": 22.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200528:1110", + "P": 4513.38, + "G(i)": 991.8, + "H_sun": 66.27, + "T2m": 23.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200528:1210", + "P": 4526.46, + "G(i)": 1003.43, + "H_sun": 64.68, + "T2m": 24.05, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200528:1310", + "P": 4037.52, + "G(i)": 884.95, + "H_sun": 58.04, + "T2m": 24.49, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200528:1410", + "P": 3977.22, + "G(i)": 872.7, + "H_sun": 48.83, + "T2m": 24.72, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200528:1510", + "P": 3360.24, + "G(i)": 720.94, + "H_sun": 38.57, + "T2m": 24.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200528:1610", + "P": 2472.3, + "G(i)": 520.03, + "H_sun": 27.98, + "T2m": 24.16, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200528:1710", + "P": 1188.96, + "G(i)": 260.54, + "H_sun": 17.5, + "T2m": 23.35, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200528:1810", + "P": 194.22, + "G(i)": 57.77, + "H_sun": 7.43, + "T2m": 22.1, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200528:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.38, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200528:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.01, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200528:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.83, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200528:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200528:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.02, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200529:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200529:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.9, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200529:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200529:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.26, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200529:0410", + "P": 2.4, + "G(i)": 6.75, + "H_sun": 2.86, + "T2m": 14.15, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200529:0510", + "P": 59.28, + "G(i)": 23.13, + "H_sun": 12.61, + "T2m": 14.07, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200529:0610", + "P": 492.48, + "G(i)": 112.1, + "H_sun": 22.92, + "T2m": 14.12, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200529:0710", + "P": 660.24, + "G(i)": 144.1, + "H_sun": 33.5, + "T2m": 14.2, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200529:0810", + "P": 1359.6, + "G(i)": 277.87, + "H_sun": 43.99, + "T2m": 14.65, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200529:0910", + "P": 1557.0, + "G(i)": 316.29, + "H_sun": 53.85, + "T2m": 15.01, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200529:1010", + "P": 1210.08, + "G(i)": 250.94, + "H_sun": 62.03, + "T2m": 16.12, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200529:1110", + "P": 2732.16, + "G(i)": 555.33, + "H_sun": 66.42, + "T2m": 17.16, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200529:1210", + "P": 1132.5, + "G(i)": 238.2, + "H_sun": 64.84, + "T2m": 17.77, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200529:1310", + "P": 4011.36, + "G(i)": 839.79, + "H_sun": 58.19, + "T2m": 18.86, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200529:1410", + "P": 4027.74, + "G(i)": 843.69, + "H_sun": 48.96, + "T2m": 19.33, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200529:1510", + "P": 2802.9, + "G(i)": 575.67, + "H_sun": 38.69, + "T2m": 19.63, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200529:1610", + "P": 1830.9, + "G(i)": 377.05, + "H_sun": 28.11, + "T2m": 19.48, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200529:1710", + "P": 1058.7, + "G(i)": 228.62, + "H_sun": 17.62, + "T2m": 19.03, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200529:1810", + "P": 360.24, + "G(i)": 101.95, + "H_sun": 7.56, + "T2m": 18.32, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200529:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.63, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200529:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200529:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200529:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200529:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.32, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200530:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.1, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200530:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.85, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200530:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200530:0410", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 2.95, + "T2m": 13.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:0510", + "P": 366.12, + "G(i)": 87.69, + "H_sun": 12.69, + "T2m": 13.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200530:0610", + "P": 847.8, + "G(i)": 197.59, + "H_sun": 23.0, + "T2m": 15.09, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200530:0710", + "P": 1773.84, + "G(i)": 375.68, + "H_sun": 33.57, + "T2m": 16.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200530:0810", + "P": 2876.34, + "G(i)": 594.0, + "H_sun": 44.07, + "T2m": 17.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200530:0910", + "P": 3649.98, + "G(i)": 766.58, + "H_sun": 53.94, + "T2m": 18.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200530:1010", + "P": 4205.4, + "G(i)": 912.03, + "H_sun": 62.15, + "T2m": 19.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200530:1110", + "P": 4623.78, + "G(i)": 1022.58, + "H_sun": 66.57, + "T2m": 20.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:1210", + "P": 4685.82, + "G(i)": 1049.5, + "H_sun": 64.99, + "T2m": 21.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200530:1310", + "P": 4518.12, + "G(i)": 1002.9, + "H_sun": 58.33, + "T2m": 22.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200530:1410", + "P": 4128.66, + "G(i)": 904.64, + "H_sun": 49.09, + "T2m": 22.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200530:1510", + "P": 3400.8, + "G(i)": 725.84, + "H_sun": 38.81, + "T2m": 22.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200530:1610", + "P": 2487.96, + "G(i)": 525.42, + "H_sun": 28.23, + "T2m": 22.51, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200530:1710", + "P": 1469.82, + "G(i)": 321.04, + "H_sun": 17.75, + "T2m": 22.14, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200530:1810", + "P": 382.92, + "G(i)": 109.52, + "H_sun": 7.69, + "T2m": 20.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200530:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200530:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200530:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200530:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200530:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.4, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200531:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200531:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200531:0410", + "P": 0.24, + "G(i)": 5.78, + "H_sun": 3.04, + "T2m": 11.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200531:0510", + "P": 257.7, + "G(i)": 65.53, + "H_sun": 12.76, + "T2m": 12.28, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200531:0610", + "P": 588.0, + "G(i)": 131.38, + "H_sun": 23.07, + "T2m": 14.71, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200531:0710", + "P": 911.1, + "G(i)": 194.05, + "H_sun": 33.64, + "T2m": 15.74, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200531:0810", + "P": 2008.08, + "G(i)": 412.03, + "H_sun": 44.14, + "T2m": 16.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200531:0910", + "P": 2589.42, + "G(i)": 535.28, + "H_sun": 54.03, + "T2m": 17.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200531:1010", + "P": 2724.42, + "G(i)": 570.28, + "H_sun": 62.26, + "T2m": 18.36, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:1110", + "P": 2469.96, + "G(i)": 519.02, + "H_sun": 66.71, + "T2m": 19.34, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200531:1210", + "P": 4435.68, + "G(i)": 987.34, + "H_sun": 65.14, + "T2m": 20.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200531:1310", + "P": 3646.32, + "G(i)": 788.75, + "H_sun": 58.46, + "T2m": 21.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:1410", + "P": 3891.54, + "G(i)": 847.07, + "H_sun": 49.21, + "T2m": 22.2, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:1510", + "P": 3370.56, + "G(i)": 720.87, + "H_sun": 38.93, + "T2m": 22.64, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200531:1610", + "P": 2510.52, + "G(i)": 529.49, + "H_sun": 28.35, + "T2m": 22.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200531:1710", + "P": 1413.96, + "G(i)": 309.77, + "H_sun": 17.87, + "T2m": 22.33, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:1810", + "P": 354.9, + "G(i)": 101.4, + "H_sun": 7.81, + "T2m": 21.62, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200531:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200531:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200531:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200531:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200531:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200601:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200601:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200601:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200601:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.03, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200601:0410", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 3.12, + "T2m": 14.65, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200601:0510", + "P": 331.02, + "G(i)": 80.94, + "H_sun": 12.84, + "T2m": 14.56, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200601:0610", + "P": 832.56, + "G(i)": 185.26, + "H_sun": 23.13, + "T2m": 15.92, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200601:0710", + "P": 1137.12, + "G(i)": 241.31, + "H_sun": 33.71, + "T2m": 18.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200601:0810", + "P": 1933.44, + "G(i)": 402.13, + "H_sun": 44.21, + "T2m": 19.22, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200601:0910", + "P": 3527.76, + "G(i)": 750.6, + "H_sun": 54.11, + "T2m": 20.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200601:1010", + "P": 3978.3, + "G(i)": 878.14, + "H_sun": 62.37, + "T2m": 21.83, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200601:1110", + "P": 4387.8, + "G(i)": 983.27, + "H_sun": 66.84, + "T2m": 22.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200601:1210", + "P": 4409.04, + "G(i)": 990.35, + "H_sun": 65.28, + "T2m": 23.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200601:1310", + "P": 4345.14, + "G(i)": 975.09, + "H_sun": 58.59, + "T2m": 24.24, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200601:1410", + "P": 3934.92, + "G(i)": 868.13, + "H_sun": 49.33, + "T2m": 24.69, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200601:1510", + "P": 3351.72, + "G(i)": 718.59, + "H_sun": 39.05, + "T2m": 24.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200601:1610", + "P": 2509.2, + "G(i)": 531.54, + "H_sun": 28.46, + "T2m": 24.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200601:1710", + "P": 1186.62, + "G(i)": 262.04, + "H_sun": 17.99, + "T2m": 24.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200601:1810", + "P": 403.44, + "G(i)": 115.41, + "H_sun": 7.94, + "T2m": 22.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200601:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200601:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200601:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200601:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200601:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200602:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200602:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200602:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200602:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200602:0410", + "P": 7.32, + "G(i)": 8.67, + "H_sun": 3.19, + "T2m": 15.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200602:0510", + "P": 291.0, + "G(i)": 73.23, + "H_sun": 12.9, + "T2m": 15.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200602:0610", + "P": 713.4, + "G(i)": 189.48, + "H_sun": 23.2, + "T2m": 17.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200602:0710", + "P": 1795.2, + "G(i)": 388.81, + "H_sun": 33.77, + "T2m": 19.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200602:0810", + "P": 2793.24, + "G(i)": 593.89, + "H_sun": 44.27, + "T2m": 21.91, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200602:0910", + "P": 3583.44, + "G(i)": 775.06, + "H_sun": 54.19, + "T2m": 23.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200602:1010", + "P": 4160.52, + "G(i)": 917.9, + "H_sun": 62.47, + "T2m": 24.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200602:1110", + "P": 4576.02, + "G(i)": 1023.53, + "H_sun": 66.97, + "T2m": 25.87, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200602:1210", + "P": 4691.16, + "G(i)": 1050.55, + "H_sun": 65.42, + "T2m": 26.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200602:1310", + "P": 4507.08, + "G(i)": 1005.22, + "H_sun": 58.72, + "T2m": 27.22, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200602:1410", + "P": 3904.02, + "G(i)": 856.86, + "H_sun": 49.45, + "T2m": 27.34, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200602:1510", + "P": 3450.42, + "G(i)": 744.13, + "H_sun": 39.16, + "T2m": 27.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200602:1610", + "P": 2491.44, + "G(i)": 526.33, + "H_sun": 28.58, + "T2m": 26.77, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200602:1710", + "P": 1534.2, + "G(i)": 336.95, + "H_sun": 18.1, + "T2m": 25.57, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200602:1810", + "P": 394.92, + "G(i)": 112.47, + "H_sun": 8.06, + "T2m": 23.91, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200602:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.15, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200602:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.64, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200602:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200602:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200602:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200603:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.73, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200603:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200603:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200603:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200603:0410", + "P": 12.9, + "G(i)": 10.6, + "H_sun": 3.26, + "T2m": 16.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200603:0510", + "P": 266.16, + "G(i)": 68.42, + "H_sun": 12.96, + "T2m": 16.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200603:0610", + "P": 693.54, + "G(i)": 187.55, + "H_sun": 23.25, + "T2m": 17.54, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200603:0710", + "P": 1793.16, + "G(i)": 387.02, + "H_sun": 33.82, + "T2m": 19.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200603:0810", + "P": 2796.66, + "G(i)": 588.56, + "H_sun": 44.33, + "T2m": 21.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200603:0910", + "P": 3511.44, + "G(i)": 751.51, + "H_sun": 54.25, + "T2m": 22.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200603:1010", + "P": 3349.14, + "G(i)": 717.47, + "H_sun": 62.56, + "T2m": 23.97, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200603:1110", + "P": 4140.96, + "G(i)": 894.2, + "H_sun": 67.09, + "T2m": 24.99, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200603:1210", + "P": 3700.62, + "G(i)": 789.89, + "H_sun": 65.55, + "T2m": 25.32, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200603:1310", + "P": 4110.12, + "G(i)": 879.84, + "H_sun": 58.84, + "T2m": 25.03, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200603:1410", + "P": 3913.38, + "G(i)": 834.64, + "H_sun": 49.57, + "T2m": 24.57, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200603:1510", + "P": 2691.9, + "G(i)": 562.43, + "H_sun": 39.27, + "T2m": 23.63, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200603:1610", + "P": 162.72, + "G(i)": 48.03, + "H_sun": 28.68, + "T2m": 23.09, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200603:1710", + "P": 65.7, + "G(i)": 25.49, + "H_sun": 18.21, + "T2m": 22.63, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200603:1810", + "P": 90.24, + "G(i)": 31.37, + "H_sun": 8.17, + "T2m": 21.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200603:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.82, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200603:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200603:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.32, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200603:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.11, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200603:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200604:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200604:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.5, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200604:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200604:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200604:0410", + "P": 0.12, + "G(i)": 5.78, + "H_sun": 3.33, + "T2m": 16.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200604:0510", + "P": 43.14, + "G(i)": 19.27, + "H_sun": 13.02, + "T2m": 16.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200604:0610", + "P": 131.52, + "G(i)": 40.19, + "H_sun": 23.3, + "T2m": 17.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200604:0710", + "P": 290.64, + "G(i)": 73.52, + "H_sun": 33.87, + "T2m": 17.36, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200604:0810", + "P": 1048.86, + "G(i)": 221.37, + "H_sun": 44.38, + "T2m": 17.46, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200604:0910", + "P": 783.06, + "G(i)": 170.56, + "H_sun": 54.32, + "T2m": 18.19, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200604:1010", + "P": 1075.26, + "G(i)": 227.42, + "H_sun": 62.64, + "T2m": 18.7, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200604:1110", + "P": 3220.02, + "G(i)": 657.12, + "H_sun": 67.21, + "T2m": 19.27, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200604:1210", + "P": 1059.48, + "G(i)": 224.48, + "H_sun": 65.67, + "T2m": 19.16, + "WS10m": 3.79, + "Int": 0.0 + }, + { + "time": "20200604:1310", + "P": 557.1, + "G(i)": 126.45, + "H_sun": 58.96, + "T2m": 18.16, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200604:1410", + "P": 457.5, + "G(i)": 106.85, + "H_sun": 49.68, + "T2m": 17.69, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200604:1510", + "P": 497.46, + "G(i)": 114.69, + "H_sun": 39.38, + "T2m": 17.47, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200604:1610", + "P": 1275.48, + "G(i)": 264.87, + "H_sun": 28.79, + "T2m": 17.38, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200604:1710", + "P": 1103.94, + "G(i)": 236.46, + "H_sun": 18.32, + "T2m": 17.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200604:1810", + "P": 200.04, + "G(i)": 56.98, + "H_sun": 8.28, + "T2m": 17.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200604:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200604:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.54, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200604:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200604:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200604:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.45, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200605:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200605:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.0, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200605:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200605:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200605:0410", + "P": 37.02, + "G(i)": 17.34, + "H_sun": 3.38, + "T2m": 11.88, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200605:0510", + "P": 369.42, + "G(i)": 87.69, + "H_sun": 13.07, + "T2m": 12.44, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200605:0610", + "P": 848.28, + "G(i)": 187.47, + "H_sun": 23.35, + "T2m": 15.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200605:0710", + "P": 1641.06, + "G(i)": 342.69, + "H_sun": 33.91, + "T2m": 16.91, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200605:0810", + "P": 2871.18, + "G(i)": 592.18, + "H_sun": 44.43, + "T2m": 18.66, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200605:0910", + "P": 3673.08, + "G(i)": 776.52, + "H_sun": 54.37, + "T2m": 20.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200605:1010", + "P": 4077.24, + "G(i)": 886.74, + "H_sun": 62.72, + "T2m": 22.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200605:1110", + "P": 4527.66, + "G(i)": 1010.83, + "H_sun": 67.31, + "T2m": 23.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200605:1210", + "P": 4668.66, + "G(i)": 1049.63, + "H_sun": 65.79, + "T2m": 24.16, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200605:1310", + "P": 4481.88, + "G(i)": 999.39, + "H_sun": 59.07, + "T2m": 25.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200605:1410", + "P": 4145.58, + "G(i)": 912.75, + "H_sun": 49.78, + "T2m": 25.41, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200605:1510", + "P": 3450.12, + "G(i)": 744.77, + "H_sun": 39.48, + "T2m": 25.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200605:1610", + "P": 2633.34, + "G(i)": 560.6, + "H_sun": 28.89, + "T2m": 25.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200605:1710", + "P": 1364.64, + "G(i)": 300.52, + "H_sun": 18.43, + "T2m": 25.28, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200605:1810", + "P": 430.44, + "G(i)": 121.28, + "H_sun": 8.39, + "T2m": 23.75, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200605:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.71, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200605:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.01, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200605:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.79, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200605:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200605:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.51, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200606:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200606:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200606:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200606:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200606:0410", + "P": 39.84, + "G(i)": 18.31, + "H_sun": 3.44, + "T2m": 15.37, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200606:0510", + "P": 244.02, + "G(i)": 63.6, + "H_sun": 13.11, + "T2m": 15.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200606:0610", + "P": 682.98, + "G(i)": 185.81, + "H_sun": 23.38, + "T2m": 16.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200606:0710", + "P": 1790.94, + "G(i)": 386.13, + "H_sun": 33.95, + "T2m": 18.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200606:0810", + "P": 2732.52, + "G(i)": 575.75, + "H_sun": 44.47, + "T2m": 20.58, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200606:0910", + "P": 3400.14, + "G(i)": 726.83, + "H_sun": 54.43, + "T2m": 22.1, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200606:1010", + "P": 3843.06, + "G(i)": 834.84, + "H_sun": 62.79, + "T2m": 23.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200606:1110", + "P": 3006.12, + "G(i)": 643.13, + "H_sun": 67.41, + "T2m": 24.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200606:1210", + "P": 3542.76, + "G(i)": 762.84, + "H_sun": 65.91, + "T2m": 24.77, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200606:1310", + "P": 4415.34, + "G(i)": 958.12, + "H_sun": 59.18, + "T2m": 25.03, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200606:1410", + "P": 3967.5, + "G(i)": 836.37, + "H_sun": 49.89, + "T2m": 24.17, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200606:1510", + "P": 3299.88, + "G(i)": 688.73, + "H_sun": 39.58, + "T2m": 23.78, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200606:1610", + "P": 2451.0, + "G(i)": 511.35, + "H_sun": 28.99, + "T2m": 23.57, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200606:1710", + "P": 1411.14, + "G(i)": 306.52, + "H_sun": 18.53, + "T2m": 23.0, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200606:1810", + "P": 414.66, + "G(i)": 115.24, + "H_sun": 8.49, + "T2m": 22.35, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200606:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200606:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200606:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.79, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200606:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.15, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200606:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200607:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.36, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200607:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200607:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200607:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200607:0410", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 3.48, + "T2m": 16.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200607:0510", + "P": 228.18, + "G(i)": 60.71, + "H_sun": 13.15, + "T2m": 16.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200607:0610", + "P": 131.64, + "G(i)": 40.19, + "H_sun": 23.42, + "T2m": 17.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200607:0710", + "P": 926.22, + "G(i)": 199.23, + "H_sun": 33.98, + "T2m": 18.41, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200607:0810", + "P": 374.52, + "G(i)": 91.16, + "H_sun": 44.5, + "T2m": 19.38, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200607:0910", + "P": 1357.68, + "G(i)": 286.07, + "H_sun": 54.47, + "T2m": 20.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200607:1010", + "P": 2262.3, + "G(i)": 472.55, + "H_sun": 62.86, + "T2m": 21.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200607:1110", + "P": 3030.9, + "G(i)": 636.44, + "H_sun": 67.51, + "T2m": 21.37, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200607:1210", + "P": 3418.56, + "G(i)": 721.02, + "H_sun": 66.01, + "T2m": 21.77, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200607:1310", + "P": 2669.1, + "G(i)": 559.21, + "H_sun": 59.29, + "T2m": 22.54, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200607:1410", + "P": 3771.84, + "G(i)": 798.33, + "H_sun": 49.98, + "T2m": 22.92, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200607:1510", + "P": 1546.56, + "G(i)": 324.72, + "H_sun": 39.68, + "T2m": 22.05, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200607:1610", + "P": 2020.2, + "G(i)": 422.3, + "H_sun": 29.09, + "T2m": 21.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200607:1710", + "P": 78.78, + "G(i)": 28.43, + "H_sun": 18.62, + "T2m": 20.08, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200607:1810", + "P": 7.56, + "G(i)": 8.82, + "H_sun": 8.59, + "T2m": 18.68, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200607:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.22, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200607:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.79, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200607:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200607:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200607:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.43, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200608:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.21, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200608:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200608:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200608:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:0410", + "P": 39.84, + "G(i)": 18.31, + "H_sun": 3.52, + "T2m": 15.31, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200608:0510", + "P": 66.72, + "G(i)": 25.05, + "H_sun": 13.19, + "T2m": 15.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200608:0610", + "P": 542.88, + "G(i)": 122.87, + "H_sun": 23.45, + "T2m": 15.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200608:0710", + "P": 438.78, + "G(i)": 102.93, + "H_sun": 34.01, + "T2m": 16.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200608:0810", + "P": 1364.52, + "G(i)": 285.11, + "H_sun": 44.53, + "T2m": 17.53, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200608:0910", + "P": 1462.02, + "G(i)": 304.52, + "H_sun": 54.51, + "T2m": 18.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1010", + "P": 3192.9, + "G(i)": 666.09, + "H_sun": 62.92, + "T2m": 18.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200608:1110", + "P": 2118.18, + "G(i)": 440.42, + "H_sun": 67.59, + "T2m": 19.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1210", + "P": 4016.28, + "G(i)": 855.72, + "H_sun": 66.12, + "T2m": 19.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1310", + "P": 560.04, + "G(i)": 128.41, + "H_sun": 59.39, + "T2m": 19.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200608:1410", + "P": 668.4, + "G(i)": 149.98, + "H_sun": 50.08, + "T2m": 20.03, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200608:1510", + "P": 192.36, + "G(i)": 53.91, + "H_sun": 39.77, + "T2m": 20.35, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200608:1610", + "P": 2576.7, + "G(i)": 534.63, + "H_sun": 29.18, + "T2m": 19.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200608:1710", + "P": 1136.34, + "G(i)": 246.32, + "H_sun": 18.72, + "T2m": 19.67, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200608:1810", + "P": 441.06, + "G(i)": 119.9, + "H_sun": 8.69, + "T2m": 18.94, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200608:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200608:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200608:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200608:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200608:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.98, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200609:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.31, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200609:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.27, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200609:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.32, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200609:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200609:0410", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 3.56, + "T2m": 13.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200609:0510", + "P": 381.36, + "G(i)": 90.58, + "H_sun": 13.21, + "T2m": 13.91, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200609:0610", + "P": 814.44, + "G(i)": 178.29, + "H_sun": 23.47, + "T2m": 14.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200609:0710", + "P": 1383.72, + "G(i)": 287.18, + "H_sun": 34.03, + "T2m": 14.84, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200609:0810", + "P": 2095.98, + "G(i)": 428.42, + "H_sun": 44.56, + "T2m": 15.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200609:0910", + "P": 3413.04, + "G(i)": 709.05, + "H_sun": 54.54, + "T2m": 16.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200609:1010", + "P": 4104.48, + "G(i)": 875.11, + "H_sun": 62.97, + "T2m": 17.35, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1110", + "P": 3311.16, + "G(i)": 697.47, + "H_sun": 67.67, + "T2m": 17.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1210", + "P": 3109.98, + "G(i)": 649.23, + "H_sun": 66.21, + "T2m": 18.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200609:1310", + "P": 1910.58, + "G(i)": 396.05, + "H_sun": 59.48, + "T2m": 19.05, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200609:1410", + "P": 354.36, + "G(i)": 87.24, + "H_sun": 50.17, + "T2m": 19.62, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200609:1510", + "P": 456.42, + "G(i)": 107.83, + "H_sun": 39.86, + "T2m": 19.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200609:1610", + "P": 936.54, + "G(i)": 202.49, + "H_sun": 29.27, + "T2m": 19.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1710", + "P": 758.94, + "G(i)": 166.73, + "H_sun": 18.81, + "T2m": 17.44, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200609:1810", + "P": 486.6, + "G(i)": 131.06, + "H_sun": 8.78, + "T2m": 16.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200609:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.73, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200609:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200609:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.58, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200609:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.04, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200609:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200610:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200610:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200610:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200610:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200610:0410", + "P": 5.04, + "G(i)": 7.71, + "H_sun": 3.59, + "T2m": 10.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200610:0510", + "P": 380.52, + "G(i)": 89.62, + "H_sun": 13.24, + "T2m": 11.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:0610", + "P": 734.7, + "G(i)": 190.87, + "H_sun": 23.49, + "T2m": 13.71, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200610:0710", + "P": 1827.84, + "G(i)": 389.32, + "H_sun": 34.05, + "T2m": 15.93, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:0810", + "P": 2821.68, + "G(i)": 585.73, + "H_sun": 44.58, + "T2m": 17.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:0910", + "P": 3599.82, + "G(i)": 761.5, + "H_sun": 54.57, + "T2m": 19.11, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:1010", + "P": 3972.6, + "G(i)": 858.05, + "H_sun": 63.02, + "T2m": 20.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:1110", + "P": 4149.66, + "G(i)": 915.2, + "H_sun": 67.75, + "T2m": 21.06, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200610:1210", + "P": 2176.02, + "G(i)": 461.41, + "H_sun": 66.3, + "T2m": 21.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200610:1310", + "P": 522.66, + "G(i)": 122.53, + "H_sun": 59.57, + "T2m": 22.37, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:1410", + "P": 254.94, + "G(i)": 67.64, + "H_sun": 50.26, + "T2m": 22.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200610:1510", + "P": 1622.04, + "G(i)": 339.96, + "H_sun": 39.94, + "T2m": 21.62, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200610:1610", + "P": 2431.14, + "G(i)": 502.48, + "H_sun": 29.35, + "T2m": 20.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200610:1710", + "P": 863.58, + "G(i)": 189.76, + "H_sun": 18.89, + "T2m": 19.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200610:1810", + "P": 196.2, + "G(i)": 55.76, + "H_sun": 8.87, + "T2m": 19.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200610:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.88, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200610:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200610:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200610:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.72, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200611:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200611:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200611:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200611:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200611:0410", + "P": 26.28, + "G(i)": 14.45, + "H_sun": 3.61, + "T2m": 12.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200611:0510", + "P": 382.2, + "G(i)": 90.58, + "H_sun": 13.25, + "T2m": 13.31, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200611:0610", + "P": 869.7, + "G(i)": 197.96, + "H_sun": 23.5, + "T2m": 14.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200611:0710", + "P": 1639.62, + "G(i)": 341.11, + "H_sun": 34.06, + "T2m": 15.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200611:0810", + "P": 1168.86, + "G(i)": 244.54, + "H_sun": 44.59, + "T2m": 16.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200611:0910", + "P": 2724.66, + "G(i)": 559.13, + "H_sun": 54.59, + "T2m": 17.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200611:1010", + "P": 2524.2, + "G(i)": 523.56, + "H_sun": 63.05, + "T2m": 18.69, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200611:1110", + "P": 1594.5, + "G(i)": 334.64, + "H_sun": 67.81, + "T2m": 19.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200611:1210", + "P": 1741.38, + "G(i)": 366.21, + "H_sun": 66.39, + "T2m": 19.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200611:1310", + "P": 1539.3, + "G(i)": 322.74, + "H_sun": 59.66, + "T2m": 19.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200611:1410", + "P": 2582.4, + "G(i)": 537.85, + "H_sun": 50.34, + "T2m": 19.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200611:1510", + "P": 1514.94, + "G(i)": 318.07, + "H_sun": 40.02, + "T2m": 20.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200611:1610", + "P": 715.44, + "G(i)": 159.46, + "H_sun": 29.44, + "T2m": 19.65, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200611:1710", + "P": 537.72, + "G(i)": 123.9, + "H_sun": 18.98, + "T2m": 19.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200611:1810", + "P": 370.44, + "G(i)": 98.9, + "H_sun": 8.95, + "T2m": 18.52, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200611:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200611:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.9, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200611:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200611:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.64, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200611:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.2, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200612:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.81, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200612:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0410", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 3.63, + "T2m": 14.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200612:0510", + "P": 87.36, + "G(i)": 29.87, + "H_sun": 13.27, + "T2m": 14.66, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200612:0610", + "P": 523.98, + "G(i)": 118.96, + "H_sun": 23.51, + "T2m": 15.19, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200612:0710", + "P": 982.38, + "G(i)": 207.67, + "H_sun": 34.07, + "T2m": 15.79, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:0810", + "P": 1758.66, + "G(i)": 360.24, + "H_sun": 44.6, + "T2m": 16.84, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200612:0910", + "P": 2625.54, + "G(i)": 536.26, + "H_sun": 54.61, + "T2m": 17.58, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200612:1010", + "P": 2230.92, + "G(i)": 459.33, + "H_sun": 63.09, + "T2m": 18.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:1110", + "P": 2521.38, + "G(i)": 520.4, + "H_sun": 67.87, + "T2m": 18.94, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:1210", + "P": 354.9, + "G(i)": 87.24, + "H_sun": 66.46, + "T2m": 19.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200612:1310", + "P": 427.98, + "G(i)": 101.95, + "H_sun": 59.74, + "T2m": 19.53, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200612:1410", + "P": 348.48, + "G(i)": 86.26, + "H_sun": 50.42, + "T2m": 20.34, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200612:1510", + "P": 1572.12, + "G(i)": 328.44, + "H_sun": 40.1, + "T2m": 20.55, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200612:1610", + "P": 1142.88, + "G(i)": 243.49, + "H_sun": 29.51, + "T2m": 20.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200612:1710", + "P": 994.62, + "G(i)": 216.27, + "H_sun": 19.05, + "T2m": 19.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200612:1810", + "P": 412.86, + "G(i)": 110.27, + "H_sun": 9.03, + "T2m": 19.35, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200612:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200612:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200612:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.45, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200612:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.82, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200612:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200613:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200613:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200613:0410", + "P": 0.0, + "G(i)": 4.82, + "H_sun": 3.65, + "T2m": 14.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200613:0510", + "P": 359.4, + "G(i)": 86.72, + "H_sun": 13.28, + "T2m": 15.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0610", + "P": 694.92, + "G(i)": 154.11, + "H_sun": 23.52, + "T2m": 16.3, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0710", + "P": 950.88, + "G(i)": 203.75, + "H_sun": 34.07, + "T2m": 17.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200613:0810", + "P": 1324.44, + "G(i)": 278.4, + "H_sun": 44.61, + "T2m": 18.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200613:0910", + "P": 1576.26, + "G(i)": 330.61, + "H_sun": 54.62, + "T2m": 18.94, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200613:1010", + "P": 1130.7, + "G(i)": 242.12, + "H_sun": 63.12, + "T2m": 19.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200613:1110", + "P": 786.54, + "G(i)": 173.5, + "H_sun": 67.92, + "T2m": 19.56, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200613:1210", + "P": 455.04, + "G(i)": 107.83, + "H_sun": 66.53, + "T2m": 20.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200613:1310", + "P": 324.54, + "G(i)": 81.36, + "H_sun": 59.81, + "T2m": 19.86, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200613:1410", + "P": 271.98, + "G(i)": 70.58, + "H_sun": 50.49, + "T2m": 19.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200613:1510", + "P": 230.04, + "G(i)": 61.76, + "H_sun": 40.18, + "T2m": 19.44, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200613:1610", + "P": 189.18, + "G(i)": 52.93, + "H_sun": 29.59, + "T2m": 18.6, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200613:1710", + "P": 714.78, + "G(i)": 158.95, + "H_sun": 19.13, + "T2m": 18.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200613:1810", + "P": 187.74, + "G(i)": 53.28, + "H_sun": 9.11, + "T2m": 17.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200613:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.57, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200613:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200613:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.24, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200613:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.91, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200613:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200614:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.14, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200614:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.65, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200614:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200614:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.53, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200614:0410", + "P": 29.64, + "G(i)": 15.42, + "H_sun": 3.65, + "T2m": 13.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200614:0510", + "P": 309.6, + "G(i)": 76.13, + "H_sun": 13.28, + "T2m": 12.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200614:0610", + "P": 689.22, + "G(i)": 186.29, + "H_sun": 23.52, + "T2m": 14.87, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200614:0710", + "P": 1810.2, + "G(i)": 386.17, + "H_sun": 34.07, + "T2m": 17.68, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200614:0810", + "P": 2845.08, + "G(i)": 589.1, + "H_sun": 44.6, + "T2m": 19.79, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200614:0910", + "P": 3655.2, + "G(i)": 775.98, + "H_sun": 54.63, + "T2m": 22.25, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200614:1010", + "P": 4204.92, + "G(i)": 921.42, + "H_sun": 63.14, + "T2m": 24.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200614:1110", + "P": 4532.4, + "G(i)": 1012.62, + "H_sun": 67.97, + "T2m": 25.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200614:1210", + "P": 4665.6, + "G(i)": 1053.71, + "H_sun": 66.6, + "T2m": 26.62, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200614:1310", + "P": 4420.62, + "G(i)": 1000.1, + "H_sun": 59.88, + "T2m": 27.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200614:1410", + "P": 4111.44, + "G(i)": 922.13, + "H_sun": 50.56, + "T2m": 27.62, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200614:1510", + "P": 3428.82, + "G(i)": 751.81, + "H_sun": 40.25, + "T2m": 27.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200614:1610", + "P": 2592.9, + "G(i)": 560.2, + "H_sun": 29.66, + "T2m": 27.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200614:1710", + "P": 1554.42, + "G(i)": 345.84, + "H_sun": 19.2, + "T2m": 27.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200614:1810", + "P": 461.46, + "G(i)": 127.42, + "H_sun": 9.18, + "T2m": 25.84, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200614:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.15, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200614:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200614:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.7, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200614:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.58, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200614:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.98, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200615:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200615:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200615:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200615:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200615:0410", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 3.66, + "T2m": 15.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200615:0510", + "P": 262.56, + "G(i)": 67.45, + "H_sun": 13.28, + "T2m": 15.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200615:0610", + "P": 757.86, + "G(i)": 192.1, + "H_sun": 23.51, + "T2m": 18.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:0710", + "P": 1411.32, + "G(i)": 300.97, + "H_sun": 34.06, + "T2m": 21.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200615:0810", + "P": 2150.52, + "G(i)": 453.8, + "H_sun": 44.6, + "T2m": 23.34, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200615:0910", + "P": 3355.98, + "G(i)": 718.34, + "H_sun": 54.63, + "T2m": 24.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200615:1010", + "P": 4023.66, + "G(i)": 893.06, + "H_sun": 63.15, + "T2m": 25.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:1110", + "P": 4415.82, + "G(i)": 1008.06, + "H_sun": 68.01, + "T2m": 26.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200615:1210", + "P": 4512.54, + "G(i)": 1043.24, + "H_sun": 66.66, + "T2m": 27.2, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200615:1310", + "P": 4309.8, + "G(i)": 996.26, + "H_sun": 59.95, + "T2m": 27.56, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200615:1410", + "P": 3947.94, + "G(i)": 891.91, + "H_sun": 50.63, + "T2m": 27.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200615:1510", + "P": 3359.52, + "G(i)": 739.18, + "H_sun": 40.31, + "T2m": 27.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200615:1610", + "P": 1232.28, + "G(i)": 269.66, + "H_sun": 29.72, + "T2m": 27.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200615:1710", + "P": 508.2, + "G(i)": 121.5, + "H_sun": 19.26, + "T2m": 25.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200615:1810", + "P": 7.14, + "G(i)": 8.82, + "H_sun": 9.24, + "T2m": 24.63, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200615:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200615:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200615:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200615:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200616:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200616:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200616:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200616:0410", + "P": 43.08, + "G(i)": 19.27, + "H_sun": 3.65, + "T2m": 16.98, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:0510", + "P": 236.52, + "G(i)": 62.63, + "H_sun": 13.27, + "T2m": 17.51, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200616:0610", + "P": 704.58, + "G(i)": 187.87, + "H_sun": 23.5, + "T2m": 18.1, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200616:0710", + "P": 1760.7, + "G(i)": 379.92, + "H_sun": 34.05, + "T2m": 19.29, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:0810", + "P": 2774.46, + "G(i)": 581.88, + "H_sun": 44.59, + "T2m": 20.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200616:0910", + "P": 3039.18, + "G(i)": 643.65, + "H_sun": 54.62, + "T2m": 21.37, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200616:1010", + "P": 3756.42, + "G(i)": 811.66, + "H_sun": 63.16, + "T2m": 22.48, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200616:1110", + "P": 4262.94, + "G(i)": 940.0, + "H_sun": 68.04, + "T2m": 23.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200616:1210", + "P": 4356.3, + "G(i)": 976.65, + "H_sun": 66.71, + "T2m": 24.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200616:1310", + "P": 2454.24, + "G(i)": 531.59, + "H_sun": 60.01, + "T2m": 25.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200616:1410", + "P": 820.14, + "G(i)": 185.27, + "H_sun": 50.69, + "T2m": 25.66, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200616:1510", + "P": 187.2, + "G(i)": 53.91, + "H_sun": 40.37, + "T2m": 25.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200616:1610", + "P": 157.68, + "G(i)": 47.05, + "H_sun": 29.78, + "T2m": 23.75, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200616:1710", + "P": 212.58, + "G(i)": 58.81, + "H_sun": 19.33, + "T2m": 22.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200616:1810", + "P": 90.06, + "G(i)": 31.37, + "H_sun": 9.31, + "T2m": 22.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200616:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200616:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.92, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200616:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200616:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200616:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.68, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200617:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200617:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.71, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200617:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200617:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200617:0410", + "P": 10.14, + "G(i)": 9.64, + "H_sun": 3.65, + "T2m": 15.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200617:0510", + "P": 373.44, + "G(i)": 89.62, + "H_sun": 13.26, + "T2m": 15.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200617:0610", + "P": 665.1, + "G(i)": 148.58, + "H_sun": 23.48, + "T2m": 16.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200617:0710", + "P": 1341.9, + "G(i)": 283.97, + "H_sun": 34.03, + "T2m": 17.79, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200617:0810", + "P": 2557.38, + "G(i)": 531.87, + "H_sun": 44.57, + "T2m": 18.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200617:0910", + "P": 3003.96, + "G(i)": 631.6, + "H_sun": 54.61, + "T2m": 20.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200617:1010", + "P": 3051.9, + "G(i)": 646.44, + "H_sun": 63.16, + "T2m": 21.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200617:1110", + "P": 3347.04, + "G(i)": 715.52, + "H_sun": 68.07, + "T2m": 22.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200617:1210", + "P": 4284.48, + "G(i)": 935.37, + "H_sun": 66.76, + "T2m": 22.81, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200617:1310", + "P": 3476.64, + "G(i)": 747.77, + "H_sun": 60.06, + "T2m": 23.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200617:1410", + "P": 2365.08, + "G(i)": 501.39, + "H_sun": 50.75, + "T2m": 23.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200617:1510", + "P": 393.36, + "G(i)": 96.06, + "H_sun": 40.43, + "T2m": 21.68, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200617:1610", + "P": 275.4, + "G(i)": 71.56, + "H_sun": 29.84, + "T2m": 20.85, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200617:1710", + "P": 187.26, + "G(i)": 52.93, + "H_sun": 19.38, + "T2m": 20.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200617:1810", + "P": 419.4, + "G(i)": 111.22, + "H_sun": 9.36, + "T2m": 20.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200617:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200617:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200617:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200617:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200617:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200618:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200618:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200618:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:0410", + "P": 43.74, + "G(i)": 19.27, + "H_sun": 3.63, + "T2m": 14.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200618:0510", + "P": 292.62, + "G(i)": 73.23, + "H_sun": 13.24, + "T2m": 14.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200618:0610", + "P": 698.7, + "G(i)": 186.39, + "H_sun": 23.46, + "T2m": 16.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:0710", + "P": 1771.32, + "G(i)": 382.06, + "H_sun": 34.01, + "T2m": 18.67, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200618:0810", + "P": 2719.68, + "G(i)": 569.14, + "H_sun": 44.55, + "T2m": 19.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200618:0910", + "P": 2849.1, + "G(i)": 603.45, + "H_sun": 54.6, + "T2m": 21.14, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200618:1010", + "P": 3610.5, + "G(i)": 780.45, + "H_sun": 63.16, + "T2m": 22.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200618:1110", + "P": 4352.64, + "G(i)": 960.03, + "H_sun": 68.08, + "T2m": 23.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200618:1210", + "P": 4135.38, + "G(i)": 909.92, + "H_sun": 66.8, + "T2m": 23.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200618:1310", + "P": 3015.72, + "G(i)": 634.74, + "H_sun": 60.11, + "T2m": 22.99, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200618:1410", + "P": 2091.9, + "G(i)": 437.59, + "H_sun": 50.8, + "T2m": 23.27, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200618:1510", + "P": 194.34, + "G(i)": 54.89, + "H_sun": 40.48, + "T2m": 23.05, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200618:1610", + "P": 1092.9, + "G(i)": 234.69, + "H_sun": 29.9, + "T2m": 21.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200618:1710", + "P": 1633.08, + "G(i)": 352.21, + "H_sun": 19.44, + "T2m": 21.09, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200618:1810", + "P": 16.02, + "G(i)": 11.76, + "H_sun": 9.42, + "T2m": 20.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200618:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.95, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200618:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200618:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200618:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200618:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.64, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200619:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.35, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200619:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.98, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200619:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.58, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200619:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200619:0410", + "P": 40.08, + "G(i)": 18.31, + "H_sun": 3.61, + "T2m": 14.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200619:0510", + "P": 259.2, + "G(i)": 66.49, + "H_sun": 13.22, + "T2m": 14.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200619:0610", + "P": 704.34, + "G(i)": 187.55, + "H_sun": 23.44, + "T2m": 16.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200619:0710", + "P": 1788.6, + "G(i)": 383.83, + "H_sun": 33.99, + "T2m": 18.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:0810", + "P": 2698.8, + "G(i)": 561.53, + "H_sun": 44.53, + "T2m": 19.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:0910", + "P": 3392.22, + "G(i)": 716.23, + "H_sun": 54.58, + "T2m": 21.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200619:1010", + "P": 4194.18, + "G(i)": 920.02, + "H_sun": 63.15, + "T2m": 22.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200619:1110", + "P": 4071.0, + "G(i)": 907.08, + "H_sun": 68.09, + "T2m": 22.94, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200619:1210", + "P": 4148.52, + "G(i)": 923.56, + "H_sun": 66.83, + "T2m": 23.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200619:1310", + "P": 4192.62, + "G(i)": 929.97, + "H_sun": 60.16, + "T2m": 24.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200619:1410", + "P": 4065.42, + "G(i)": 898.7, + "H_sun": 50.85, + "T2m": 24.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200619:1510", + "P": 3440.28, + "G(i)": 746.24, + "H_sun": 40.53, + "T2m": 24.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200619:1610", + "P": 2604.72, + "G(i)": 554.19, + "H_sun": 29.94, + "T2m": 24.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200619:1710", + "P": 976.2, + "G(i)": 216.21, + "H_sun": 19.49, + "T2m": 23.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200619:1810", + "P": 85.68, + "G(i)": 30.39, + "H_sun": 9.46, + "T2m": 22.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.07, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200619:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200619:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200619:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.41, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200620:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200620:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200620:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200620:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.85, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200620:0410", + "P": 22.5, + "G(i)": 13.49, + "H_sun": 3.59, + "T2m": 14.96, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200620:0510", + "P": 326.52, + "G(i)": 79.98, + "H_sun": 13.19, + "T2m": 14.37, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200620:0610", + "P": 752.34, + "G(i)": 190.51, + "H_sun": 23.41, + "T2m": 16.25, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200620:0710", + "P": 1638.96, + "G(i)": 351.13, + "H_sun": 33.96, + "T2m": 19.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200620:0810", + "P": 2641.02, + "G(i)": 555.64, + "H_sun": 44.5, + "T2m": 21.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200620:0910", + "P": 3573.54, + "G(i)": 768.17, + "H_sun": 54.55, + "T2m": 22.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200620:1010", + "P": 4145.88, + "G(i)": 917.66, + "H_sun": 63.13, + "T2m": 24.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200620:1110", + "P": 4494.12, + "G(i)": 1010.88, + "H_sun": 68.1, + "T2m": 24.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200620:1210", + "P": 4622.46, + "G(i)": 1047.38, + "H_sun": 66.86, + "T2m": 25.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200620:1310", + "P": 4423.2, + "G(i)": 994.6, + "H_sun": 60.2, + "T2m": 25.86, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200620:1410", + "P": 4142.82, + "G(i)": 913.64, + "H_sun": 50.89, + "T2m": 26.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200620:1510", + "P": 3496.02, + "G(i)": 755.15, + "H_sun": 40.58, + "T2m": 26.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200620:1610", + "P": 2619.18, + "G(i)": 557.61, + "H_sun": 29.99, + "T2m": 26.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200620:1710", + "P": 1573.38, + "G(i)": 344.42, + "H_sun": 19.53, + "T2m": 25.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200620:1810", + "P": 469.26, + "G(i)": 126.28, + "H_sun": 9.51, + "T2m": 24.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200620:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200620:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.36, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200620:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200620:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200620:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200621:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200621:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.64, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:0410", + "P": 39.9, + "G(i)": 18.31, + "H_sun": 3.56, + "T2m": 15.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200621:0510", + "P": 378.18, + "G(i)": 90.58, + "H_sun": 13.16, + "T2m": 15.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200621:0610", + "P": 694.68, + "G(i)": 186.46, + "H_sun": 23.38, + "T2m": 17.96, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200621:0710", + "P": 1749.72, + "G(i)": 380.34, + "H_sun": 33.92, + "T2m": 20.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200621:0810", + "P": 2756.34, + "G(i)": 583.4, + "H_sun": 44.47, + "T2m": 23.21, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200621:0910", + "P": 3556.8, + "G(i)": 769.23, + "H_sun": 54.52, + "T2m": 25.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200621:1010", + "P": 4067.04, + "G(i)": 910.01, + "H_sun": 63.11, + "T2m": 26.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200621:1110", + "P": 4186.38, + "G(i)": 955.97, + "H_sun": 68.1, + "T2m": 27.21, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200621:1210", + "P": 4346.52, + "G(i)": 1013.44, + "H_sun": 66.88, + "T2m": 27.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200621:1310", + "P": 4290.0, + "G(i)": 983.96, + "H_sun": 60.23, + "T2m": 28.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200621:1410", + "P": 4005.66, + "G(i)": 899.59, + "H_sun": 50.93, + "T2m": 28.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200621:1510", + "P": 3435.84, + "G(i)": 752.73, + "H_sun": 40.62, + "T2m": 28.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200621:1610", + "P": 2608.38, + "G(i)": 563.88, + "H_sun": 30.03, + "T2m": 28.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200621:1710", + "P": 1566.6, + "G(i)": 348.53, + "H_sun": 19.57, + "T2m": 28.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200621:1810", + "P": 479.34, + "G(i)": 130.82, + "H_sun": 9.54, + "T2m": 26.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200621:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200621:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.39, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200621:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200621:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.64, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200621:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.82, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200622:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.15, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200622:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.08, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200622:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200622:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200622:0410", + "P": 38.82, + "G(i)": 18.31, + "H_sun": 3.53, + "T2m": 19.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200622:0510", + "P": 244.38, + "G(i)": 64.56, + "H_sun": 13.12, + "T2m": 18.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200622:0610", + "P": 677.58, + "G(i)": 184.53, + "H_sun": 23.34, + "T2m": 19.58, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200622:0710", + "P": 1735.38, + "G(i)": 381.6, + "H_sun": 33.88, + "T2m": 22.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200622:0810", + "P": 2739.18, + "G(i)": 585.07, + "H_sun": 44.43, + "T2m": 25.07, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200622:0910", + "P": 3522.78, + "G(i)": 769.55, + "H_sun": 54.49, + "T2m": 26.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200622:1010", + "P": 4040.58, + "G(i)": 914.47, + "H_sun": 63.08, + "T2m": 28.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200622:1110", + "P": 4325.76, + "G(i)": 1012.64, + "H_sun": 68.09, + "T2m": 29.02, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200622:1210", + "P": 4505.52, + "G(i)": 1050.37, + "H_sun": 66.89, + "T2m": 29.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200622:1310", + "P": 4364.88, + "G(i)": 992.77, + "H_sun": 60.26, + "T2m": 30.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200622:1410", + "P": 4114.32, + "G(i)": 917.03, + "H_sun": 50.97, + "T2m": 30.45, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200622:1510", + "P": 3450.06, + "G(i)": 754.39, + "H_sun": 40.65, + "T2m": 30.4, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200622:1610", + "P": 2580.72, + "G(i)": 561.28, + "H_sun": 30.07, + "T2m": 30.09, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200622:1710", + "P": 1523.34, + "G(i)": 342.11, + "H_sun": 19.6, + "T2m": 29.48, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200622:1810", + "P": 479.4, + "G(i)": 132.2, + "H_sun": 9.58, + "T2m": 29.06, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200622:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200622:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200622:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200622:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200622:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200623:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200623:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:0410", + "P": 35.28, + "G(i)": 17.34, + "H_sun": 3.49, + "T2m": 19.49, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200623:0510", + "P": 266.34, + "G(i)": 69.38, + "H_sun": 13.08, + "T2m": 19.66, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200623:0610", + "P": 697.08, + "G(i)": 186.46, + "H_sun": 23.3, + "T2m": 21.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:0710", + "P": 1702.74, + "G(i)": 377.38, + "H_sun": 33.84, + "T2m": 23.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:0810", + "P": 2692.74, + "G(i)": 579.78, + "H_sun": 44.39, + "T2m": 25.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200623:0910", + "P": 3472.2, + "G(i)": 764.28, + "H_sun": 54.45, + "T2m": 26.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200623:1010", + "P": 3994.02, + "G(i)": 909.55, + "H_sun": 63.05, + "T2m": 28.37, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200623:1110", + "P": 4285.68, + "G(i)": 1007.23, + "H_sun": 68.07, + "T2m": 29.48, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200623:1210", + "P": 4428.48, + "G(i)": 1037.78, + "H_sun": 66.9, + "T2m": 30.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200623:1310", + "P": 4277.52, + "G(i)": 986.52, + "H_sun": 60.28, + "T2m": 30.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200623:1410", + "P": 3961.68, + "G(i)": 901.16, + "H_sun": 50.99, + "T2m": 31.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200623:1510", + "P": 3347.58, + "G(i)": 744.65, + "H_sun": 40.69, + "T2m": 31.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:1610", + "P": 2549.46, + "G(i)": 558.0, + "H_sun": 30.1, + "T2m": 31.2, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200623:1710", + "P": 1513.92, + "G(i)": 340.34, + "H_sun": 19.64, + "T2m": 30.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200623:1810", + "P": 480.66, + "G(i)": 132.2, + "H_sun": 9.6, + "T2m": 29.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200623:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200623:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.88, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200623:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.0, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200623:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200623:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.77, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200624:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200624:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200624:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200624:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200624:0410", + "P": 39.12, + "G(i)": 18.31, + "H_sun": 3.44, + "T2m": 18.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200624:0510", + "P": 286.38, + "G(i)": 73.23, + "H_sun": 13.03, + "T2m": 18.76, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200624:0610", + "P": 692.7, + "G(i)": 185.62, + "H_sun": 23.25, + "T2m": 20.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200624:0710", + "P": 1713.54, + "G(i)": 378.86, + "H_sun": 33.79, + "T2m": 23.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200624:0810", + "P": 2712.3, + "G(i)": 580.25, + "H_sun": 44.34, + "T2m": 25.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:0910", + "P": 3520.98, + "G(i)": 765.93, + "H_sun": 54.4, + "T2m": 26.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:1010", + "P": 4088.82, + "G(i)": 911.4, + "H_sun": 63.01, + "T2m": 28.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:1110", + "P": 4421.7, + "G(i)": 1003.94, + "H_sun": 68.05, + "T2m": 28.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200624:1210", + "P": 4526.34, + "G(i)": 1041.01, + "H_sun": 66.9, + "T2m": 29.73, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200624:1310", + "P": 4310.04, + "G(i)": 988.78, + "H_sun": 60.3, + "T2m": 30.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200624:1410", + "P": 3956.76, + "G(i)": 898.28, + "H_sun": 51.02, + "T2m": 30.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200624:1510", + "P": 3292.2, + "G(i)": 728.49, + "H_sun": 40.71, + "T2m": 30.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200624:1610", + "P": 2548.44, + "G(i)": 553.16, + "H_sun": 30.13, + "T2m": 30.51, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200624:1710", + "P": 1501.5, + "G(i)": 335.24, + "H_sun": 19.66, + "T2m": 29.74, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200624:1810", + "P": 456.0, + "G(i)": 124.1, + "H_sun": 9.63, + "T2m": 27.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200624:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.28, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200624:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.06, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200624:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200624:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.07, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200624:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.39, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200625:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200625:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200625:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.18, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0410", + "P": 28.5, + "G(i)": 15.42, + "H_sun": 3.4, + "T2m": 19.04, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200625:0510", + "P": 211.44, + "G(i)": 57.82, + "H_sun": 12.98, + "T2m": 19.72, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0610", + "P": 745.56, + "G(i)": 168.32, + "H_sun": 23.2, + "T2m": 20.57, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200625:0710", + "P": 1105.32, + "G(i)": 239.63, + "H_sun": 33.74, + "T2m": 22.86, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200625:0810", + "P": 2109.6, + "G(i)": 446.12, + "H_sun": 44.29, + "T2m": 23.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200625:0910", + "P": 3406.38, + "G(i)": 727.32, + "H_sun": 54.36, + "T2m": 24.53, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200625:1010", + "P": 3846.84, + "G(i)": 835.63, + "H_sun": 62.97, + "T2m": 25.52, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200625:1110", + "P": 4136.28, + "G(i)": 911.77, + "H_sun": 68.02, + "T2m": 26.82, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200625:1210", + "P": 4406.1, + "G(i)": 988.94, + "H_sun": 66.89, + "T2m": 27.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200625:1310", + "P": 4221.72, + "G(i)": 949.4, + "H_sun": 60.31, + "T2m": 28.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200625:1410", + "P": 3831.36, + "G(i)": 844.42, + "H_sun": 51.04, + "T2m": 28.75, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200625:1510", + "P": 2643.36, + "G(i)": 568.73, + "H_sun": 40.74, + "T2m": 28.38, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200625:1610", + "P": 1604.52, + "G(i)": 346.39, + "H_sun": 30.15, + "T2m": 27.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200625:1710", + "P": 558.24, + "G(i)": 132.44, + "H_sun": 19.68, + "T2m": 26.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200625:1810", + "P": 42.06, + "G(i)": 19.6, + "H_sun": 9.65, + "T2m": 25.91, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200625:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.6, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200625:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200625:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200625:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200625:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.81, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200626:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.0, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200626:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200626:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.87, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200626:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200626:0410", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 3.34, + "T2m": 19.96, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200626:0510", + "P": 45.96, + "G(i)": 20.24, + "H_sun": 12.93, + "T2m": 19.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200626:0610", + "P": 590.76, + "G(i)": 135.54, + "H_sun": 23.14, + "T2m": 20.78, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200626:0710", + "P": 1321.02, + "G(i)": 283.3, + "H_sun": 33.69, + "T2m": 21.07, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200626:0810", + "P": 1361.76, + "G(i)": 291.28, + "H_sun": 44.23, + "T2m": 22.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200626:0910", + "P": 2108.7, + "G(i)": 450.74, + "H_sun": 54.3, + "T2m": 23.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200626:1010", + "P": 3693.18, + "G(i)": 818.01, + "H_sun": 62.92, + "T2m": 24.77, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200626:1110", + "P": 4028.16, + "G(i)": 901.84, + "H_sun": 67.98, + "T2m": 25.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200626:1210", + "P": 4072.68, + "G(i)": 920.09, + "H_sun": 66.88, + "T2m": 26.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200626:1310", + "P": 1983.96, + "G(i)": 430.48, + "H_sun": 60.31, + "T2m": 27.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200626:1410", + "P": 2075.46, + "G(i)": 447.47, + "H_sun": 51.05, + "T2m": 27.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200626:1510", + "P": 2025.18, + "G(i)": 434.72, + "H_sun": 40.75, + "T2m": 27.5, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200626:1610", + "P": 1792.98, + "G(i)": 380.44, + "H_sun": 30.17, + "T2m": 25.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200626:1710", + "P": 1433.76, + "G(i)": 312.82, + "H_sun": 19.7, + "T2m": 24.36, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200626:1810", + "P": 518.58, + "G(i)": 139.32, + "H_sun": 9.66, + "T2m": 24.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200626:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.53, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200626:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200626:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.07, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200626:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.52, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200626:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.03, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200627:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.06, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200627:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200627:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200627:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200627:0410", + "P": 15.42, + "G(i)": 11.56, + "H_sun": 3.28, + "T2m": 20.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:0510", + "P": 269.94, + "G(i)": 70.34, + "H_sun": 12.87, + "T2m": 20.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:0610", + "P": 733.5, + "G(i)": 167.25, + "H_sun": 23.08, + "T2m": 21.63, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200627:0710", + "P": 1500.9, + "G(i)": 325.54, + "H_sun": 33.63, + "T2m": 22.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200627:0810", + "P": 2224.38, + "G(i)": 476.62, + "H_sun": 44.18, + "T2m": 23.43, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200627:0910", + "P": 3359.64, + "G(i)": 731.74, + "H_sun": 54.24, + "T2m": 24.66, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200627:1010", + "P": 3943.68, + "G(i)": 875.14, + "H_sun": 62.86, + "T2m": 25.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:1110", + "P": 4301.22, + "G(i)": 969.14, + "H_sun": 67.94, + "T2m": 27.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200627:1210", + "P": 4382.94, + "G(i)": 993.74, + "H_sun": 66.86, + "T2m": 28.27, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200627:1310", + "P": 4142.94, + "G(i)": 930.61, + "H_sun": 60.31, + "T2m": 28.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200627:1410", + "P": 2759.7, + "G(i)": 602.43, + "H_sun": 51.06, + "T2m": 29.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200627:1510", + "P": 183.96, + "G(i)": 53.91, + "H_sun": 40.77, + "T2m": 28.52, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200627:1610", + "P": 119.94, + "G(i)": 39.21, + "H_sun": 30.18, + "T2m": 28.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:1710", + "P": 91.62, + "G(i)": 32.35, + "H_sun": 19.71, + "T2m": 27.21, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200627:1810", + "P": 370.44, + "G(i)": 99.94, + "H_sun": 9.67, + "T2m": 25.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200627:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200627:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.8, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200627:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200627:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200628:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.01, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200628:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200628:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200628:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200628:0410", + "P": 25.02, + "G(i)": 14.45, + "H_sun": 3.22, + "T2m": 19.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200628:0510", + "P": 341.82, + "G(i)": 84.8, + "H_sun": 12.81, + "T2m": 19.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200628:0610", + "P": 794.94, + "G(i)": 188.1, + "H_sun": 23.02, + "T2m": 21.94, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200628:0710", + "P": 1657.62, + "G(i)": 367.37, + "H_sun": 33.57, + "T2m": 23.23, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200628:0810", + "P": 2598.78, + "G(i)": 560.88, + "H_sun": 44.11, + "T2m": 25.06, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200628:0910", + "P": 3391.32, + "G(i)": 748.25, + "H_sun": 54.18, + "T2m": 26.65, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200628:1010", + "P": 3943.74, + "G(i)": 887.67, + "H_sun": 62.8, + "T2m": 28.11, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200628:1110", + "P": 4264.14, + "G(i)": 972.34, + "H_sun": 67.89, + "T2m": 29.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200628:1210", + "P": 4396.32, + "G(i)": 1002.97, + "H_sun": 66.84, + "T2m": 29.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200628:1310", + "P": 4269.72, + "G(i)": 969.57, + "H_sun": 60.31, + "T2m": 30.55, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200628:1410", + "P": 3989.34, + "G(i)": 887.19, + "H_sun": 51.07, + "T2m": 30.65, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200628:1510", + "P": 3303.78, + "G(i)": 723.85, + "H_sun": 40.77, + "T2m": 30.35, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200628:1610", + "P": 2341.26, + "G(i)": 505.0, + "H_sun": 30.19, + "T2m": 29.93, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200628:1710", + "P": 1352.58, + "G(i)": 300.41, + "H_sun": 19.72, + "T2m": 28.86, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200628:1810", + "P": 424.8, + "G(i)": 115.1, + "H_sun": 9.67, + "T2m": 27.5, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200628:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.67, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200628:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.28, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200628:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.08, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200628:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.3, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200628:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.74, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200629:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200629:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.32, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200629:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200629:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200629:0410", + "P": 25.2, + "G(i)": 14.45, + "H_sun": 3.15, + "T2m": 18.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200629:0510", + "P": 280.5, + "G(i)": 72.27, + "H_sun": 12.74, + "T2m": 19.67, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200629:0610", + "P": 658.2, + "G(i)": 177.4, + "H_sun": 22.95, + "T2m": 21.64, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200629:0710", + "P": 1639.2, + "G(i)": 362.43, + "H_sun": 33.5, + "T2m": 23.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200629:0810", + "P": 2600.16, + "G(i)": 556.95, + "H_sun": 44.05, + "T2m": 25.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200629:0910", + "P": 3383.82, + "G(i)": 740.95, + "H_sun": 54.11, + "T2m": 26.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200629:1010", + "P": 3817.32, + "G(i)": 864.39, + "H_sun": 62.74, + "T2m": 27.88, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200629:1110", + "P": 4207.68, + "G(i)": 969.36, + "H_sun": 67.83, + "T2m": 29.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200629:1210", + "P": 4314.06, + "G(i)": 999.0, + "H_sun": 66.8, + "T2m": 30.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200629:1310", + "P": 4172.1, + "G(i)": 972.88, + "H_sun": 60.3, + "T2m": 31.54, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200629:1410", + "P": 3792.42, + "G(i)": 877.83, + "H_sun": 51.06, + "T2m": 31.92, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200629:1510", + "P": 3242.46, + "G(i)": 735.14, + "H_sun": 40.78, + "T2m": 32.31, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200629:1610", + "P": 2458.02, + "G(i)": 541.88, + "H_sun": 30.19, + "T2m": 32.06, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200629:1710", + "P": 1456.32, + "G(i)": 326.77, + "H_sun": 19.72, + "T2m": 31.13, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200629:1810", + "P": 450.78, + "G(i)": 123.48, + "H_sun": 9.67, + "T2m": 29.49, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200629:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.85, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200629:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.63, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200629:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200629:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200629:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200630:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200630:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200630:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200630:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.6, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200630:0410", + "P": 21.72, + "G(i)": 13.49, + "H_sun": 3.08, + "T2m": 20.29, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200630:0510", + "P": 330.3, + "G(i)": 82.87, + "H_sun": 12.67, + "T2m": 20.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200630:0610", + "P": 773.88, + "G(i)": 186.06, + "H_sun": 22.88, + "T2m": 21.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200630:0710", + "P": 1517.52, + "G(i)": 329.07, + "H_sun": 33.43, + "T2m": 23.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200630:0810", + "P": 2064.0, + "G(i)": 439.31, + "H_sun": 43.97, + "T2m": 24.29, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200630:0910", + "P": 2923.56, + "G(i)": 630.69, + "H_sun": 54.04, + "T2m": 25.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200630:1010", + "P": 3036.36, + "G(i)": 667.33, + "H_sun": 62.66, + "T2m": 26.43, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200630:1110", + "P": 3785.7, + "G(i)": 853.59, + "H_sun": 67.77, + "T2m": 27.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200630:1210", + "P": 4045.02, + "G(i)": 916.0, + "H_sun": 66.76, + "T2m": 28.27, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200630:1310", + "P": 3167.58, + "G(i)": 692.93, + "H_sun": 60.28, + "T2m": 28.98, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200630:1410", + "P": 3675.78, + "G(i)": 804.64, + "H_sun": 51.06, + "T2m": 29.54, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200630:1510", + "P": 3181.68, + "G(i)": 690.49, + "H_sun": 40.77, + "T2m": 29.49, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200630:1610", + "P": 2381.82, + "G(i)": 511.07, + "H_sun": 30.19, + "T2m": 29.18, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200630:1710", + "P": 1300.56, + "G(i)": 288.47, + "H_sun": 19.71, + "T2m": 28.55, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200630:1810", + "P": 443.7, + "G(i)": 120.03, + "H_sun": 9.66, + "T2m": 27.49, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200630:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200630:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.75, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200630:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200630:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.26, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200630:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200701:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200701:0410", + "P": 12.54, + "G(i)": 10.6, + "H_sun": 3.01, + "T2m": 20.36, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200701:0510", + "P": 329.88, + "G(i)": 82.87, + "H_sun": 12.59, + "T2m": 21.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200701:0610", + "P": 667.32, + "G(i)": 176.56, + "H_sun": 22.81, + "T2m": 22.33, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200701:0710", + "P": 1536.66, + "G(i)": 337.9, + "H_sun": 33.35, + "T2m": 23.96, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200701:0810", + "P": 2534.46, + "G(i)": 547.38, + "H_sun": 43.9, + "T2m": 25.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200701:0910", + "P": 3242.1, + "G(i)": 711.26, + "H_sun": 53.96, + "T2m": 26.57, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200701:1010", + "P": 3677.58, + "G(i)": 819.74, + "H_sun": 62.59, + "T2m": 27.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200701:1110", + "P": 3777.0, + "G(i)": 843.24, + "H_sun": 67.7, + "T2m": 28.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200701:1210", + "P": 416.94, + "G(i)": 103.91, + "H_sun": 66.72, + "T2m": 29.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:1310", + "P": 453.0, + "G(i)": 111.75, + "H_sun": 60.25, + "T2m": 29.47, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200701:1410", + "P": 3784.08, + "G(i)": 843.38, + "H_sun": 51.05, + "T2m": 29.41, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200701:1510", + "P": 3248.34, + "G(i)": 710.02, + "H_sun": 40.77, + "T2m": 29.64, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200701:1610", + "P": 2485.62, + "G(i)": 537.49, + "H_sun": 30.18, + "T2m": 29.33, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200701:1710", + "P": 358.8, + "G(i)": 91.53, + "H_sun": 19.7, + "T2m": 28.42, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200701:1810", + "P": 440.94, + "G(i)": 119.13, + "H_sun": 9.64, + "T2m": 26.61, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200701:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.09, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200701:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200701:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200701:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200701:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.84, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200702:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200702:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.02, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200702:0410", + "P": 24.78, + "G(i)": 14.45, + "H_sun": 2.92, + "T2m": 21.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200702:0510", + "P": 277.5, + "G(i)": 72.27, + "H_sun": 12.51, + "T2m": 21.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200702:0610", + "P": 635.4, + "G(i)": 175.53, + "H_sun": 22.73, + "T2m": 22.98, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200702:0710", + "P": 1638.84, + "G(i)": 364.06, + "H_sun": 33.28, + "T2m": 24.06, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200702:0810", + "P": 2604.96, + "G(i)": 563.2, + "H_sun": 43.82, + "T2m": 25.75, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200702:0910", + "P": 3352.92, + "G(i)": 743.2, + "H_sun": 53.88, + "T2m": 27.31, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200702:1010", + "P": 3916.38, + "G(i)": 885.97, + "H_sun": 62.51, + "T2m": 28.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200702:1110", + "P": 4238.4, + "G(i)": 972.75, + "H_sun": 67.62, + "T2m": 30.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200702:1210", + "P": 4294.38, + "G(i)": 985.95, + "H_sun": 66.66, + "T2m": 31.09, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:1310", + "P": 4119.9, + "G(i)": 935.85, + "H_sun": 60.22, + "T2m": 32.02, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200702:1410", + "P": 1930.32, + "G(i)": 424.0, + "H_sun": 51.03, + "T2m": 31.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200702:1510", + "P": 2709.96, + "G(i)": 591.75, + "H_sun": 40.76, + "T2m": 31.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200702:1610", + "P": 1107.36, + "G(i)": 247.38, + "H_sun": 30.17, + "T2m": 30.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200702:1710", + "P": 59.4, + "G(i)": 24.51, + "H_sun": 19.69, + "T2m": 29.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200702:1810", + "P": 172.92, + "G(i)": 51.86, + "H_sun": 9.63, + "T2m": 28.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200702:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200702:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.85, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200702:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.17, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200702:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200702:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.2, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200703:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200703:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200703:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200703:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200703:0410", + "P": 15.72, + "G(i)": 11.56, + "H_sun": 2.84, + "T2m": 18.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200703:0510", + "P": 305.46, + "G(i)": 77.09, + "H_sun": 12.43, + "T2m": 19.05, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200703:0610", + "P": 655.56, + "G(i)": 175.76, + "H_sun": 22.65, + "T2m": 20.04, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200703:0710", + "P": 1652.1, + "G(i)": 363.94, + "H_sun": 33.19, + "T2m": 23.41, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200703:0810", + "P": 2645.04, + "G(i)": 562.97, + "H_sun": 43.74, + "T2m": 25.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200703:0910", + "P": 3228.24, + "G(i)": 694.93, + "H_sun": 53.8, + "T2m": 26.35, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200703:1010", + "P": 3891.06, + "G(i)": 849.48, + "H_sun": 62.42, + "T2m": 27.37, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200703:1110", + "P": 4415.4, + "G(i)": 979.35, + "H_sun": 67.54, + "T2m": 28.0, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200703:1210", + "P": 4480.86, + "G(i)": 1005.96, + "H_sun": 66.6, + "T2m": 27.74, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200703:1310", + "P": 4377.36, + "G(i)": 961.47, + "H_sun": 60.19, + "T2m": 26.65, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200703:1410", + "P": 2250.84, + "G(i)": 477.11, + "H_sun": 51.01, + "T2m": 25.96, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200703:1510", + "P": 579.3, + "G(i)": 135.27, + "H_sun": 40.74, + "T2m": 25.17, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200703:1610", + "P": 126.12, + "G(i)": 40.19, + "H_sun": 30.15, + "T2m": 25.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200703:1710", + "P": 73.2, + "G(i)": 27.45, + "H_sun": 19.67, + "T2m": 23.69, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200703:1810", + "P": 12.84, + "G(i)": 10.78, + "H_sun": 9.6, + "T2m": 22.58, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200703:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.7, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200703:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.99, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200703:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200703:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.73, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200703:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.53, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200704:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.35, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200704:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.31, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200704:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.17, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200704:0410", + "P": 9.9, + "G(i)": 9.64, + "H_sun": 2.75, + "T2m": 17.99, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200704:0510", + "P": 235.98, + "G(i)": 62.63, + "H_sun": 12.34, + "T2m": 18.34, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:0610", + "P": 614.04, + "G(i)": 171.27, + "H_sun": 22.56, + "T2m": 19.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:0710", + "P": 1674.3, + "G(i)": 364.28, + "H_sun": 33.11, + "T2m": 20.68, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200704:0810", + "P": 2704.86, + "G(i)": 566.42, + "H_sun": 43.65, + "T2m": 22.08, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200704:0910", + "P": 3487.98, + "G(i)": 745.58, + "H_sun": 53.71, + "T2m": 23.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200704:1010", + "P": 4048.8, + "G(i)": 891.04, + "H_sun": 62.33, + "T2m": 24.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200704:1110", + "P": 4323.84, + "G(i)": 978.54, + "H_sun": 67.45, + "T2m": 25.85, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200704:1210", + "P": 4459.86, + "G(i)": 1016.78, + "H_sun": 66.54, + "T2m": 26.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200704:1310", + "P": 4370.52, + "G(i)": 984.42, + "H_sun": 60.14, + "T2m": 27.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200704:1410", + "P": 4008.12, + "G(i)": 891.14, + "H_sun": 50.98, + "T2m": 27.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200704:1510", + "P": 3389.52, + "G(i)": 742.38, + "H_sun": 40.72, + "T2m": 27.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200704:1610", + "P": 2555.88, + "G(i)": 553.88, + "H_sun": 30.13, + "T2m": 27.92, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200704:1710", + "P": 1530.84, + "G(i)": 340.29, + "H_sun": 19.65, + "T2m": 27.71, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200704:1810", + "P": 495.12, + "G(i)": 134.62, + "H_sun": 9.57, + "T2m": 26.92, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200704:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.33, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200704:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.18, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200704:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.88, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200704:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200704:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200705:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200705:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200705:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.39, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200705:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.21, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200705:0410", + "P": 15.48, + "G(i)": 11.56, + "H_sun": 2.66, + "T2m": 20.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200705:0510", + "P": 237.9, + "G(i)": 63.6, + "H_sun": 12.25, + "T2m": 20.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200705:0610", + "P": 610.38, + "G(i)": 170.62, + "H_sun": 22.47, + "T2m": 21.56, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200705:0710", + "P": 1615.86, + "G(i)": 360.18, + "H_sun": 33.02, + "T2m": 23.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200705:0810", + "P": 2592.54, + "G(i)": 559.03, + "H_sun": 43.56, + "T2m": 25.66, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200705:0910", + "P": 3343.02, + "G(i)": 739.32, + "H_sun": 53.62, + "T2m": 27.02, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200705:1010", + "P": 3912.18, + "G(i)": 883.32, + "H_sun": 62.23, + "T2m": 28.24, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200705:1110", + "P": 4234.62, + "G(i)": 970.42, + "H_sun": 67.36, + "T2m": 29.24, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200705:1210", + "P": 4362.36, + "G(i)": 1008.33, + "H_sun": 66.46, + "T2m": 30.03, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200705:1310", + "P": 4257.54, + "G(i)": 976.75, + "H_sun": 60.1, + "T2m": 30.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200705:1410", + "P": 3926.4, + "G(i)": 888.55, + "H_sun": 50.94, + "T2m": 31.04, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200705:1510", + "P": 3305.4, + "G(i)": 735.34, + "H_sun": 40.69, + "T2m": 31.23, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200705:1610", + "P": 2513.04, + "G(i)": 551.12, + "H_sun": 30.11, + "T2m": 31.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200705:1710", + "P": 1487.82, + "G(i)": 335.34, + "H_sun": 19.62, + "T2m": 30.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200705:1810", + "P": 484.86, + "G(i)": 133.86, + "H_sun": 9.54, + "T2m": 29.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200705:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200705:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200705:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200705:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200705:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200706:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200706:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200706:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200706:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200706:0410", + "P": 12.42, + "G(i)": 10.6, + "H_sun": 2.56, + "T2m": 21.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200706:0510", + "P": 254.7, + "G(i)": 67.45, + "H_sun": 12.16, + "T2m": 21.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200706:0610", + "P": 612.78, + "G(i)": 171.13, + "H_sun": 22.38, + "T2m": 22.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200706:0710", + "P": 1609.92, + "G(i)": 361.56, + "H_sun": 32.93, + "T2m": 25.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200706:0810", + "P": 2588.34, + "G(i)": 562.06, + "H_sun": 43.47, + "T2m": 26.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200706:0910", + "P": 3333.18, + "G(i)": 743.91, + "H_sun": 53.52, + "T2m": 28.36, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200706:1010", + "P": 3868.02, + "G(i)": 884.63, + "H_sun": 62.13, + "T2m": 29.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200706:1110", + "P": 4217.1, + "G(i)": 978.06, + "H_sun": 67.25, + "T2m": 30.58, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200706:1210", + "P": 4351.92, + "G(i)": 1010.58, + "H_sun": 66.38, + "T2m": 31.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200706:1310", + "P": 4251.84, + "G(i)": 979.04, + "H_sun": 60.04, + "T2m": 31.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200706:1410", + "P": 3913.2, + "G(i)": 885.56, + "H_sun": 50.9, + "T2m": 32.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200706:1510", + "P": 3344.64, + "G(i)": 737.76, + "H_sun": 40.66, + "T2m": 32.21, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200706:1610", + "P": 2456.7, + "G(i)": 533.83, + "H_sun": 30.08, + "T2m": 31.86, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200706:1710", + "P": 1480.92, + "G(i)": 331.91, + "H_sun": 19.58, + "T2m": 30.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200706:1810", + "P": 450.24, + "G(i)": 123.59, + "H_sun": 9.5, + "T2m": 29.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200706:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.68, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200706:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200706:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200706:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.83, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200706:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.75, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200707:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.9, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200707:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200707:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200707:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.54, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200707:0410", + "P": 9.84, + "G(i)": 9.64, + "H_sun": 2.46, + "T2m": 18.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200707:0510", + "P": 243.96, + "G(i)": 64.56, + "H_sun": 12.06, + "T2m": 19.51, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200707:0610", + "P": 628.62, + "G(i)": 171.09, + "H_sun": 22.28, + "T2m": 20.35, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200707:0710", + "P": 1638.78, + "G(i)": 355.77, + "H_sun": 32.83, + "T2m": 22.44, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200707:0810", + "P": 2688.66, + "G(i)": 553.43, + "H_sun": 43.37, + "T2m": 22.87, + "WS10m": 4.34, + "Int": 0.0 + }, + { + "time": "20200707:0910", + "P": 3259.74, + "G(i)": 671.59, + "H_sun": 53.42, + "T2m": 23.46, + "WS10m": 4.41, + "Int": 0.0 + }, + { + "time": "20200707:1010", + "P": 4168.5, + "G(i)": 867.57, + "H_sun": 62.02, + "T2m": 23.86, + "WS10m": 4.48, + "Int": 0.0 + }, + { + "time": "20200707:1110", + "P": 4472.88, + "G(i)": 941.63, + "H_sun": 67.15, + "T2m": 24.19, + "WS10m": 4.28, + "Int": 0.0 + }, + { + "time": "20200707:1210", + "P": 4610.88, + "G(i)": 982.8, + "H_sun": 66.29, + "T2m": 24.6, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200707:1310", + "P": 4505.64, + "G(i)": 969.39, + "H_sun": 59.98, + "T2m": 24.9, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200707:1410", + "P": 4095.24, + "G(i)": 881.92, + "H_sun": 50.86, + "T2m": 25.17, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200707:1510", + "P": 3400.26, + "G(i)": 725.22, + "H_sun": 40.62, + "T2m": 25.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:1610", + "P": 2564.7, + "G(i)": 543.51, + "H_sun": 30.04, + "T2m": 25.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200707:1710", + "P": 1506.96, + "G(i)": 328.94, + "H_sun": 19.54, + "T2m": 24.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200707:1810", + "P": 464.52, + "G(i)": 123.91, + "H_sun": 9.45, + "T2m": 24.11, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200707:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200707:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.73, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.65, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.89, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200707:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.01, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.85, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.46, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.99, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.62, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:0510", + "P": 259.8, + "G(i)": 67.45, + "H_sun": 11.95, + "T2m": 17.92, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200708:0610", + "P": 765.3, + "G(i)": 179.45, + "H_sun": 22.18, + "T2m": 19.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200708:0710", + "P": 1500.72, + "G(i)": 321.65, + "H_sun": 32.73, + "T2m": 20.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:0810", + "P": 2644.74, + "G(i)": 553.5, + "H_sun": 43.27, + "T2m": 21.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200708:0910", + "P": 3457.56, + "G(i)": 735.8, + "H_sun": 53.32, + "T2m": 23.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200708:1010", + "P": 4008.72, + "G(i)": 875.51, + "H_sun": 61.91, + "T2m": 24.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200708:1110", + "P": 4381.08, + "G(i)": 977.72, + "H_sun": 67.03, + "T2m": 25.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200708:1210", + "P": 4487.88, + "G(i)": 1010.37, + "H_sun": 66.2, + "T2m": 26.45, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200708:1310", + "P": 4370.04, + "G(i)": 980.02, + "H_sun": 59.91, + "T2m": 27.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200708:1410", + "P": 4002.36, + "G(i)": 886.64, + "H_sun": 50.81, + "T2m": 27.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200708:1510", + "P": 3360.54, + "G(i)": 733.35, + "H_sun": 40.57, + "T2m": 28.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200708:1610", + "P": 2545.92, + "G(i)": 550.26, + "H_sun": 30.0, + "T2m": 28.16, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200708:1710", + "P": 1509.12, + "G(i)": 334.8, + "H_sun": 19.5, + "T2m": 27.94, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200708:1810", + "P": 459.78, + "G(i)": 125.06, + "H_sun": 9.4, + "T2m": 27.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200708:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.32, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200708:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200708:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.95, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200708:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.04, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200708:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200709:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200709:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200709:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.64, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200709:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200709:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200709:0510", + "P": 267.3, + "G(i)": 69.38, + "H_sun": 11.85, + "T2m": 19.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200709:0610", + "P": 614.52, + "G(i)": 168.67, + "H_sun": 22.08, + "T2m": 21.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200709:0710", + "P": 1587.42, + "G(i)": 353.59, + "H_sun": 32.63, + "T2m": 23.07, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200709:0810", + "P": 2528.76, + "G(i)": 544.39, + "H_sun": 43.17, + "T2m": 24.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200709:0910", + "P": 3326.58, + "G(i)": 729.09, + "H_sun": 53.21, + "T2m": 26.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200709:1010", + "P": 3884.4, + "G(i)": 871.83, + "H_sun": 61.79, + "T2m": 27.59, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200709:1110", + "P": 4224.0, + "G(i)": 963.15, + "H_sun": 66.91, + "T2m": 28.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200709:1210", + "P": 4335.42, + "G(i)": 995.82, + "H_sun": 66.1, + "T2m": 29.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200709:1310", + "P": 4244.16, + "G(i)": 970.86, + "H_sun": 59.84, + "T2m": 30.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200709:1410", + "P": 3880.32, + "G(i)": 877.1, + "H_sun": 50.75, + "T2m": 31.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200709:1510", + "P": 3282.96, + "G(i)": 731.37, + "H_sun": 40.53, + "T2m": 31.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200709:1610", + "P": 2464.32, + "G(i)": 539.53, + "H_sun": 29.95, + "T2m": 31.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200709:1710", + "P": 1461.24, + "G(i)": 327.8, + "H_sun": 19.45, + "T2m": 30.66, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200709:1810", + "P": 432.6, + "G(i)": 119.11, + "H_sun": 9.34, + "T2m": 29.39, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200709:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.3, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200709:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200709:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200709:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200709:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200710:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200710:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200710:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200710:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200710:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.95, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200710:0510", + "P": 286.56, + "G(i)": 74.2, + "H_sun": 11.74, + "T2m": 21.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200710:0610", + "P": 647.58, + "G(i)": 170.05, + "H_sun": 21.98, + "T2m": 22.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200710:0710", + "P": 1525.86, + "G(i)": 342.36, + "H_sun": 32.53, + "T2m": 25.03, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200710:0810", + "P": 2442.48, + "G(i)": 531.43, + "H_sun": 43.06, + "T2m": 26.63, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200710:0910", + "P": 3215.94, + "G(i)": 709.17, + "H_sun": 53.1, + "T2m": 28.13, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200710:1010", + "P": 3799.5, + "G(i)": 851.46, + "H_sun": 61.67, + "T2m": 29.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200710:1110", + "P": 4165.86, + "G(i)": 946.72, + "H_sun": 66.79, + "T2m": 30.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200710:1210", + "P": 4266.66, + "G(i)": 978.61, + "H_sun": 65.99, + "T2m": 30.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200710:1310", + "P": 4099.8, + "G(i)": 941.53, + "H_sun": 59.76, + "T2m": 31.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200710:1410", + "P": 3079.38, + "G(i)": 679.89, + "H_sun": 50.69, + "T2m": 31.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200710:1510", + "P": 2804.16, + "G(i)": 607.85, + "H_sun": 40.47, + "T2m": 30.13, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200710:1610", + "P": 420.12, + "G(i)": 104.89, + "H_sun": 29.9, + "T2m": 29.84, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200710:1710", + "P": 1128.84, + "G(i)": 253.65, + "H_sun": 19.39, + "T2m": 29.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200710:1810", + "P": 376.86, + "G(i)": 103.68, + "H_sun": 9.28, + "T2m": 28.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200710:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.84, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200710:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.25, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200710:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200710:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.64, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200710:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.76, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200711:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200711:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200711:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200711:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200711:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200711:0510", + "P": 284.64, + "G(i)": 73.23, + "H_sun": 11.63, + "T2m": 20.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200711:0610", + "P": 634.5, + "G(i)": 167.65, + "H_sun": 21.87, + "T2m": 21.5, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200711:0710", + "P": 1555.98, + "G(i)": 342.06, + "H_sun": 32.42, + "T2m": 22.87, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200711:0810", + "P": 2521.56, + "G(i)": 533.27, + "H_sun": 42.95, + "T2m": 23.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200711:0910", + "P": 3233.94, + "G(i)": 699.14, + "H_sun": 52.98, + "T2m": 24.63, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200711:1010", + "P": 2880.9, + "G(i)": 624.89, + "H_sun": 61.54, + "T2m": 25.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200711:1110", + "P": 3336.48, + "G(i)": 734.26, + "H_sun": 66.65, + "T2m": 26.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200711:1210", + "P": 3796.44, + "G(i)": 848.66, + "H_sun": 65.88, + "T2m": 27.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200711:1310", + "P": 3547.98, + "G(i)": 786.75, + "H_sun": 59.67, + "T2m": 27.7, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200711:1410", + "P": 3613.38, + "G(i)": 798.65, + "H_sun": 50.62, + "T2m": 28.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200711:1510", + "P": 3186.66, + "G(i)": 694.86, + "H_sun": 40.41, + "T2m": 28.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200711:1610", + "P": 2222.4, + "G(i)": 477.96, + "H_sun": 29.84, + "T2m": 28.27, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200711:1710", + "P": 1501.26, + "G(i)": 333.15, + "H_sun": 19.33, + "T2m": 27.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200711:1810", + "P": 376.08, + "G(i)": 102.93, + "H_sun": 9.21, + "T2m": 26.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200711:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.51, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200711:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.48, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200711:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.54, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200711:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200711:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200712:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.04, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200712:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.07, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200712:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.51, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200712:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.86, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200712:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.26, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200712:0510", + "P": 262.32, + "G(i)": 68.42, + "H_sun": 11.51, + "T2m": 19.94, + "WS10m": 3.31, + "Int": 0.0 + }, + { + "time": "20200712:0610", + "P": 622.5, + "G(i)": 166.53, + "H_sun": 21.75, + "T2m": 19.72, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200712:0710", + "P": 1601.7, + "G(i)": 347.25, + "H_sun": 32.31, + "T2m": 20.72, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200712:0810", + "P": 2510.04, + "G(i)": 521.02, + "H_sun": 42.84, + "T2m": 21.78, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200712:0910", + "P": 2761.38, + "G(i)": 575.55, + "H_sun": 52.86, + "T2m": 22.59, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200712:1010", + "P": 3892.62, + "G(i)": 827.03, + "H_sun": 61.41, + "T2m": 23.66, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200712:1110", + "P": 4458.78, + "G(i)": 970.96, + "H_sun": 66.52, + "T2m": 24.78, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200712:1210", + "P": 4531.38, + "G(i)": 998.56, + "H_sun": 65.76, + "T2m": 25.57, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200712:1310", + "P": 4383.36, + "G(i)": 967.61, + "H_sun": 59.58, + "T2m": 26.31, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200712:1410", + "P": 3951.06, + "G(i)": 869.35, + "H_sun": 50.55, + "T2m": 27.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200712:1510", + "P": 3386.76, + "G(i)": 733.49, + "H_sun": 40.35, + "T2m": 27.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200712:1610", + "P": 2545.2, + "G(i)": 544.93, + "H_sun": 29.77, + "T2m": 27.63, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200712:1710", + "P": 1528.08, + "G(i)": 337.24, + "H_sun": 19.26, + "T2m": 27.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200712:1810", + "P": 482.52, + "G(i)": 131.46, + "H_sun": 9.14, + "T2m": 26.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200712:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.8, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200712:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.49, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200712:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.39, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200712:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200712:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.52, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200713:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.99, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200713:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.73, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200713:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.52, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200713:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.44, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200713:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.21, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200713:0510", + "P": 275.82, + "G(i)": 71.31, + "H_sun": 11.39, + "T2m": 20.17, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200713:0610", + "P": 373.26, + "G(i)": 91.16, + "H_sun": 21.64, + "T2m": 20.25, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200713:0710", + "P": 624.24, + "G(i)": 141.16, + "H_sun": 32.2, + "T2m": 20.72, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20200713:0810", + "P": 2415.6, + "G(i)": 499.37, + "H_sun": 42.73, + "T2m": 21.47, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200713:0910", + "P": 3452.94, + "G(i)": 717.02, + "H_sun": 52.74, + "T2m": 22.02, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200713:1010", + "P": 4022.64, + "G(i)": 852.72, + "H_sun": 61.27, + "T2m": 22.81, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200713:1110", + "P": 3183.24, + "G(i)": 673.51, + "H_sun": 66.37, + "T2m": 23.54, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200713:1210", + "P": 4229.88, + "G(i)": 915.72, + "H_sun": 65.63, + "T2m": 24.55, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200713:1310", + "P": 4018.62, + "G(i)": 871.96, + "H_sun": 59.48, + "T2m": 25.87, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200713:1410", + "P": 3445.08, + "G(i)": 745.73, + "H_sun": 50.47, + "T2m": 26.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200713:1510", + "P": 2462.34, + "G(i)": 525.79, + "H_sun": 40.28, + "T2m": 26.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200713:1610", + "P": 2081.58, + "G(i)": 443.05, + "H_sun": 29.7, + "T2m": 26.67, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200713:1710", + "P": 1399.92, + "G(i)": 306.85, + "H_sun": 19.19, + "T2m": 26.19, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200713:1810", + "P": 445.26, + "G(i)": 121.03, + "H_sun": 9.06, + "T2m": 25.25, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200713:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.61, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200713:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.61, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200713:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.44, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200713:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.49, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200713:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.58, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200714:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.28, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.12, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200714:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200714:0510", + "P": 286.86, + "G(i)": 73.23, + "H_sun": 11.27, + "T2m": 18.78, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:0610", + "P": 611.16, + "G(i)": 139.76, + "H_sun": 21.52, + "T2m": 19.73, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200714:0710", + "P": 1204.5, + "G(i)": 256.91, + "H_sun": 32.08, + "T2m": 19.87, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200714:0810", + "P": 2394.54, + "G(i)": 496.5, + "H_sun": 42.61, + "T2m": 20.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200714:0910", + "P": 3244.02, + "G(i)": 680.94, + "H_sun": 52.61, + "T2m": 21.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200714:1010", + "P": 3980.94, + "G(i)": 856.1, + "H_sun": 61.13, + "T2m": 21.77, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200714:1110", + "P": 4104.18, + "G(i)": 897.63, + "H_sun": 66.22, + "T2m": 22.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200714:1210", + "P": 4079.46, + "G(i)": 901.39, + "H_sun": 65.5, + "T2m": 23.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200714:1310", + "P": 3004.86, + "G(i)": 647.1, + "H_sun": 59.38, + "T2m": 24.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200714:1410", + "P": 3320.4, + "G(i)": 714.71, + "H_sun": 50.38, + "T2m": 24.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200714:1510", + "P": 1861.44, + "G(i)": 394.63, + "H_sun": 40.2, + "T2m": 24.57, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200714:1610", + "P": 2682.84, + "G(i)": 565.86, + "H_sun": 29.63, + "T2m": 24.5, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:1710", + "P": 1171.44, + "G(i)": 256.66, + "H_sun": 19.11, + "T2m": 24.29, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:1810", + "P": 301.26, + "G(i)": 82.42, + "H_sun": 8.98, + "T2m": 23.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200714:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.29, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.03, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200714:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.82, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200714:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.83, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200714:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.12, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200715:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200715:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.04, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.57, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200715:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.51, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:0510", + "P": 69.78, + "G(i)": 26.02, + "H_sun": 11.14, + "T2m": 17.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200715:0610", + "P": 601.26, + "G(i)": 137.79, + "H_sun": 21.4, + "T2m": 19.02, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200715:0710", + "P": 1315.68, + "G(i)": 283.44, + "H_sun": 31.96, + "T2m": 20.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200715:0810", + "P": 2045.52, + "G(i)": 434.23, + "H_sun": 42.49, + "T2m": 21.57, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200715:0910", + "P": 3202.32, + "G(i)": 687.15, + "H_sun": 52.48, + "T2m": 22.67, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200715:1010", + "P": 3438.42, + "G(i)": 745.32, + "H_sun": 60.99, + "T2m": 24.0, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200715:1110", + "P": 4092.84, + "G(i)": 898.63, + "H_sun": 66.07, + "T2m": 24.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:1210", + "P": 3436.44, + "G(i)": 748.84, + "H_sun": 65.35, + "T2m": 25.8, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200715:1310", + "P": 3240.72, + "G(i)": 703.87, + "H_sun": 59.27, + "T2m": 26.46, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200715:1410", + "P": 3412.56, + "G(i)": 751.01, + "H_sun": 50.29, + "T2m": 27.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200715:1510", + "P": 2955.0, + "G(i)": 640.48, + "H_sun": 40.12, + "T2m": 26.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200715:1610", + "P": 1777.02, + "G(i)": 381.15, + "H_sun": 29.55, + "T2m": 25.94, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200715:1710", + "P": 600.6, + "G(i)": 140.54, + "H_sun": 19.03, + "T2m": 25.49, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200715:1810", + "P": 223.26, + "G(i)": 63.7, + "H_sun": 8.89, + "T2m": 24.52, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200715:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200715:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.65, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200715:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200715:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200715:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200716:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.8, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200716:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.02, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200716:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.01, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200716:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.54, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200716:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200716:0510", + "P": 268.38, + "G(i)": 69.38, + "H_sun": 11.02, + "T2m": 18.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200716:0610", + "P": 606.9, + "G(i)": 161.24, + "H_sun": 21.28, + "T2m": 19.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:0710", + "P": 1533.72, + "G(i)": 338.44, + "H_sun": 31.84, + "T2m": 21.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200716:0810", + "P": 2532.9, + "G(i)": 535.28, + "H_sun": 42.36, + "T2m": 22.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200716:0910", + "P": 3321.18, + "G(i)": 710.13, + "H_sun": 52.35, + "T2m": 23.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200716:1010", + "P": 3824.82, + "G(i)": 842.08, + "H_sun": 60.84, + "T2m": 25.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1110", + "P": 4185.54, + "G(i)": 948.8, + "H_sun": 65.91, + "T2m": 26.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200716:1210", + "P": 4245.9, + "G(i)": 963.38, + "H_sun": 65.21, + "T2m": 27.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1310", + "P": 4236.84, + "G(i)": 950.84, + "H_sun": 59.15, + "T2m": 27.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200716:1410", + "P": 3857.82, + "G(i)": 853.22, + "H_sun": 50.2, + "T2m": 27.62, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200716:1510", + "P": 3268.56, + "G(i)": 713.55, + "H_sun": 40.03, + "T2m": 28.17, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200716:1610", + "P": 2442.72, + "G(i)": 527.78, + "H_sun": 29.46, + "T2m": 27.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1710", + "P": 1415.16, + "G(i)": 314.98, + "H_sun": 18.94, + "T2m": 27.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200716:1810", + "P": 385.38, + "G(i)": 106.73, + "H_sun": 8.79, + "T2m": 26.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200716:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.37, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200716:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.8, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200716:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.7, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200716:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200716:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.79, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200717:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.96, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200717:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.72, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200717:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200717:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200717:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.72, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200717:0510", + "P": 197.46, + "G(i)": 54.93, + "H_sun": 10.89, + "T2m": 19.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200717:0610", + "P": 527.88, + "G(i)": 152.96, + "H_sun": 21.15, + "T2m": 20.61, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200717:0710", + "P": 1472.34, + "G(i)": 326.41, + "H_sun": 31.72, + "T2m": 23.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200717:0810", + "P": 2507.7, + "G(i)": 535.49, + "H_sun": 42.23, + "T2m": 24.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200717:0910", + "P": 3347.04, + "G(i)": 715.21, + "H_sun": 52.21, + "T2m": 26.19, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200717:1010", + "P": 3924.36, + "G(i)": 850.36, + "H_sun": 60.69, + "T2m": 26.78, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200717:1110", + "P": 3858.0, + "G(i)": 845.03, + "H_sun": 65.74, + "T2m": 27.3, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200717:1210", + "P": 3848.7, + "G(i)": 850.57, + "H_sun": 65.05, + "T2m": 27.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200717:1310", + "P": 4219.08, + "G(i)": 943.05, + "H_sun": 59.02, + "T2m": 28.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200717:1410", + "P": 3740.04, + "G(i)": 823.87, + "H_sun": 50.09, + "T2m": 28.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200717:1510", + "P": 3250.98, + "G(i)": 707.49, + "H_sun": 39.94, + "T2m": 28.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200717:1610", + "P": 2451.18, + "G(i)": 529.46, + "H_sun": 29.37, + "T2m": 28.29, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200717:1710", + "P": 1417.44, + "G(i)": 316.38, + "H_sun": 18.85, + "T2m": 27.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200717:1810", + "P": 419.04, + "G(i)": 116.03, + "H_sun": 8.69, + "T2m": 26.75, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200717:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.97, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200717:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200717:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200717:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.15, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200717:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.85, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.27, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.62, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.21, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200718:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.82, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200718:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.56, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200718:0510", + "P": 153.24, + "G(i)": 45.29, + "H_sun": 10.75, + "T2m": 19.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200718:0610", + "P": 403.38, + "G(i)": 97.04, + "H_sun": 21.02, + "T2m": 19.74, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200718:0710", + "P": 693.18, + "G(i)": 153.54, + "H_sun": 31.59, + "T2m": 18.81, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200718:0810", + "P": 1696.02, + "G(i)": 350.16, + "H_sun": 42.1, + "T2m": 19.4, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200718:0910", + "P": 1667.7, + "G(i)": 346.79, + "H_sun": 52.07, + "T2m": 20.34, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200718:1010", + "P": 3991.86, + "G(i)": 851.05, + "H_sun": 60.53, + "T2m": 21.89, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200718:1110", + "P": 3233.34, + "G(i)": 699.55, + "H_sun": 65.57, + "T2m": 22.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200718:1210", + "P": 3479.52, + "G(i)": 758.38, + "H_sun": 64.89, + "T2m": 24.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200718:1310", + "P": 3321.66, + "G(i)": 726.76, + "H_sun": 58.89, + "T2m": 25.15, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200718:1410", + "P": 3055.56, + "G(i)": 665.96, + "H_sun": 49.98, + "T2m": 25.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200718:1510", + "P": 3131.04, + "G(i)": 678.75, + "H_sun": 39.84, + "T2m": 26.57, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200718:1610", + "P": 2443.98, + "G(i)": 522.82, + "H_sun": 29.28, + "T2m": 26.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200718:1710", + "P": 1458.9, + "G(i)": 321.76, + "H_sun": 18.75, + "T2m": 26.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200718:1810", + "P": 418.86, + "G(i)": 115.57, + "H_sun": 8.58, + "T2m": 25.71, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200718:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.22, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200718:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200718:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200718:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.39, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200718:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.38, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200719:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.83, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200719:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.56, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200719:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200719:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200719:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200719:0510", + "P": 240.12, + "G(i)": 63.6, + "H_sun": 10.61, + "T2m": 18.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200719:0610", + "P": 530.88, + "G(i)": 153.06, + "H_sun": 20.89, + "T2m": 20.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200719:0710", + "P": 1542.12, + "G(i)": 344.34, + "H_sun": 31.46, + "T2m": 22.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200719:0810", + "P": 2565.84, + "G(i)": 545.28, + "H_sun": 41.97, + "T2m": 23.28, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200719:0910", + "P": 3400.92, + "G(i)": 730.09, + "H_sun": 51.93, + "T2m": 24.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200719:1010", + "P": 3844.8, + "G(i)": 845.74, + "H_sun": 60.37, + "T2m": 25.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200719:1110", + "P": 4048.5, + "G(i)": 915.04, + "H_sun": 65.39, + "T2m": 26.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200719:1210", + "P": 4381.68, + "G(i)": 1004.04, + "H_sun": 64.73, + "T2m": 27.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200719:1310", + "P": 4349.4, + "G(i)": 979.06, + "H_sun": 58.76, + "T2m": 28.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200719:1410", + "P": 4016.76, + "G(i)": 886.0, + "H_sun": 49.87, + "T2m": 29.21, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200719:1510", + "P": 3142.38, + "G(i)": 677.69, + "H_sun": 39.73, + "T2m": 29.16, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200719:1610", + "P": 2420.34, + "G(i)": 518.37, + "H_sun": 29.17, + "T2m": 28.97, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200719:1710", + "P": 1487.34, + "G(i)": 329.46, + "H_sun": 18.64, + "T2m": 28.37, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200719:1810", + "P": 424.62, + "G(i)": 118.32, + "H_sun": 8.47, + "T2m": 27.41, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200719:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200719:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200719:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.11, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200719:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.12, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200719:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.23, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200720:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200720:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200720:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200720:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200720:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200720:0510", + "P": 261.84, + "G(i)": 68.42, + "H_sun": 10.48, + "T2m": 19.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200720:0610", + "P": 561.24, + "G(i)": 155.4, + "H_sun": 20.76, + "T2m": 21.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200720:0710", + "P": 1517.52, + "G(i)": 339.39, + "H_sun": 31.33, + "T2m": 22.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200720:0810", + "P": 2508.72, + "G(i)": 537.94, + "H_sun": 41.84, + "T2m": 24.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200720:0910", + "P": 3296.1, + "G(i)": 719.39, + "H_sun": 51.78, + "T2m": 25.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200720:1010", + "P": 3844.62, + "G(i)": 859.98, + "H_sun": 60.2, + "T2m": 27.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200720:1110", + "P": 4027.2, + "G(i)": 910.38, + "H_sun": 65.21, + "T2m": 28.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200720:1210", + "P": 4195.5, + "G(i)": 951.34, + "H_sun": 64.56, + "T2m": 29.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200720:1310", + "P": 3953.04, + "G(i)": 884.25, + "H_sun": 58.61, + "T2m": 30.56, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200720:1410", + "P": 3691.68, + "G(i)": 813.93, + "H_sun": 49.75, + "T2m": 30.93, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200720:1510", + "P": 3064.32, + "G(i)": 664.37, + "H_sun": 39.62, + "T2m": 30.98, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200720:1610", + "P": 2454.42, + "G(i)": 530.23, + "H_sun": 29.07, + "T2m": 30.57, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200720:1710", + "P": 1425.0, + "G(i)": 317.75, + "H_sun": 18.53, + "T2m": 29.78, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200720:1810", + "P": 387.66, + "G(i)": 109.43, + "H_sun": 8.35, + "T2m": 28.67, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200720:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.34, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200720:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.99, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200720:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200720:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.88, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200720:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200721:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200721:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.88, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200721:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.44, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200721:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200721:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200721:0510", + "P": 251.34, + "G(i)": 66.49, + "H_sun": 10.33, + "T2m": 20.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200721:0610", + "P": 651.66, + "G(i)": 153.52, + "H_sun": 20.62, + "T2m": 22.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200721:0710", + "P": 1466.46, + "G(i)": 329.67, + "H_sun": 31.19, + "T2m": 23.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200721:0810", + "P": 2407.62, + "G(i)": 521.67, + "H_sun": 41.7, + "T2m": 25.49, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200721:0910", + "P": 3178.02, + "G(i)": 699.46, + "H_sun": 51.63, + "T2m": 27.16, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200721:1010", + "P": 3771.06, + "G(i)": 850.54, + "H_sun": 60.03, + "T2m": 28.25, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200721:1110", + "P": 4058.4, + "G(i)": 938.33, + "H_sun": 65.02, + "T2m": 29.36, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200721:1210", + "P": 4113.0, + "G(i)": 958.42, + "H_sun": 64.38, + "T2m": 30.44, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200721:1310", + "P": 3936.66, + "G(i)": 899.1, + "H_sun": 58.46, + "T2m": 31.32, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200721:1410", + "P": 3647.52, + "G(i)": 825.94, + "H_sun": 49.62, + "T2m": 31.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200721:1510", + "P": 1701.0, + "G(i)": 374.98, + "H_sun": 39.51, + "T2m": 31.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200721:1610", + "P": 989.1, + "G(i)": 223.57, + "H_sun": 28.95, + "T2m": 31.54, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200721:1710", + "P": 1447.92, + "G(i)": 324.75, + "H_sun": 18.42, + "T2m": 30.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200721:1810", + "P": 418.38, + "G(i)": 119.18, + "H_sun": 8.23, + "T2m": 28.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200721:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.32, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200721:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200721:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200721:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200721:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200722:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200722:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.05, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200722:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200722:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200722:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200722:0510", + "P": 236.52, + "G(i)": 63.6, + "H_sun": 10.19, + "T2m": 21.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200722:0610", + "P": 519.78, + "G(i)": 148.31, + "H_sun": 20.48, + "T2m": 23.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200722:0710", + "P": 1451.34, + "G(i)": 325.09, + "H_sun": 31.06, + "T2m": 24.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200722:0810", + "P": 2412.54, + "G(i)": 522.14, + "H_sun": 41.56, + "T2m": 25.67, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200722:0910", + "P": 3144.78, + "G(i)": 689.61, + "H_sun": 51.48, + "T2m": 27.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200722:1010", + "P": 3777.9, + "G(i)": 851.11, + "H_sun": 59.86, + "T2m": 28.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200722:1110", + "P": 4066.44, + "G(i)": 928.29, + "H_sun": 64.82, + "T2m": 29.65, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200722:1210", + "P": 3918.6, + "G(i)": 897.17, + "H_sun": 64.19, + "T2m": 30.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200722:1310", + "P": 3659.34, + "G(i)": 829.88, + "H_sun": 58.31, + "T2m": 31.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200722:1410", + "P": 3333.18, + "G(i)": 756.34, + "H_sun": 49.49, + "T2m": 31.37, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200722:1510", + "P": 905.22, + "G(i)": 207.47, + "H_sun": 39.38, + "T2m": 31.28, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200722:1610", + "P": 649.56, + "G(i)": 153.67, + "H_sun": 28.83, + "T2m": 31.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200722:1710", + "P": 47.94, + "G(i)": 21.57, + "H_sun": 18.29, + "T2m": 30.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200722:1810", + "P": 15.0, + "G(i)": 11.76, + "H_sun": 8.1, + "T2m": 29.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200722:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200722:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.36, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200722:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.47, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200722:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200722:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200723:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.7, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200723:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.28, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200723:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200723:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200723:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200723:0510", + "P": 242.7, + "G(i)": 64.56, + "H_sun": 10.04, + "T2m": 20.31, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200723:0610", + "P": 561.0, + "G(i)": 131.64, + "H_sun": 20.34, + "T2m": 22.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200723:0710", + "P": 1303.56, + "G(i)": 284.66, + "H_sun": 30.92, + "T2m": 22.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200723:0810", + "P": 2357.94, + "G(i)": 503.85, + "H_sun": 41.41, + "T2m": 24.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200723:0910", + "P": 3284.58, + "G(i)": 716.74, + "H_sun": 51.32, + "T2m": 26.45, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200723:1010", + "P": 3863.04, + "G(i)": 872.57, + "H_sun": 59.68, + "T2m": 27.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200723:1110", + "P": 4139.4, + "G(i)": 958.43, + "H_sun": 64.63, + "T2m": 29.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200723:1210", + "P": 4297.56, + "G(i)": 999.23, + "H_sun": 64.0, + "T2m": 30.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200723:1310", + "P": 4214.94, + "G(i)": 968.09, + "H_sun": 58.14, + "T2m": 31.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200723:1410", + "P": 3817.56, + "G(i)": 869.17, + "H_sun": 49.35, + "T2m": 32.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200723:1510", + "P": 3233.58, + "G(i)": 720.78, + "H_sun": 39.26, + "T2m": 32.34, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200723:1610", + "P": 2359.74, + "G(i)": 515.0, + "H_sun": 28.71, + "T2m": 31.73, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200723:1710", + "P": 1369.14, + "G(i)": 308.02, + "H_sun": 18.17, + "T2m": 30.69, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200723:1810", + "P": 272.88, + "G(i)": 79.37, + "H_sun": 7.96, + "T2m": 29.49, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200723:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200723:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200723:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200723:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.15, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200723:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200724:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.29, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200724:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200724:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200724:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200724:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.68, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200724:0510", + "P": 220.68, + "G(i)": 59.74, + "H_sun": 9.89, + "T2m": 19.64, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200724:0610", + "P": 133.98, + "G(i)": 41.17, + "H_sun": 20.2, + "T2m": 20.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200724:0710", + "P": 895.56, + "G(i)": 194.58, + "H_sun": 30.78, + "T2m": 19.6, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200724:0810", + "P": 504.96, + "G(i)": 117.63, + "H_sun": 41.27, + "T2m": 20.41, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200724:0910", + "P": 665.22, + "G(i)": 149.98, + "H_sun": 51.17, + "T2m": 21.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200724:1010", + "P": 547.14, + "G(i)": 127.43, + "H_sun": 59.5, + "T2m": 22.83, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200724:1110", + "P": 312.6, + "G(i)": 80.38, + "H_sun": 64.42, + "T2m": 24.56, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200724:1210", + "P": 1110.3, + "G(i)": 243.1, + "H_sun": 63.8, + "T2m": 25.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200724:1310", + "P": 3066.24, + "G(i)": 655.94, + "H_sun": 57.98, + "T2m": 26.1, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200724:1410", + "P": 3874.8, + "G(i)": 849.39, + "H_sun": 49.2, + "T2m": 26.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200724:1510", + "P": 3263.22, + "G(i)": 712.97, + "H_sun": 39.12, + "T2m": 27.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200724:1610", + "P": 2450.94, + "G(i)": 530.99, + "H_sun": 28.58, + "T2m": 27.55, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200724:1710", + "P": 1424.28, + "G(i)": 316.52, + "H_sun": 18.03, + "T2m": 27.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200724:1810", + "P": 359.82, + "G(i)": 102.49, + "H_sun": 7.82, + "T2m": 26.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200724:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.46, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200724:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.93, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200724:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200724:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200724:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200725:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.52, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200725:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.08, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200725:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200725:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.86, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200725:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200725:0510", + "P": 206.94, + "G(i)": 56.85, + "H_sun": 9.74, + "T2m": 19.33, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200725:0610", + "P": 472.68, + "G(i)": 141.86, + "H_sun": 20.06, + "T2m": 19.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200725:0710", + "P": 1482.6, + "G(i)": 335.64, + "H_sun": 30.63, + "T2m": 22.76, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200725:0810", + "P": 2479.14, + "G(i)": 535.93, + "H_sun": 41.12, + "T2m": 24.75, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200725:0910", + "P": 3289.98, + "G(i)": 721.95, + "H_sun": 51.0, + "T2m": 26.4, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200725:1010", + "P": 3925.92, + "G(i)": 879.98, + "H_sun": 59.31, + "T2m": 27.91, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200725:1110", + "P": 4243.14, + "G(i)": 962.38, + "H_sun": 64.21, + "T2m": 29.04, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200725:1210", + "P": 4396.5, + "G(i)": 997.61, + "H_sun": 63.6, + "T2m": 29.79, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200725:1310", + "P": 4328.88, + "G(i)": 972.79, + "H_sun": 57.8, + "T2m": 30.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200725:1410", + "P": 3955.92, + "G(i)": 872.91, + "H_sun": 49.05, + "T2m": 30.41, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200725:1510", + "P": 3338.88, + "G(i)": 723.45, + "H_sun": 38.98, + "T2m": 30.31, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200725:1610", + "P": 2459.76, + "G(i)": 527.82, + "H_sun": 28.44, + "T2m": 29.93, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200725:1710", + "P": 1461.54, + "G(i)": 325.55, + "H_sun": 17.89, + "T2m": 29.3, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200725:1810", + "P": 219.48, + "G(i)": 65.12, + "H_sun": 7.67, + "T2m": 28.04, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200725:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200725:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.77, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200725:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.52, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200725:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.43, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200725:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200726:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.2, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200726:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200726:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200726:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.31, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200726:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.0, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200726:0510", + "P": 31.5, + "G(i)": 16.38, + "H_sun": 9.59, + "T2m": 20.95, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200726:0610", + "P": 359.64, + "G(i)": 89.2, + "H_sun": 19.91, + "T2m": 21.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200726:0710", + "P": 1453.26, + "G(i)": 328.85, + "H_sun": 30.49, + "T2m": 23.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200726:0810", + "P": 2292.24, + "G(i)": 491.83, + "H_sun": 40.97, + "T2m": 24.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200726:0910", + "P": 2500.32, + "G(i)": 542.59, + "H_sun": 50.84, + "T2m": 25.88, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200726:1010", + "P": 3817.74, + "G(i)": 861.86, + "H_sun": 59.12, + "T2m": 27.19, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200726:1110", + "P": 4165.32, + "G(i)": 947.3, + "H_sun": 64.0, + "T2m": 28.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200726:1210", + "P": 4297.02, + "G(i)": 975.75, + "H_sun": 63.39, + "T2m": 29.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200726:1310", + "P": 4007.82, + "G(i)": 914.34, + "H_sun": 57.62, + "T2m": 30.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200726:1410", + "P": 3686.22, + "G(i)": 829.83, + "H_sun": 48.89, + "T2m": 30.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200726:1510", + "P": 2580.3, + "G(i)": 564.7, + "H_sun": 38.84, + "T2m": 30.63, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200726:1610", + "P": 1921.26, + "G(i)": 416.64, + "H_sun": 28.3, + "T2m": 30.39, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200726:1710", + "P": 1328.94, + "G(i)": 297.55, + "H_sun": 17.75, + "T2m": 29.53, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200726:1810", + "P": 318.06, + "G(i)": 92.71, + "H_sun": 7.52, + "T2m": 28.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200726:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.39, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200726:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.18, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200726:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200726:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.21, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200726:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200727:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200727:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200727:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200727:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200727:0510", + "P": 212.64, + "G(i)": 58.78, + "H_sun": 9.43, + "T2m": 22.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:0610", + "P": 504.0, + "G(i)": 142.15, + "H_sun": 19.76, + "T2m": 22.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200727:0710", + "P": 1424.76, + "G(i)": 321.6, + "H_sun": 30.34, + "T2m": 23.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200727:0810", + "P": 2426.16, + "G(i)": 516.17, + "H_sun": 40.82, + "T2m": 24.97, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200727:0910", + "P": 3240.54, + "G(i)": 691.95, + "H_sun": 50.67, + "T2m": 25.82, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200727:1010", + "P": 3835.02, + "G(i)": 834.81, + "H_sun": 58.93, + "T2m": 26.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200727:1110", + "P": 4120.5, + "G(i)": 916.38, + "H_sun": 63.78, + "T2m": 27.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200727:1210", + "P": 4131.0, + "G(i)": 931.15, + "H_sun": 63.18, + "T2m": 28.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200727:1310", + "P": 3929.1, + "G(i)": 888.73, + "H_sun": 57.43, + "T2m": 28.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:1410", + "P": 3706.92, + "G(i)": 831.39, + "H_sun": 48.73, + "T2m": 29.86, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200727:1510", + "P": 3093.9, + "G(i)": 681.82, + "H_sun": 38.69, + "T2m": 30.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200727:1610", + "P": 2269.5, + "G(i)": 497.12, + "H_sun": 28.15, + "T2m": 30.75, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200727:1710", + "P": 1275.06, + "G(i)": 289.24, + "H_sun": 17.6, + "T2m": 30.65, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200727:1810", + "P": 295.2, + "G(i)": 87.82, + "H_sun": 7.36, + "T2m": 29.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200727:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200727:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.68, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200727:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200727:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200727:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200728:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200728:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200728:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200728:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.1, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:0510", + "P": 160.2, + "G(i)": 47.22, + "H_sun": 9.27, + "T2m": 21.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:0610", + "P": 560.52, + "G(i)": 147.4, + "H_sun": 19.61, + "T2m": 23.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:0710", + "P": 1381.74, + "G(i)": 313.24, + "H_sun": 30.19, + "T2m": 24.74, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200728:0810", + "P": 2335.26, + "G(i)": 508.55, + "H_sun": 40.66, + "T2m": 26.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200728:0910", + "P": 2925.48, + "G(i)": 643.95, + "H_sun": 50.5, + "T2m": 28.47, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200728:1010", + "P": 2861.1, + "G(i)": 633.51, + "H_sun": 58.73, + "T2m": 29.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:1110", + "P": 4041.78, + "G(i)": 921.85, + "H_sun": 63.55, + "T2m": 31.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:1210", + "P": 3575.28, + "G(i)": 813.02, + "H_sun": 62.95, + "T2m": 32.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200728:1310", + "P": 3883.98, + "G(i)": 904.79, + "H_sun": 57.24, + "T2m": 32.86, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200728:1410", + "P": 3299.94, + "G(i)": 753.46, + "H_sun": 48.56, + "T2m": 33.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200728:1510", + "P": 2867.76, + "G(i)": 638.55, + "H_sun": 38.53, + "T2m": 33.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:1610", + "P": 2056.2, + "G(i)": 455.76, + "H_sun": 28.0, + "T2m": 33.21, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200728:1710", + "P": 997.08, + "G(i)": 230.81, + "H_sun": 17.44, + "T2m": 31.92, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200728:1810", + "P": 1.98, + "G(i)": 6.86, + "H_sun": 7.2, + "T2m": 30.77, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200728:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.01, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200728:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200728:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200728:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200728:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.87, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200729:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.16, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200729:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.24, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200729:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.26, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.95, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200729:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.61, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200729:0510", + "P": 201.66, + "G(i)": 56.85, + "H_sun": 9.11, + "T2m": 24.3, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200729:0610", + "P": 504.24, + "G(i)": 140.87, + "H_sun": 19.46, + "T2m": 24.92, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:0710", + "P": 1377.06, + "G(i)": 313.97, + "H_sun": 30.04, + "T2m": 25.05, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200729:0810", + "P": 2321.94, + "G(i)": 505.14, + "H_sun": 40.51, + "T2m": 26.91, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200729:0910", + "P": 3089.88, + "G(i)": 683.89, + "H_sun": 50.33, + "T2m": 28.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200729:1010", + "P": 3656.82, + "G(i)": 830.35, + "H_sun": 58.53, + "T2m": 30.2, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:1110", + "P": 3674.88, + "G(i)": 844.75, + "H_sun": 63.33, + "T2m": 31.41, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200729:1210", + "P": 3576.42, + "G(i)": 823.55, + "H_sun": 62.73, + "T2m": 32.69, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200729:1310", + "P": 3390.96, + "G(i)": 773.81, + "H_sun": 57.04, + "T2m": 33.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200729:1410", + "P": 3283.38, + "G(i)": 740.19, + "H_sun": 48.38, + "T2m": 33.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200729:1510", + "P": 2517.84, + "G(i)": 559.27, + "H_sun": 38.37, + "T2m": 34.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200729:1610", + "P": 1389.66, + "G(i)": 310.4, + "H_sun": 27.84, + "T2m": 34.05, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200729:1710", + "P": 485.52, + "G(i)": 120.41, + "H_sun": 17.28, + "T2m": 32.94, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200729:1810", + "P": 79.2, + "G(i)": 30.17, + "H_sun": 7.03, + "T2m": 31.49, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200729:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.62, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200729:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200729:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200729:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200729:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200730:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.05, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200730:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.75, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20200730:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.37, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200730:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.27, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200730:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.34, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200730:0510", + "P": 162.6, + "G(i)": 48.18, + "H_sun": 8.95, + "T2m": 23.97, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200730:0610", + "P": 582.54, + "G(i)": 141.49, + "H_sun": 19.3, + "T2m": 25.3, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200730:0710", + "P": 1321.74, + "G(i)": 297.59, + "H_sun": 29.89, + "T2m": 26.6, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200730:0810", + "P": 2287.2, + "G(i)": 493.35, + "H_sun": 40.35, + "T2m": 27.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200730:0910", + "P": 3110.16, + "G(i)": 678.65, + "H_sun": 50.15, + "T2m": 29.53, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200730:1010", + "P": 3563.22, + "G(i)": 802.01, + "H_sun": 58.33, + "T2m": 30.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200730:1110", + "P": 3592.74, + "G(i)": 830.46, + "H_sun": 63.09, + "T2m": 32.13, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200730:1210", + "P": 3511.86, + "G(i)": 807.78, + "H_sun": 62.5, + "T2m": 33.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200730:1310", + "P": 3542.88, + "G(i)": 817.19, + "H_sun": 56.83, + "T2m": 34.04, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200730:1410", + "P": 3208.5, + "G(i)": 736.59, + "H_sun": 48.2, + "T2m": 34.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200730:1510", + "P": 2879.16, + "G(i)": 641.5, + "H_sun": 38.2, + "T2m": 34.75, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200730:1610", + "P": 2089.32, + "G(i)": 463.67, + "H_sun": 27.68, + "T2m": 34.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200730:1710", + "P": 1100.64, + "G(i)": 256.32, + "H_sun": 17.12, + "T2m": 33.69, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200730:1810", + "P": 304.68, + "G(i)": 93.94, + "H_sun": 6.86, + "T2m": 32.96, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200730:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 31.25, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200730:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.82, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200730:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200730:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200730:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.11, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200731:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200731:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.84, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200731:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200731:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.49, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200731:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200731:0510", + "P": 193.2, + "G(i)": 54.93, + "H_sun": 8.79, + "T2m": 24.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200731:0610", + "P": 462.72, + "G(i)": 135.58, + "H_sun": 19.15, + "T2m": 26.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200731:0710", + "P": 1368.78, + "G(i)": 316.88, + "H_sun": 29.73, + "T2m": 26.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200731:0810", + "P": 2334.0, + "G(i)": 512.48, + "H_sun": 40.18, + "T2m": 28.79, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200731:0910", + "P": 3126.6, + "G(i)": 700.82, + "H_sun": 49.97, + "T2m": 30.55, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200731:1010", + "P": 3711.9, + "G(i)": 857.14, + "H_sun": 58.12, + "T2m": 32.1, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200731:1110", + "P": 4015.92, + "G(i)": 938.53, + "H_sun": 62.85, + "T2m": 33.65, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200731:1210", + "P": 4165.02, + "G(i)": 979.12, + "H_sun": 62.26, + "T2m": 35.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200731:1310", + "P": 4069.68, + "G(i)": 954.0, + "H_sun": 56.62, + "T2m": 36.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200731:1410", + "P": 3627.48, + "G(i)": 847.85, + "H_sun": 48.01, + "T2m": 36.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200731:1510", + "P": 3040.2, + "G(i)": 693.72, + "H_sun": 38.03, + "T2m": 37.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200731:1610", + "P": 2232.0, + "G(i)": 499.04, + "H_sun": 27.51, + "T2m": 35.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200731:1710", + "P": 1210.44, + "G(i)": 280.03, + "H_sun": 16.95, + "T2m": 34.52, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200731:1810", + "P": 227.34, + "G(i)": 71.93, + "H_sun": 6.68, + "T2m": 33.53, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200731:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 31.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200731:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200731:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200731:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200731:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.4, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200801:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.07, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200801:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200801:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200801:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200801:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.96, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200801:0510", + "P": 187.26, + "G(i)": 53.96, + "H_sun": 8.62, + "T2m": 25.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200801:0610", + "P": 472.02, + "G(i)": 136.16, + "H_sun": 18.99, + "T2m": 26.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200801:0710", + "P": 1352.82, + "G(i)": 313.92, + "H_sun": 29.57, + "T2m": 27.58, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:0810", + "P": 2321.58, + "G(i)": 511.34, + "H_sun": 40.02, + "T2m": 29.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200801:0910", + "P": 3107.34, + "G(i)": 698.87, + "H_sun": 49.79, + "T2m": 32.05, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:1010", + "P": 3665.76, + "G(i)": 851.11, + "H_sun": 57.91, + "T2m": 33.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200801:1110", + "P": 3999.12, + "G(i)": 936.33, + "H_sun": 62.61, + "T2m": 35.32, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200801:1210", + "P": 4131.42, + "G(i)": 975.73, + "H_sun": 62.01, + "T2m": 36.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200801:1310", + "P": 4021.02, + "G(i)": 950.56, + "H_sun": 56.41, + "T2m": 37.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200801:1410", + "P": 3606.12, + "G(i)": 845.4, + "H_sun": 47.82, + "T2m": 37.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200801:1510", + "P": 2996.28, + "G(i)": 691.34, + "H_sun": 37.85, + "T2m": 37.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:1610", + "P": 2312.7, + "G(i)": 524.87, + "H_sun": 27.34, + "T2m": 37.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200801:1710", + "P": 1033.5, + "G(i)": 243.38, + "H_sun": 16.77, + "T2m": 35.41, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200801:1810", + "P": 0.0, + "G(i)": 5.88, + "H_sun": 6.49, + "T2m": 34.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200801:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 32.32, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200801:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.58, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200801:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.34, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200801:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.15, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200801:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.04, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200802:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.92, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200802:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200802:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200802:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.42, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200802:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200802:0510", + "P": 169.44, + "G(i)": 50.11, + "H_sun": 8.46, + "T2m": 25.79, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200802:0610", + "P": 424.2, + "G(i)": 129.09, + "H_sun": 18.83, + "T2m": 25.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200802:0710", + "P": 1349.34, + "G(i)": 313.81, + "H_sun": 29.42, + "T2m": 27.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200802:0810", + "P": 2344.74, + "G(i)": 511.6, + "H_sun": 39.85, + "T2m": 29.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200802:0910", + "P": 3233.52, + "G(i)": 702.41, + "H_sun": 49.6, + "T2m": 30.96, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200802:1010", + "P": 3841.32, + "G(i)": 847.0, + "H_sun": 57.69, + "T2m": 31.89, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200802:1110", + "P": 3926.7, + "G(i)": 879.87, + "H_sun": 62.36, + "T2m": 32.5, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200802:1210", + "P": 4215.06, + "G(i)": 960.71, + "H_sun": 61.76, + "T2m": 33.03, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200802:1310", + "P": 4089.24, + "G(i)": 935.93, + "H_sun": 56.18, + "T2m": 33.6, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200802:1410", + "P": 3142.8, + "G(i)": 703.15, + "H_sun": 47.62, + "T2m": 33.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200802:1510", + "P": 2395.26, + "G(i)": 531.77, + "H_sun": 37.66, + "T2m": 33.99, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200802:1610", + "P": 100.44, + "G(i)": 35.29, + "H_sun": 27.16, + "T2m": 33.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200802:1710", + "P": 400.14, + "G(i)": 101.23, + "H_sun": 16.59, + "T2m": 30.86, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200802:1810", + "P": 0.0, + "G(i)": 5.88, + "H_sun": 6.3, + "T2m": 28.15, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200802:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200802:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200802:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200802:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.79, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200802:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.36, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200803:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200803:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.98, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200803:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200803:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200803:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.56, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200803:0510", + "P": 18.36, + "G(i)": 12.53, + "H_sun": 8.29, + "T2m": 21.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200803:0610", + "P": 487.32, + "G(i)": 116.21, + "H_sun": 18.67, + "T2m": 21.67, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200803:0710", + "P": 484.56, + "G(i)": 114.69, + "H_sun": 29.26, + "T2m": 22.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200803:0810", + "P": 1265.76, + "G(i)": 271.48, + "H_sun": 39.69, + "T2m": 22.57, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200803:0910", + "P": 1637.46, + "G(i)": 347.82, + "H_sun": 49.42, + "T2m": 22.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200803:1010", + "P": 1362.6, + "G(i)": 292.26, + "H_sun": 57.47, + "T2m": 23.6, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200803:1110", + "P": 751.8, + "G(i)": 169.58, + "H_sun": 62.11, + "T2m": 24.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200803:1210", + "P": 298.32, + "G(i)": 77.44, + "H_sun": 61.51, + "T2m": 24.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200803:1310", + "P": 750.12, + "G(i)": 169.58, + "H_sun": 55.95, + "T2m": 24.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200803:1410", + "P": 1196.52, + "G(i)": 260.97, + "H_sun": 47.42, + "T2m": 24.78, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200803:1510", + "P": 187.86, + "G(i)": 53.91, + "H_sun": 37.47, + "T2m": 24.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200803:1610", + "P": 105.78, + "G(i)": 35.29, + "H_sun": 26.97, + "T2m": 23.95, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200803:1710", + "P": 689.76, + "G(i)": 157.77, + "H_sun": 16.4, + "T2m": 23.65, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200803:1810", + "P": 0.0, + "G(i)": 4.9, + "H_sun": 6.11, + "T2m": 22.9, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200803:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.28, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200803:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.59, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200803:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.35, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200803:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200803:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.32, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200804:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200804:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200804:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200804:0510", + "P": 43.5, + "G(i)": 19.27, + "H_sun": 8.12, + "T2m": 15.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200804:0610", + "P": 356.58, + "G(i)": 119.9, + "H_sun": 18.5, + "T2m": 17.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200804:0710", + "P": 1394.16, + "G(i)": 308.0, + "H_sun": 29.09, + "T2m": 20.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200804:0810", + "P": 1899.06, + "G(i)": 399.91, + "H_sun": 39.52, + "T2m": 22.46, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200804:0910", + "P": 1424.82, + "G(i)": 305.43, + "H_sun": 49.23, + "T2m": 24.18, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200804:1010", + "P": 2466.3, + "G(i)": 529.39, + "H_sun": 57.25, + "T2m": 25.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200804:1110", + "P": 3992.22, + "G(i)": 898.01, + "H_sun": 61.86, + "T2m": 26.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200804:1210", + "P": 4494.78, + "G(i)": 1017.86, + "H_sun": 61.25, + "T2m": 27.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200804:1310", + "P": 4403.28, + "G(i)": 980.11, + "H_sun": 55.72, + "T2m": 28.09, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200804:1410", + "P": 4067.46, + "G(i)": 888.79, + "H_sun": 47.21, + "T2m": 28.32, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200804:1510", + "P": 3426.78, + "G(i)": 732.64, + "H_sun": 37.28, + "T2m": 28.27, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200804:1610", + "P": 2513.4, + "G(i)": 532.39, + "H_sun": 26.78, + "T2m": 27.76, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200804:1710", + "P": 1383.3, + "G(i)": 307.3, + "H_sun": 16.21, + "T2m": 27.0, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200804:1810", + "P": 268.62, + "G(i)": 83.67, + "H_sun": 5.91, + "T2m": 25.68, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200804:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200804:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200804:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.06, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200804:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.42, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200805:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200805:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200805:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.01, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200805:0510", + "P": 150.36, + "G(i)": 44.33, + "H_sun": 7.94, + "T2m": 17.36, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200805:0610", + "P": 380.58, + "G(i)": 122.39, + "H_sun": 18.34, + "T2m": 19.05, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200805:0710", + "P": 1410.78, + "G(i)": 321.72, + "H_sun": 28.93, + "T2m": 21.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200805:0810", + "P": 2490.84, + "G(i)": 530.15, + "H_sun": 39.34, + "T2m": 23.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:0910", + "P": 3361.38, + "G(i)": 723.26, + "H_sun": 49.04, + "T2m": 24.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200805:1010", + "P": 3963.36, + "G(i)": 878.5, + "H_sun": 57.02, + "T2m": 26.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200805:1110", + "P": 4315.02, + "G(i)": 968.73, + "H_sun": 61.6, + "T2m": 27.23, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200805:1210", + "P": 4475.4, + "G(i)": 1004.59, + "H_sun": 60.99, + "T2m": 28.11, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200805:1310", + "P": 4354.26, + "G(i)": 973.44, + "H_sun": 55.48, + "T2m": 28.76, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200805:1410", + "P": 3992.58, + "G(i)": 881.78, + "H_sun": 46.99, + "T2m": 29.2, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200805:1510", + "P": 3356.34, + "G(i)": 726.59, + "H_sun": 37.08, + "T2m": 29.3, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200805:1610", + "P": 2459.46, + "G(i)": 527.26, + "H_sun": 26.59, + "T2m": 28.98, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200805:1710", + "P": 1337.46, + "G(i)": 300.39, + "H_sun": 16.01, + "T2m": 28.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200805:1810", + "P": 220.26, + "G(i)": 72.56, + "H_sun": 5.7, + "T2m": 26.57, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200805:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.26, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200805:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200805:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200805:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200805:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200806:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.25, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200806:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200806:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200806:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.55, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.35, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200806:0510", + "P": 150.12, + "G(i)": 44.33, + "H_sun": 7.77, + "T2m": 17.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200806:0610", + "P": 393.12, + "G(i)": 122.48, + "H_sun": 18.17, + "T2m": 19.32, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200806:0710", + "P": 1386.48, + "G(i)": 316.02, + "H_sun": 28.76, + "T2m": 22.29, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200806:0810", + "P": 2444.04, + "G(i)": 522.37, + "H_sun": 39.17, + "T2m": 24.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200806:0910", + "P": 3296.94, + "G(i)": 715.79, + "H_sun": 48.84, + "T2m": 25.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200806:1010", + "P": 3882.18, + "G(i)": 865.47, + "H_sun": 56.79, + "T2m": 27.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200806:1110", + "P": 4225.62, + "G(i)": 959.26, + "H_sun": 61.33, + "T2m": 28.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200806:1210", + "P": 4370.58, + "G(i)": 1000.8, + "H_sun": 60.72, + "T2m": 29.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200806:1310", + "P": 4234.32, + "G(i)": 963.19, + "H_sun": 55.23, + "T2m": 30.27, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200806:1410", + "P": 3921.66, + "G(i)": 877.95, + "H_sun": 46.77, + "T2m": 30.83, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:1510", + "P": 3285.84, + "G(i)": 722.51, + "H_sun": 36.87, + "T2m": 31.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:1610", + "P": 2397.84, + "G(i)": 521.7, + "H_sun": 26.38, + "T2m": 30.78, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200806:1710", + "P": 1297.08, + "G(i)": 294.88, + "H_sun": 15.81, + "T2m": 30.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200806:1810", + "P": 195.78, + "G(i)": 66.07, + "H_sun": 5.49, + "T2m": 28.67, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200806:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.65, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200806:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.91, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200806:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.38, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200806:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200806:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.46, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200807:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200807:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200807:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.39, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200807:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.6, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:0510", + "P": 142.98, + "G(i)": 43.36, + "H_sun": 7.6, + "T2m": 21.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200807:0610", + "P": 376.02, + "G(i)": 119.55, + "H_sun": 18.01, + "T2m": 21.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:0710", + "P": 1351.5, + "G(i)": 311.64, + "H_sun": 28.6, + "T2m": 24.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200807:0810", + "P": 2403.48, + "G(i)": 518.31, + "H_sun": 38.99, + "T2m": 26.11, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200807:0910", + "P": 3239.46, + "G(i)": 709.24, + "H_sun": 48.64, + "T2m": 27.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200807:1010", + "P": 3825.36, + "G(i)": 862.55, + "H_sun": 56.56, + "T2m": 29.0, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200807:1110", + "P": 4171.32, + "G(i)": 945.18, + "H_sun": 61.06, + "T2m": 30.28, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200807:1210", + "P": 4345.44, + "G(i)": 985.9, + "H_sun": 60.44, + "T2m": 31.27, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200807:1310", + "P": 4226.46, + "G(i)": 954.04, + "H_sun": 54.98, + "T2m": 31.93, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200807:1410", + "P": 3867.12, + "G(i)": 862.73, + "H_sun": 46.54, + "T2m": 32.32, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200807:1510", + "P": 3202.2, + "G(i)": 703.03, + "H_sun": 36.66, + "T2m": 32.33, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200807:1610", + "P": 2327.34, + "G(i)": 506.37, + "H_sun": 26.18, + "T2m": 31.89, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200807:1710", + "P": 1228.56, + "G(i)": 281.05, + "H_sun": 15.6, + "T2m": 31.24, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200807:1810", + "P": 169.56, + "G(i)": 59.25, + "H_sun": 5.28, + "T2m": 29.97, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200807:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.5, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200807:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.95, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200807:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.47, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200807:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.41, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200807:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.66, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200808:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200808:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200808:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200808:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200808:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200808:0510", + "P": 145.92, + "G(i)": 44.33, + "H_sun": 7.42, + "T2m": 23.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200808:0610", + "P": 408.96, + "G(i)": 122.78, + "H_sun": 17.84, + "T2m": 23.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200808:0710", + "P": 1326.42, + "G(i)": 306.88, + "H_sun": 28.43, + "T2m": 25.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200808:0810", + "P": 2356.38, + "G(i)": 510.85, + "H_sun": 38.82, + "T2m": 27.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200808:0910", + "P": 3183.66, + "G(i)": 698.52, + "H_sun": 48.44, + "T2m": 28.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200808:1010", + "P": 3760.14, + "G(i)": 853.57, + "H_sun": 56.32, + "T2m": 29.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200808:1110", + "P": 4059.96, + "G(i)": 942.17, + "H_sun": 60.79, + "T2m": 31.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200808:1210", + "P": 4259.4, + "G(i)": 981.75, + "H_sun": 60.16, + "T2m": 32.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200808:1310", + "P": 4149.12, + "G(i)": 944.23, + "H_sun": 54.72, + "T2m": 33.24, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200808:1410", + "P": 3781.38, + "G(i)": 852.51, + "H_sun": 46.31, + "T2m": 33.49, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200808:1510", + "P": 3100.92, + "G(i)": 688.86, + "H_sun": 36.44, + "T2m": 33.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200808:1610", + "P": 2245.98, + "G(i)": 494.08, + "H_sun": 25.97, + "T2m": 33.33, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200808:1710", + "P": 1136.34, + "G(i)": 262.73, + "H_sun": 15.38, + "T2m": 32.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200808:1810", + "P": 135.84, + "G(i)": 49.2, + "H_sun": 5.05, + "T2m": 30.95, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200808:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.26, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200808:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200808:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200808:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.21, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200808:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200809:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.14, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200809:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200809:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200809:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200809:0510", + "P": 141.0, + "G(i)": 43.36, + "H_sun": 7.24, + "T2m": 23.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200809:0610", + "P": 417.54, + "G(i)": 123.23, + "H_sun": 17.67, + "T2m": 24.41, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200809:0710", + "P": 1314.42, + "G(i)": 307.17, + "H_sun": 28.26, + "T2m": 26.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:0810", + "P": 2331.78, + "G(i)": 510.68, + "H_sun": 38.64, + "T2m": 28.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200809:0910", + "P": 3148.86, + "G(i)": 701.99, + "H_sun": 48.24, + "T2m": 30.02, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200809:1010", + "P": 3730.86, + "G(i)": 853.76, + "H_sun": 56.09, + "T2m": 31.44, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200809:1110", + "P": 4073.94, + "G(i)": 941.43, + "H_sun": 60.51, + "T2m": 32.71, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:1210", + "P": 4217.46, + "G(i)": 988.39, + "H_sun": 59.88, + "T2m": 33.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200809:1310", + "P": 4078.26, + "G(i)": 950.3, + "H_sun": 54.46, + "T2m": 34.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200809:1410", + "P": 3737.7, + "G(i)": 857.67, + "H_sun": 46.07, + "T2m": 34.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200809:1510", + "P": 3124.56, + "G(i)": 702.58, + "H_sun": 36.22, + "T2m": 34.94, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200809:1610", + "P": 2237.28, + "G(i)": 495.63, + "H_sun": 25.75, + "T2m": 34.55, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200809:1710", + "P": 1153.44, + "G(i)": 268.81, + "H_sun": 15.17, + "T2m": 33.72, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200809:1810", + "P": 146.58, + "G(i)": 53.97, + "H_sun": 4.83, + "T2m": 31.71, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200809:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.31, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200809:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.99, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200809:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.85, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200809:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.53, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200809:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200810:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200810:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.87, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200810:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200810:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200810:0510", + "P": 132.66, + "G(i)": 41.44, + "H_sun": 7.06, + "T2m": 23.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200810:0610", + "P": 442.44, + "G(i)": 124.08, + "H_sun": 17.5, + "T2m": 24.25, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200810:0710", + "P": 1273.5, + "G(i)": 294.39, + "H_sun": 28.09, + "T2m": 26.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200810:0810", + "P": 1986.24, + "G(i)": 430.48, + "H_sun": 38.45, + "T2m": 27.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200810:0910", + "P": 2947.74, + "G(i)": 642.33, + "H_sun": 48.03, + "T2m": 29.58, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200810:1010", + "P": 3694.08, + "G(i)": 825.24, + "H_sun": 55.84, + "T2m": 30.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1110", + "P": 4016.94, + "G(i)": 914.94, + "H_sun": 60.23, + "T2m": 32.08, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1210", + "P": 4012.02, + "G(i)": 935.12, + "H_sun": 59.59, + "T2m": 32.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200810:1310", + "P": 3143.1, + "G(i)": 694.89, + "H_sun": 54.19, + "T2m": 30.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1410", + "P": 742.62, + "G(i)": 172.52, + "H_sun": 45.83, + "T2m": 30.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200810:1510", + "P": 258.36, + "G(i)": 70.58, + "H_sun": 35.99, + "T2m": 30.17, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200810:1610", + "P": 94.74, + "G(i)": 33.33, + "H_sun": 25.53, + "T2m": 29.07, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200810:1710", + "P": 615.48, + "G(i)": 146.23, + "H_sun": 14.94, + "T2m": 28.43, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200810:1810", + "P": 141.12, + "G(i)": 51.77, + "H_sun": 4.6, + "T2m": 27.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200810:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200810:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.45, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200810:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.47, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200810:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.07, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200810:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200811:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200811:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.75, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200811:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200811:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.81, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:0510", + "P": 24.48, + "G(i)": 14.45, + "H_sun": 6.88, + "T2m": 22.97, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200811:0610", + "P": 220.08, + "G(i)": 60.78, + "H_sun": 17.32, + "T2m": 24.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200811:0710", + "P": 1266.36, + "G(i)": 296.27, + "H_sun": 27.91, + "T2m": 26.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:0810", + "P": 2242.38, + "G(i)": 490.81, + "H_sun": 38.27, + "T2m": 27.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200811:0910", + "P": 2993.76, + "G(i)": 665.72, + "H_sun": 47.83, + "T2m": 29.43, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200811:1010", + "P": 3583.86, + "G(i)": 818.22, + "H_sun": 55.6, + "T2m": 30.99, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200811:1110", + "P": 3769.86, + "G(i)": 864.17, + "H_sun": 59.95, + "T2m": 32.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200811:1210", + "P": 3968.16, + "G(i)": 909.27, + "H_sun": 59.29, + "T2m": 32.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200811:1310", + "P": 3989.28, + "G(i)": 905.7, + "H_sun": 53.92, + "T2m": 33.28, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200811:1410", + "P": 3634.02, + "G(i)": 810.02, + "H_sun": 45.58, + "T2m": 32.86, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200811:1510", + "P": 2867.58, + "G(i)": 626.03, + "H_sun": 35.76, + "T2m": 30.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200811:1610", + "P": 1325.7, + "G(i)": 292.54, + "H_sun": 25.3, + "T2m": 30.32, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200811:1710", + "P": 1110.96, + "G(i)": 256.1, + "H_sun": 14.71, + "T2m": 30.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200811:1810", + "P": 91.38, + "G(i)": 36.64, + "H_sun": 4.36, + "T2m": 29.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200811:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200811:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.08, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200811:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200811:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200811:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200812:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.54, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200812:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.34, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200812:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.77, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200812:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200812:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200812:0510", + "P": 115.68, + "G(i)": 37.58, + "H_sun": 6.7, + "T2m": 23.78, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200812:0610", + "P": 384.36, + "G(i)": 115.56, + "H_sun": 17.15, + "T2m": 24.01, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200812:0710", + "P": 1251.96, + "G(i)": 291.0, + "H_sun": 27.74, + "T2m": 26.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200812:0810", + "P": 2229.36, + "G(i)": 485.07, + "H_sun": 38.08, + "T2m": 27.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200812:0910", + "P": 3050.34, + "G(i)": 667.32, + "H_sun": 47.61, + "T2m": 28.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200812:1010", + "P": 3656.7, + "G(i)": 816.35, + "H_sun": 55.35, + "T2m": 30.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200812:1110", + "P": 3906.24, + "G(i)": 888.17, + "H_sun": 59.66, + "T2m": 30.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200812:1210", + "P": 4057.44, + "G(i)": 924.32, + "H_sun": 59.0, + "T2m": 31.75, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200812:1310", + "P": 3466.44, + "G(i)": 779.18, + "H_sun": 53.64, + "T2m": 32.12, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200812:1410", + "P": 1014.66, + "G(i)": 231.01, + "H_sun": 45.33, + "T2m": 32.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200812:1510", + "P": 1081.68, + "G(i)": 241.21, + "H_sun": 35.52, + "T2m": 30.09, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200812:1610", + "P": 604.38, + "G(i)": 141.66, + "H_sun": 25.07, + "T2m": 27.58, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200812:1710", + "P": 111.96, + "G(i)": 37.25, + "H_sun": 14.48, + "T2m": 27.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200812:1810", + "P": 6.96, + "G(i)": 8.82, + "H_sun": 4.12, + "T2m": 27.43, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200812:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.14, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200812:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.77, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200812:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200812:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200812:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.5, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.82, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200813:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.94, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200813:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200813:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200813:0510", + "P": 121.8, + "G(i)": 38.54, + "H_sun": 6.52, + "T2m": 20.84, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200813:0610", + "P": 499.8, + "G(i)": 122.66, + "H_sun": 16.97, + "T2m": 21.75, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200813:0710", + "P": 1266.6, + "G(i)": 288.56, + "H_sun": 27.56, + "T2m": 22.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200813:0810", + "P": 2156.7, + "G(i)": 464.49, + "H_sun": 37.9, + "T2m": 24.55, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200813:0910", + "P": 3076.32, + "G(i)": 666.6, + "H_sun": 47.4, + "T2m": 26.06, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200813:1010", + "P": 3716.46, + "G(i)": 819.67, + "H_sun": 55.09, + "T2m": 27.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200813:1110", + "P": 3936.0, + "G(i)": 881.09, + "H_sun": 59.37, + "T2m": 28.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200813:1210", + "P": 4136.64, + "G(i)": 934.65, + "H_sun": 58.69, + "T2m": 29.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200813:1310", + "P": 1845.48, + "G(i)": 404.35, + "H_sun": 53.36, + "T2m": 30.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:1410", + "P": 3340.38, + "G(i)": 738.14, + "H_sun": 45.07, + "T2m": 30.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200813:1510", + "P": 2590.38, + "G(i)": 563.83, + "H_sun": 35.27, + "T2m": 30.05, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200813:1610", + "P": 431.46, + "G(i)": 106.85, + "H_sun": 24.83, + "T2m": 28.82, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200813:1710", + "P": 828.18, + "G(i)": 193.16, + "H_sun": 14.24, + "T2m": 28.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200813:1810", + "P": 26.76, + "G(i)": 16.09, + "H_sun": 3.88, + "T2m": 26.87, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200813:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200813:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200813:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.63, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200813:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200813:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200814:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.63, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200814:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200814:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.42, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200814:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200814:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.43, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200814:0510", + "P": 118.02, + "G(i)": 37.58, + "H_sun": 6.33, + "T2m": 20.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200814:0610", + "P": 342.54, + "G(i)": 109.57, + "H_sun": 16.8, + "T2m": 22.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200814:0710", + "P": 1282.44, + "G(i)": 298.25, + "H_sun": 27.39, + "T2m": 24.2, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200814:0810", + "P": 2322.54, + "G(i)": 505.18, + "H_sun": 37.71, + "T2m": 26.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200814:0910", + "P": 3173.1, + "G(i)": 696.43, + "H_sun": 47.19, + "T2m": 27.63, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200814:1010", + "P": 3747.48, + "G(i)": 845.87, + "H_sun": 54.84, + "T2m": 29.02, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200814:1110", + "P": 4118.52, + "G(i)": 954.47, + "H_sun": 59.07, + "T2m": 29.59, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200814:1210", + "P": 4216.14, + "G(i)": 978.55, + "H_sun": 58.38, + "T2m": 30.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200814:1310", + "P": 4095.36, + "G(i)": 937.89, + "H_sun": 53.07, + "T2m": 31.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200814:1410", + "P": 3722.88, + "G(i)": 833.15, + "H_sun": 44.8, + "T2m": 31.59, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200814:1510", + "P": 3048.96, + "G(i)": 677.91, + "H_sun": 35.03, + "T2m": 31.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200814:1610", + "P": 2171.28, + "G(i)": 474.29, + "H_sun": 24.59, + "T2m": 30.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200814:1710", + "P": 814.98, + "G(i)": 190.94, + "H_sun": 14.0, + "T2m": 29.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200814:1810", + "P": 72.9, + "G(i)": 32.03, + "H_sun": 3.63, + "T2m": 28.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200814:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.14, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200814:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.98, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200814:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200814:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.97, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200814:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200815:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.79, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200815:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200815:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200815:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.06, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200815:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200815:0510", + "P": 104.88, + "G(i)": 34.69, + "H_sun": 6.15, + "T2m": 20.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200815:0610", + "P": 416.52, + "G(i)": 116.97, + "H_sun": 16.62, + "T2m": 21.81, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200815:0710", + "P": 1254.66, + "G(i)": 288.88, + "H_sun": 27.21, + "T2m": 24.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200815:0810", + "P": 2279.76, + "G(i)": 490.24, + "H_sun": 37.51, + "T2m": 25.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200815:0910", + "P": 3132.66, + "G(i)": 680.2, + "H_sun": 46.97, + "T2m": 26.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200815:1010", + "P": 3694.68, + "G(i)": 825.38, + "H_sun": 54.58, + "T2m": 28.11, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200815:1110", + "P": 4073.58, + "G(i)": 936.86, + "H_sun": 58.77, + "T2m": 29.01, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200815:1210", + "P": 4199.1, + "G(i)": 964.76, + "H_sun": 58.07, + "T2m": 29.95, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200815:1310", + "P": 4055.16, + "G(i)": 918.83, + "H_sun": 52.78, + "T2m": 30.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200815:1410", + "P": 3651.96, + "G(i)": 808.14, + "H_sun": 44.53, + "T2m": 31.22, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200815:1510", + "P": 2531.22, + "G(i)": 550.78, + "H_sun": 34.77, + "T2m": 31.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200815:1610", + "P": 2113.86, + "G(i)": 460.24, + "H_sun": 24.34, + "T2m": 30.5, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200815:1710", + "P": 992.7, + "G(i)": 230.31, + "H_sun": 13.75, + "T2m": 29.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200815:1810", + "P": 62.64, + "G(i)": 29.75, + "H_sun": 3.37, + "T2m": 28.48, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200815:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200815:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.48, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200815:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.5, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200815:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.46, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200815:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200816:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.77, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200816:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200816:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.06, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200816:0510", + "P": 104.4, + "G(i)": 34.69, + "H_sun": 5.96, + "T2m": 21.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200816:0610", + "P": 380.22, + "G(i)": 111.22, + "H_sun": 16.44, + "T2m": 21.75, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:0710", + "P": 1161.54, + "G(i)": 257.98, + "H_sun": 27.03, + "T2m": 22.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:0810", + "P": 2087.7, + "G(i)": 443.64, + "H_sun": 37.32, + "T2m": 23.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200816:0910", + "P": 2753.88, + "G(i)": 580.63, + "H_sun": 46.75, + "T2m": 24.16, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200816:1010", + "P": 2603.04, + "G(i)": 553.7, + "H_sun": 54.32, + "T2m": 25.58, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200816:1110", + "P": 2876.76, + "G(i)": 622.33, + "H_sun": 58.47, + "T2m": 27.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:1210", + "P": 3673.92, + "G(i)": 812.2, + "H_sun": 57.76, + "T2m": 27.92, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200816:1310", + "P": 2800.8, + "G(i)": 612.11, + "H_sun": 52.48, + "T2m": 28.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200816:1410", + "P": 228.36, + "G(i)": 63.72, + "H_sun": 44.26, + "T2m": 28.66, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200816:1510", + "P": 149.34, + "G(i)": 46.07, + "H_sun": 34.51, + "T2m": 28.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200816:1610", + "P": 894.84, + "G(i)": 200.51, + "H_sun": 24.09, + "T2m": 27.35, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200816:1710", + "P": 220.2, + "G(i)": 61.5, + "H_sun": 13.5, + "T2m": 26.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:1810", + "P": 23.94, + "G(i)": 14.45, + "H_sun": 3.11, + "T2m": 26.39, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200816:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.86, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200816:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200816:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.59, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200816:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200816:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.92, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200817:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.75, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200817:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.58, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200817:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.17, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200817:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.78, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200817:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200817:0510", + "P": 72.9, + "G(i)": 26.98, + "H_sun": 5.78, + "T2m": 19.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200817:0610", + "P": 397.26, + "G(i)": 96.76, + "H_sun": 16.26, + "T2m": 19.48, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200817:0710", + "P": 1197.66, + "G(i)": 265.92, + "H_sun": 26.85, + "T2m": 20.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200817:0810", + "P": 2270.82, + "G(i)": 478.01, + "H_sun": 37.13, + "T2m": 21.99, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200817:0910", + "P": 3091.62, + "G(i)": 656.66, + "H_sun": 46.52, + "T2m": 23.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200817:1010", + "P": 2778.54, + "G(i)": 592.11, + "H_sun": 54.05, + "T2m": 23.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200817:1110", + "P": 4039.92, + "G(i)": 896.0, + "H_sun": 58.16, + "T2m": 25.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200817:1210", + "P": 3188.94, + "G(i)": 700.84, + "H_sun": 57.44, + "T2m": 26.17, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200817:1310", + "P": 2108.7, + "G(i)": 453.56, + "H_sun": 52.18, + "T2m": 27.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200817:1410", + "P": 1851.78, + "G(i)": 397.31, + "H_sun": 43.98, + "T2m": 27.22, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200817:1510", + "P": 150.6, + "G(i)": 46.07, + "H_sun": 34.25, + "T2m": 27.04, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200817:1610", + "P": 1669.08, + "G(i)": 359.78, + "H_sun": 23.84, + "T2m": 26.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200817:1710", + "P": 986.04, + "G(i)": 227.36, + "H_sun": 13.25, + "T2m": 26.23, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200817:1810", + "P": 17.88, + "G(i)": 12.53, + "H_sun": 2.85, + "T2m": 25.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200817:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.05, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200817:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200817:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200817:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.19, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200817:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200818:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200818:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200818:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200818:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.3, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200818:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.93, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200818:0510", + "P": 93.12, + "G(i)": 31.8, + "H_sun": 5.59, + "T2m": 19.77, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200818:0610", + "P": 284.94, + "G(i)": 98.79, + "H_sun": 16.08, + "T2m": 20.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200818:0710", + "P": 1274.82, + "G(i)": 290.46, + "H_sun": 26.66, + "T2m": 21.4, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200818:0810", + "P": 2347.5, + "G(i)": 491.56, + "H_sun": 36.93, + "T2m": 22.68, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200818:0910", + "P": 3218.52, + "G(i)": 688.76, + "H_sun": 46.3, + "T2m": 24.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200818:1010", + "P": 3750.24, + "G(i)": 836.99, + "H_sun": 53.78, + "T2m": 26.4, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200818:1110", + "P": 4177.44, + "G(i)": 945.55, + "H_sun": 57.85, + "T2m": 27.79, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200818:1210", + "P": 4136.04, + "G(i)": 931.65, + "H_sun": 57.11, + "T2m": 29.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200818:1310", + "P": 4151.76, + "G(i)": 932.6, + "H_sun": 51.87, + "T2m": 29.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200818:1410", + "P": 3761.88, + "G(i)": 837.17, + "H_sun": 43.7, + "T2m": 29.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200818:1510", + "P": 3069.0, + "G(i)": 671.93, + "H_sun": 33.98, + "T2m": 30.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200818:1610", + "P": 2146.68, + "G(i)": 469.66, + "H_sun": 23.58, + "T2m": 29.79, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200818:1710", + "P": 1018.86, + "G(i)": 237.79, + "H_sun": 12.99, + "T2m": 29.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200818:1810", + "P": 11.76, + "G(i)": 10.6, + "H_sun": 2.58, + "T2m": 28.17, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200818:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.04, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200818:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.38, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200818:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200818:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200818:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200819:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200819:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200819:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200819:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.81, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200819:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200819:0510", + "P": 84.54, + "G(i)": 29.87, + "H_sun": 5.4, + "T2m": 20.55, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200819:0610", + "P": 461.7, + "G(i)": 114.61, + "H_sun": 15.9, + "T2m": 21.07, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200819:0710", + "P": 1185.78, + "G(i)": 264.2, + "H_sun": 26.48, + "T2m": 21.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200819:0810", + "P": 2111.46, + "G(i)": 448.27, + "H_sun": 36.73, + "T2m": 22.34, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200819:0910", + "P": 2955.84, + "G(i)": 632.18, + "H_sun": 46.07, + "T2m": 23.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200819:1010", + "P": 3652.8, + "G(i)": 803.37, + "H_sun": 53.51, + "T2m": 25.19, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200819:1110", + "P": 4091.4, + "G(i)": 921.9, + "H_sun": 57.53, + "T2m": 26.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200819:1210", + "P": 4185.36, + "G(i)": 948.88, + "H_sun": 56.78, + "T2m": 27.46, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200819:1310", + "P": 4054.26, + "G(i)": 913.39, + "H_sun": 51.56, + "T2m": 28.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200819:1410", + "P": 3708.18, + "G(i)": 818.25, + "H_sun": 43.41, + "T2m": 28.75, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200819:1510", + "P": 2880.42, + "G(i)": 625.42, + "H_sun": 33.71, + "T2m": 29.12, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200819:1610", + "P": 1847.76, + "G(i)": 401.4, + "H_sun": 23.31, + "T2m": 28.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200819:1710", + "P": 1037.16, + "G(i)": 241.35, + "H_sun": 12.72, + "T2m": 28.54, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200819:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200819:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200819:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.03, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200819:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.8, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200819:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.41, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200819:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.83, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200820:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.39, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200820:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.0, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200820:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200820:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.91, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200820:0510", + "P": 75.72, + "G(i)": 27.94, + "H_sun": 5.21, + "T2m": 22.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:0610", + "P": 396.96, + "G(i)": 110.0, + "H_sun": 15.72, + "T2m": 23.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:0710", + "P": 1204.32, + "G(i)": 280.54, + "H_sun": 26.29, + "T2m": 23.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:0810", + "P": 2245.26, + "G(i)": 483.08, + "H_sun": 36.53, + "T2m": 24.64, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:0910", + "P": 3081.96, + "G(i)": 669.35, + "H_sun": 45.84, + "T2m": 25.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200820:1010", + "P": 3616.2, + "G(i)": 809.45, + "H_sun": 53.24, + "T2m": 27.09, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200820:1110", + "P": 3995.04, + "G(i)": 907.99, + "H_sun": 57.22, + "T2m": 27.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200820:1210", + "P": 4069.44, + "G(i)": 927.8, + "H_sun": 56.45, + "T2m": 29.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200820:1310", + "P": 3970.26, + "G(i)": 903.87, + "H_sun": 51.24, + "T2m": 30.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200820:1410", + "P": 3580.08, + "G(i)": 802.29, + "H_sun": 43.12, + "T2m": 30.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200820:1510", + "P": 2930.58, + "G(i)": 645.27, + "H_sun": 33.44, + "T2m": 30.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:1610", + "P": 2001.54, + "G(i)": 437.48, + "H_sun": 23.04, + "T2m": 30.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200820:1710", + "P": 913.44, + "G(i)": 215.52, + "H_sun": 12.45, + "T2m": 30.24, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200820:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.87, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200820:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.49, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200820:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200820:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.9, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200820:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200820:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200821:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.89, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200821:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.99, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200821:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.27, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.38, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200821:0510", + "P": 72.3, + "G(i)": 26.98, + "H_sun": 5.02, + "T2m": 21.24, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200821:0610", + "P": 354.24, + "G(i)": 103.98, + "H_sun": 15.54, + "T2m": 22.36, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200821:0710", + "P": 1186.08, + "G(i)": 277.43, + "H_sun": 26.11, + "T2m": 25.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200821:0810", + "P": 2229.48, + "G(i)": 478.37, + "H_sun": 36.33, + "T2m": 26.09, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200821:0910", + "P": 3085.2, + "G(i)": 663.01, + "H_sun": 45.61, + "T2m": 27.05, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200821:1010", + "P": 3637.56, + "G(i)": 801.37, + "H_sun": 52.96, + "T2m": 27.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200821:1110", + "P": 3962.7, + "G(i)": 894.4, + "H_sun": 56.89, + "T2m": 28.93, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200821:1210", + "P": 3988.38, + "G(i)": 906.38, + "H_sun": 56.12, + "T2m": 29.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200821:1310", + "P": 3785.7, + "G(i)": 863.69, + "H_sun": 50.92, + "T2m": 30.58, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200821:1410", + "P": 3478.02, + "G(i)": 786.96, + "H_sun": 42.82, + "T2m": 31.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200821:1510", + "P": 2797.86, + "G(i)": 621.59, + "H_sun": 33.15, + "T2m": 31.69, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200821:1610", + "P": 1893.72, + "G(i)": 418.5, + "H_sun": 22.77, + "T2m": 31.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200821:1710", + "P": 842.7, + "G(i)": 201.67, + "H_sun": 12.18, + "T2m": 31.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200821:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.97, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200821:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200821:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.96, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200821:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.8, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200821:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200822:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200822:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200822:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.97, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200822:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200822:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200822:0510", + "P": 67.92, + "G(i)": 26.02, + "H_sun": 4.83, + "T2m": 22.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200822:0610", + "P": 346.02, + "G(i)": 102.55, + "H_sun": 15.35, + "T2m": 22.92, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200822:0710", + "P": 1173.42, + "G(i)": 276.22, + "H_sun": 25.92, + "T2m": 25.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200822:0810", + "P": 2187.9, + "G(i)": 477.0, + "H_sun": 36.12, + "T2m": 27.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200822:0910", + "P": 3017.88, + "G(i)": 661.46, + "H_sun": 45.37, + "T2m": 28.45, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200822:1010", + "P": 3609.66, + "G(i)": 808.22, + "H_sun": 52.68, + "T2m": 29.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200822:1110", + "P": 3996.18, + "G(i)": 913.02, + "H_sun": 56.57, + "T2m": 30.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200822:1210", + "P": 4082.34, + "G(i)": 938.82, + "H_sun": 55.78, + "T2m": 31.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200822:1310", + "P": 3951.24, + "G(i)": 901.93, + "H_sun": 50.6, + "T2m": 32.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200822:1410", + "P": 3556.74, + "G(i)": 800.31, + "H_sun": 42.52, + "T2m": 33.27, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200822:1510", + "P": 2895.78, + "G(i)": 640.54, + "H_sun": 32.87, + "T2m": 33.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200822:1610", + "P": 1967.52, + "G(i)": 434.56, + "H_sun": 22.49, + "T2m": 32.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200822:1710", + "P": 862.8, + "G(i)": 206.7, + "H_sun": 11.9, + "T2m": 31.78, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200822:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 30.29, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200822:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.35, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200822:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.14, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200822:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.13, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200822:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.19, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200822:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200823:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200823:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.62, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200823:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.28, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200823:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.86, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200823:0510", + "P": 48.9, + "G(i)": 21.2, + "H_sun": 4.64, + "T2m": 22.57, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200823:0610", + "P": 411.42, + "G(i)": 103.8, + "H_sun": 15.17, + "T2m": 22.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200823:0710", + "P": 945.3, + "G(i)": 212.39, + "H_sun": 25.73, + "T2m": 24.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200823:0810", + "P": 1638.24, + "G(i)": 353.34, + "H_sun": 35.92, + "T2m": 25.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:0910", + "P": 2160.36, + "G(i)": 463.58, + "H_sun": 45.14, + "T2m": 26.8, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200823:1010", + "P": 1516.56, + "G(i)": 329.75, + "H_sun": 52.4, + "T2m": 28.05, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200823:1110", + "P": 3702.3, + "G(i)": 814.49, + "H_sun": 56.24, + "T2m": 28.8, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200823:1210", + "P": 4086.42, + "G(i)": 913.89, + "H_sun": 55.44, + "T2m": 29.31, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200823:1310", + "P": 3837.96, + "G(i)": 851.92, + "H_sun": 50.27, + "T2m": 29.41, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200823:1410", + "P": 3057.06, + "G(i)": 666.07, + "H_sun": 42.21, + "T2m": 29.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200823:1510", + "P": 2884.32, + "G(i)": 623.07, + "H_sun": 32.58, + "T2m": 29.03, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200823:1610", + "P": 1955.16, + "G(i)": 423.93, + "H_sun": 22.21, + "T2m": 29.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:1710", + "P": 828.42, + "G(i)": 196.5, + "H_sun": 11.62, + "T2m": 28.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200823:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.43, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200823:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200823:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200823:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.44, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200823:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.73, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200823:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.69, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200824:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200824:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.26, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200824:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.85, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200824:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.58, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200824:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.46, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200824:0510", + "P": 18.54, + "G(i)": 12.53, + "H_sun": 4.45, + "T2m": 20.12, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200824:0610", + "P": 333.72, + "G(i)": 83.79, + "H_sun": 14.98, + "T2m": 19.93, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200824:0710", + "P": 556.26, + "G(i)": 128.06, + "H_sun": 25.54, + "T2m": 20.85, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200824:0810", + "P": 842.76, + "G(i)": 185.13, + "H_sun": 35.71, + "T2m": 21.53, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200824:0910", + "P": 2209.14, + "G(i)": 461.03, + "H_sun": 44.9, + "T2m": 23.14, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200824:1010", + "P": 3079.08, + "G(i)": 649.1, + "H_sun": 52.12, + "T2m": 24.18, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200824:1110", + "P": 3303.06, + "G(i)": 707.52, + "H_sun": 55.91, + "T2m": 25.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200824:1210", + "P": 3064.8, + "G(i)": 662.02, + "H_sun": 55.09, + "T2m": 25.79, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200824:1310", + "P": 3607.44, + "G(i)": 792.19, + "H_sun": 49.94, + "T2m": 26.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200824:1410", + "P": 3094.26, + "G(i)": 668.34, + "H_sun": 41.9, + "T2m": 26.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200824:1510", + "P": 2949.18, + "G(i)": 636.4, + "H_sun": 32.29, + "T2m": 26.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200824:1610", + "P": 546.36, + "G(i)": 129.28, + "H_sun": 21.93, + "T2m": 26.25, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200824:1710", + "P": 328.8, + "G(i)": 85.24, + "H_sun": 11.34, + "T2m": 25.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200824:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.96, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200824:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200824:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.39, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200824:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200824:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.36, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200824:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.69, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200825:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.24, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200825:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200825:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200825:0510", + "P": 2.16, + "G(i)": 6.75, + "H_sun": 4.25, + "T2m": 20.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200825:0610", + "P": 414.06, + "G(i)": 105.29, + "H_sun": 14.79, + "T2m": 20.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:0710", + "P": 1147.08, + "G(i)": 258.6, + "H_sun": 25.34, + "T2m": 21.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200825:0810", + "P": 2229.9, + "G(i)": 468.72, + "H_sun": 35.5, + "T2m": 21.63, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200825:0910", + "P": 3075.06, + "G(i)": 645.13, + "H_sun": 44.66, + "T2m": 23.03, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200825:1010", + "P": 3523.5, + "G(i)": 752.45, + "H_sun": 51.83, + "T2m": 24.29, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200825:1110", + "P": 3246.96, + "G(i)": 698.61, + "H_sun": 55.58, + "T2m": 24.96, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200825:1210", + "P": 3212.52, + "G(i)": 700.12, + "H_sun": 54.74, + "T2m": 26.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:1310", + "P": 3751.38, + "G(i)": 822.56, + "H_sun": 49.6, + "T2m": 26.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:1410", + "P": 3272.04, + "G(i)": 712.8, + "H_sun": 41.59, + "T2m": 27.65, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200825:1510", + "P": 2755.08, + "G(i)": 592.42, + "H_sun": 31.99, + "T2m": 27.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:1610", + "P": 1502.52, + "G(i)": 326.14, + "H_sun": 21.64, + "T2m": 27.91, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200825:1710", + "P": 404.22, + "G(i)": 102.58, + "H_sun": 11.05, + "T2m": 27.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200825:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200825:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.85, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200825:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.18, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200825:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.36, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200825:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200826:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.44, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200826:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.16, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200826:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.54, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200826:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.79, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200826:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200826:0510", + "P": 49.74, + "G(i)": 21.2, + "H_sun": 4.06, + "T2m": 19.69, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200826:0610", + "P": 283.44, + "G(i)": 91.18, + "H_sun": 14.6, + "T2m": 20.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200826:0710", + "P": 1163.46, + "G(i)": 271.97, + "H_sun": 25.15, + "T2m": 22.99, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200826:0810", + "P": 1852.38, + "G(i)": 398.68, + "H_sun": 35.29, + "T2m": 24.41, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200826:0910", + "P": 2962.5, + "G(i)": 645.6, + "H_sun": 44.41, + "T2m": 25.95, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200826:1010", + "P": 3439.2, + "G(i)": 765.78, + "H_sun": 51.54, + "T2m": 27.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200826:1110", + "P": 3606.24, + "G(i)": 812.26, + "H_sun": 55.24, + "T2m": 29.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200826:1210", + "P": 3952.32, + "G(i)": 899.24, + "H_sun": 54.39, + "T2m": 30.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200826:1310", + "P": 3402.78, + "G(i)": 759.37, + "H_sun": 49.26, + "T2m": 31.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200826:1410", + "P": 3456.84, + "G(i)": 764.63, + "H_sun": 41.27, + "T2m": 32.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200826:1510", + "P": 2907.36, + "G(i)": 630.7, + "H_sun": 31.69, + "T2m": 31.89, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200826:1610", + "P": 1943.7, + "G(i)": 422.3, + "H_sun": 21.34, + "T2m": 31.22, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200826:1710", + "P": 787.5, + "G(i)": 189.33, + "H_sun": 10.76, + "T2m": 30.05, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200826:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 28.32, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200826:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.09, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200826:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.0, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200826:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.99, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200826:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200826:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200827:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200827:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.64, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200827:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200827:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200827:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200827:0510", + "P": 42.06, + "G(i)": 19.27, + "H_sun": 3.87, + "T2m": 21.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200827:0610", + "P": 270.78, + "G(i)": 88.79, + "H_sun": 14.41, + "T2m": 21.45, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200827:0710", + "P": 1156.38, + "G(i)": 271.63, + "H_sun": 24.96, + "T2m": 22.38, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200827:0810", + "P": 2200.56, + "G(i)": 475.07, + "H_sun": 35.08, + "T2m": 24.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200827:0910", + "P": 3025.5, + "G(i)": 656.0, + "H_sun": 44.17, + "T2m": 26.38, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200827:1010", + "P": 3523.5, + "G(i)": 780.07, + "H_sun": 51.24, + "T2m": 27.96, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200827:1110", + "P": 3244.98, + "G(i)": 720.26, + "H_sun": 54.91, + "T2m": 29.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200827:1210", + "P": 3616.32, + "G(i)": 813.63, + "H_sun": 54.03, + "T2m": 30.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200827:1310", + "P": 3386.88, + "G(i)": 755.85, + "H_sun": 48.92, + "T2m": 31.12, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200827:1410", + "P": 3238.14, + "G(i)": 717.01, + "H_sun": 40.95, + "T2m": 31.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200827:1510", + "P": 2862.66, + "G(i)": 625.75, + "H_sun": 31.38, + "T2m": 31.82, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200827:1610", + "P": 1621.56, + "G(i)": 356.12, + "H_sun": 21.05, + "T2m": 31.52, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200827:1710", + "P": 720.66, + "G(i)": 175.62, + "H_sun": 10.46, + "T2m": 30.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200827:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 29.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200827:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 27.09, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200827:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.39, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200827:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200827:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200827:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.35, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200828:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200828:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.55, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200828:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.0, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200828:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.53, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200828:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.96, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200828:0510", + "P": 38.34, + "G(i)": 18.31, + "H_sun": 3.67, + "T2m": 21.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200828:0610", + "P": 373.02, + "G(i)": 99.87, + "H_sun": 14.22, + "T2m": 21.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200828:0710", + "P": 1068.72, + "G(i)": 242.26, + "H_sun": 24.76, + "T2m": 23.1, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200828:0810", + "P": 1925.82, + "G(i)": 411.19, + "H_sun": 34.86, + "T2m": 23.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200828:0910", + "P": 2735.04, + "G(i)": 582.18, + "H_sun": 43.92, + "T2m": 25.11, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200828:1010", + "P": 2677.44, + "G(i)": 575.35, + "H_sun": 50.95, + "T2m": 26.0, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200828:1110", + "P": 3111.3, + "G(i)": 676.35, + "H_sun": 54.56, + "T2m": 27.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200828:1210", + "P": 3249.78, + "G(i)": 710.07, + "H_sun": 53.67, + "T2m": 28.3, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200828:1310", + "P": 2933.94, + "G(i)": 636.86, + "H_sun": 48.57, + "T2m": 28.92, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200828:1410", + "P": 188.34, + "G(i)": 54.89, + "H_sun": 40.62, + "T2m": 28.82, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200828:1510", + "P": 965.64, + "G(i)": 215.47, + "H_sun": 31.08, + "T2m": 28.26, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200828:1610", + "P": 1135.32, + "G(i)": 248.74, + "H_sun": 20.75, + "T2m": 27.46, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200828:1710", + "P": 120.96, + "G(i)": 39.21, + "H_sun": 10.16, + "T2m": 26.79, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200828:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.13, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200828:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200828:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200828:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200828:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.3, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200828:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.58, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200829:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200829:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200829:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200829:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.67, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200829:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.78, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200829:0510", + "P": 0.0, + "G(i)": 5.78, + "H_sun": 3.48, + "T2m": 20.54, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200829:0610", + "P": 191.46, + "G(i)": 53.91, + "H_sun": 14.03, + "T2m": 21.06, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200829:0710", + "P": 502.14, + "G(i)": 117.29, + "H_sun": 24.56, + "T2m": 20.6, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200829:0810", + "P": 810.12, + "G(i)": 178.28, + "H_sun": 34.65, + "T2m": 20.99, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200829:0910", + "P": 1000.26, + "G(i)": 215.67, + "H_sun": 43.67, + "T2m": 21.0, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200829:1010", + "P": 1361.16, + "G(i)": 286.79, + "H_sun": 50.65, + "T2m": 20.88, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20200829:1110", + "P": 3104.7, + "G(i)": 642.11, + "H_sun": 54.22, + "T2m": 21.07, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200829:1210", + "P": 1516.38, + "G(i)": 317.05, + "H_sun": 53.31, + "T2m": 20.92, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200829:1310", + "P": 812.7, + "G(i)": 178.41, + "H_sun": 48.22, + "T2m": 21.09, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200829:1410", + "P": 838.2, + "G(i)": 183.31, + "H_sun": 40.29, + "T2m": 20.9, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200829:1510", + "P": 1610.22, + "G(i)": 333.73, + "H_sun": 30.76, + "T2m": 20.38, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200829:1610", + "P": 562.5, + "G(i)": 128.9, + "H_sun": 20.45, + "T2m": 19.98, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200829:1710", + "P": 39.96, + "G(i)": 18.62, + "H_sun": 9.86, + "T2m": 19.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200829:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200829:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200829:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200829:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200829:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200829:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200830:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.1, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200830:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200830:0510", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 3.28, + "T2m": 17.16, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200830:0610", + "P": 186.36, + "G(i)": 51.95, + "H_sun": 13.84, + "T2m": 16.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:0710", + "P": 1173.24, + "G(i)": 267.73, + "H_sun": 24.37, + "T2m": 18.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200830:0810", + "P": 2383.08, + "G(i)": 491.84, + "H_sun": 34.43, + "T2m": 18.47, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200830:0910", + "P": 3295.56, + "G(i)": 677.36, + "H_sun": 43.41, + "T2m": 20.05, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200830:1010", + "P": 3934.14, + "G(i)": 831.54, + "H_sun": 50.35, + "T2m": 22.63, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200830:1110", + "P": 4275.0, + "G(i)": 929.17, + "H_sun": 53.87, + "T2m": 24.25, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200830:1210", + "P": 4302.18, + "G(i)": 947.93, + "H_sun": 52.95, + "T2m": 25.28, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200830:1310", + "P": 4136.64, + "G(i)": 907.41, + "H_sun": 47.87, + "T2m": 25.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200830:1410", + "P": 3733.98, + "G(i)": 805.08, + "H_sun": 39.96, + "T2m": 25.22, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200830:1510", + "P": 3004.44, + "G(i)": 622.94, + "H_sun": 30.45, + "T2m": 24.08, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200830:1610", + "P": 2143.92, + "G(i)": 445.96, + "H_sun": 20.14, + "T2m": 23.39, + "WS10m": 3.38, + "Int": 0.0 + }, + { + "time": "20200830:1710", + "P": 560.76, + "G(i)": 135.45, + "H_sun": 9.55, + "T2m": 22.79, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200830:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.62, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200830:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.44, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200830:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.36, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200830:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.38, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200830:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200830:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200831:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200831:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200831:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200831:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200831:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200831:0510", + "P": 16.02, + "G(i)": 11.56, + "H_sun": 3.08, + "T2m": 15.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200831:0610", + "P": 338.58, + "G(i)": 93.33, + "H_sun": 13.65, + "T2m": 15.91, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200831:0710", + "P": 1169.22, + "G(i)": 272.36, + "H_sun": 24.17, + "T2m": 17.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200831:0810", + "P": 1990.5, + "G(i)": 414.38, + "H_sun": 34.21, + "T2m": 19.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200831:0910", + "P": 1925.52, + "G(i)": 399.74, + "H_sun": 43.16, + "T2m": 20.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200831:1010", + "P": 3034.98, + "G(i)": 633.76, + "H_sun": 50.04, + "T2m": 21.53, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200831:1110", + "P": 3289.68, + "G(i)": 690.38, + "H_sun": 53.52, + "T2m": 22.54, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200831:1210", + "P": 4242.72, + "G(i)": 907.72, + "H_sun": 52.58, + "T2m": 23.35, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200831:1310", + "P": 4104.54, + "G(i)": 885.15, + "H_sun": 47.52, + "T2m": 23.97, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200831:1410", + "P": 3582.36, + "G(i)": 766.26, + "H_sun": 39.63, + "T2m": 23.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200831:1510", + "P": 2895.72, + "G(i)": 608.58, + "H_sun": 30.13, + "T2m": 23.4, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200831:1610", + "P": 1703.7, + "G(i)": 361.04, + "H_sun": 19.83, + "T2m": 23.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200831:1710", + "P": 727.02, + "G(i)": 173.49, + "H_sun": 9.25, + "T2m": 22.68, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200831:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200831:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.55, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200831:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.42, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200831:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.39, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200831:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.09, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200831:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.37, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200901:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200901:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.47, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200901:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200901:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.67, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200901:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200901:0510", + "P": 19.2, + "G(i)": 12.53, + "H_sun": 2.88, + "T2m": 15.2, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200901:0610", + "P": 244.86, + "G(i)": 80.83, + "H_sun": 13.45, + "T2m": 15.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200901:0710", + "P": 1169.58, + "G(i)": 270.82, + "H_sun": 23.96, + "T2m": 17.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200901:0810", + "P": 2292.72, + "G(i)": 480.96, + "H_sun": 33.99, + "T2m": 19.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200901:0910", + "P": 3171.9, + "G(i)": 671.55, + "H_sun": 42.9, + "T2m": 21.48, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200901:1010", + "P": 3764.94, + "G(i)": 824.3, + "H_sun": 49.74, + "T2m": 22.98, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200901:1110", + "P": 4122.42, + "G(i)": 926.53, + "H_sun": 53.17, + "T2m": 24.13, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200901:1210", + "P": 4209.42, + "G(i)": 938.46, + "H_sun": 52.21, + "T2m": 24.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200901:1310", + "P": 4094.28, + "G(i)": 896.29, + "H_sun": 47.16, + "T2m": 25.46, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200901:1410", + "P": 3594.96, + "G(i)": 770.28, + "H_sun": 39.29, + "T2m": 25.45, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200901:1510", + "P": 2965.2, + "G(i)": 625.09, + "H_sun": 29.81, + "T2m": 25.12, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200901:1610", + "P": 1912.56, + "G(i)": 404.99, + "H_sun": 19.52, + "T2m": 24.76, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200901:1710", + "P": 700.8, + "G(i)": 168.76, + "H_sun": 8.94, + "T2m": 23.85, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200901:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200901:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.05, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200901:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.15, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200901:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200901:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200901:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200902:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200902:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200902:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200902:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200902:0510", + "P": 7.26, + "G(i)": 8.67, + "H_sun": 2.69, + "T2m": 16.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200902:0610", + "P": 224.04, + "G(i)": 59.9, + "H_sun": 13.26, + "T2m": 16.43, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200902:0710", + "P": 397.8, + "G(i)": 95.08, + "H_sun": 23.76, + "T2m": 17.33, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200902:0810", + "P": 677.58, + "G(i)": 149.98, + "H_sun": 33.76, + "T2m": 17.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200902:0910", + "P": 591.96, + "G(i)": 133.31, + "H_sun": 42.64, + "T2m": 17.74, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200902:1010", + "P": 386.22, + "G(i)": 93.12, + "H_sun": 49.43, + "T2m": 18.48, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200902:1110", + "P": 3710.82, + "G(i)": 773.99, + "H_sun": 52.82, + "T2m": 18.59, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200902:1210", + "P": 3502.2, + "G(i)": 736.26, + "H_sun": 51.84, + "T2m": 19.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200902:1310", + "P": 1596.48, + "G(i)": 335.7, + "H_sun": 46.8, + "T2m": 20.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:1410", + "P": 2693.52, + "G(i)": 563.68, + "H_sun": 38.95, + "T2m": 20.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:1510", + "P": 2138.16, + "G(i)": 446.91, + "H_sun": 29.48, + "T2m": 21.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200902:1610", + "P": 1304.46, + "G(i)": 278.06, + "H_sun": 19.2, + "T2m": 21.5, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200902:1710", + "P": 611.52, + "G(i)": 147.75, + "H_sun": 8.62, + "T2m": 21.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200902:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200902:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.23, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200902:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.57, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200902:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.97, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200902:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200902:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.42, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200903:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.21, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200903:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.31, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200903:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.14, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200903:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.77, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200903:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200903:0510", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 2.49, + "T2m": 16.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200903:0610", + "P": 346.02, + "G(i)": 91.14, + "H_sun": 13.06, + "T2m": 16.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200903:0710", + "P": 1116.3, + "G(i)": 256.77, + "H_sun": 23.56, + "T2m": 18.62, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200903:0810", + "P": 2189.28, + "G(i)": 460.54, + "H_sun": 33.54, + "T2m": 19.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200903:0910", + "P": 3020.4, + "G(i)": 635.17, + "H_sun": 42.38, + "T2m": 20.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200903:1010", + "P": 3583.32, + "G(i)": 769.38, + "H_sun": 49.12, + "T2m": 21.53, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200903:1110", + "P": 3607.68, + "G(i)": 784.01, + "H_sun": 52.46, + "T2m": 22.75, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200903:1210", + "P": 3925.56, + "G(i)": 868.69, + "H_sun": 51.46, + "T2m": 23.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200903:1310", + "P": 3850.14, + "G(i)": 848.79, + "H_sun": 46.43, + "T2m": 24.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200903:1410", + "P": 3539.58, + "G(i)": 770.72, + "H_sun": 38.6, + "T2m": 25.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200903:1510", + "P": 2856.06, + "G(i)": 611.85, + "H_sun": 29.16, + "T2m": 25.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200903:1610", + "P": 1808.64, + "G(i)": 388.6, + "H_sun": 18.88, + "T2m": 25.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200903:1710", + "P": 593.94, + "G(i)": 147.05, + "H_sun": 8.3, + "T2m": 24.65, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200903:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200903:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.1, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200903:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.02, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200903:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200903:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200903:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200904:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.7, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200904:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200904:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200904:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200904:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200904:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200904:0610", + "P": 245.88, + "G(i)": 78.09, + "H_sun": 12.87, + "T2m": 16.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200904:0710", + "P": 1102.38, + "G(i)": 258.12, + "H_sun": 23.35, + "T2m": 19.42, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:0810", + "P": 2161.68, + "G(i)": 460.87, + "H_sun": 33.31, + "T2m": 21.64, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:0910", + "P": 3021.54, + "G(i)": 647.34, + "H_sun": 42.11, + "T2m": 23.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:1010", + "P": 3627.84, + "G(i)": 795.82, + "H_sun": 48.8, + "T2m": 24.76, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200904:1110", + "P": 3971.88, + "G(i)": 887.66, + "H_sun": 52.1, + "T2m": 25.97, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200904:1210", + "P": 4041.3, + "G(i)": 908.17, + "H_sun": 51.08, + "T2m": 27.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200904:1310", + "P": 3870.72, + "G(i)": 865.47, + "H_sun": 46.06, + "T2m": 27.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200904:1410", + "P": 3453.9, + "G(i)": 761.14, + "H_sun": 38.26, + "T2m": 28.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200904:1510", + "P": 2740.98, + "G(i)": 593.5, + "H_sun": 28.83, + "T2m": 28.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200904:1610", + "P": 1709.94, + "G(i)": 371.83, + "H_sun": 18.56, + "T2m": 28.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200904:1710", + "P": 502.08, + "G(i)": 128.05, + "H_sun": 7.99, + "T2m": 27.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200904:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.68, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200904:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.53, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200904:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.14, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200904:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.98, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200904:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200904:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.53, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200905:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200905:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200905:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200905:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200905:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.21, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:0610", + "P": 263.16, + "G(i)": 80.04, + "H_sun": 12.67, + "T2m": 18.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200905:0710", + "P": 1083.54, + "G(i)": 253.48, + "H_sun": 23.15, + "T2m": 20.11, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200905:0810", + "P": 2135.1, + "G(i)": 456.09, + "H_sun": 33.08, + "T2m": 22.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200905:0910", + "P": 2985.84, + "G(i)": 640.85, + "H_sun": 41.85, + "T2m": 24.06, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200905:1010", + "P": 3576.6, + "G(i)": 787.62, + "H_sun": 48.49, + "T2m": 25.42, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200905:1110", + "P": 3908.46, + "G(i)": 872.54, + "H_sun": 51.74, + "T2m": 26.79, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200905:1210", + "P": 4000.44, + "G(i)": 898.67, + "H_sun": 50.71, + "T2m": 27.82, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200905:1310", + "P": 3853.56, + "G(i)": 860.56, + "H_sun": 45.69, + "T2m": 28.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200905:1410", + "P": 3394.74, + "G(i)": 750.67, + "H_sun": 37.91, + "T2m": 28.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:1510", + "P": 2695.98, + "G(i)": 587.83, + "H_sun": 28.49, + "T2m": 28.97, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200905:1610", + "P": 1673.34, + "G(i)": 366.8, + "H_sun": 18.24, + "T2m": 28.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200905:1710", + "P": 482.76, + "G(i)": 124.66, + "H_sun": 7.66, + "T2m": 27.54, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200905:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200905:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200905:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200905:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200905:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200905:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.88, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200906:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.23, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200906:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.66, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200906:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200906:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200906:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200906:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.63, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200906:0610", + "P": 321.66, + "G(i)": 85.51, + "H_sun": 12.47, + "T2m": 19.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200906:0710", + "P": 1026.54, + "G(i)": 235.3, + "H_sun": 22.94, + "T2m": 20.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200906:0810", + "P": 2127.06, + "G(i)": 456.09, + "H_sun": 32.85, + "T2m": 22.19, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200906:0910", + "P": 2911.26, + "G(i)": 623.3, + "H_sun": 41.58, + "T2m": 23.36, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200906:1010", + "P": 3376.74, + "G(i)": 732.65, + "H_sun": 48.17, + "T2m": 24.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200906:1110", + "P": 3586.56, + "G(i)": 780.8, + "H_sun": 51.38, + "T2m": 25.71, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200906:1210", + "P": 3224.22, + "G(i)": 697.22, + "H_sun": 50.32, + "T2m": 26.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200906:1310", + "P": 3405.48, + "G(i)": 736.9, + "H_sun": 45.32, + "T2m": 26.71, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200906:1410", + "P": 2208.96, + "G(i)": 470.13, + "H_sun": 37.55, + "T2m": 26.77, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200906:1510", + "P": 2790.72, + "G(i)": 586.71, + "H_sun": 28.16, + "T2m": 25.63, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200906:1610", + "P": 1681.62, + "G(i)": 358.74, + "H_sun": 17.91, + "T2m": 24.12, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200906:1710", + "P": 510.9, + "G(i)": 129.14, + "H_sun": 7.34, + "T2m": 23.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200906:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200906:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200906:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200906:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200906:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.41, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200906:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.14, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200907:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.6, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200907:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.29, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200907:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.16, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200907:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.71, + "WS10m": 2.83, + "Int": 0.0 + }, + { + "time": "20200907:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.37, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200907:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.97, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200907:0610", + "P": 101.4, + "G(i)": 33.33, + "H_sun": 12.27, + "T2m": 16.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200907:0710", + "P": 181.08, + "G(i)": 50.97, + "H_sun": 22.73, + "T2m": 17.49, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200907:0810", + "P": 578.82, + "G(i)": 131.35, + "H_sun": 32.62, + "T2m": 18.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200907:0910", + "P": 698.4, + "G(i)": 154.88, + "H_sun": 41.31, + "T2m": 18.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200907:1010", + "P": 1221.18, + "G(i)": 259.2, + "H_sun": 47.85, + "T2m": 19.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200907:1110", + "P": 1994.28, + "G(i)": 417.5, + "H_sun": 51.01, + "T2m": 19.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200907:1210", + "P": 2669.58, + "G(i)": 561.12, + "H_sun": 49.94, + "T2m": 20.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200907:1310", + "P": 1816.98, + "G(i)": 379.84, + "H_sun": 44.95, + "T2m": 21.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200907:1410", + "P": 2793.72, + "G(i)": 577.03, + "H_sun": 37.2, + "T2m": 21.34, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200907:1510", + "P": 2487.24, + "G(i)": 511.7, + "H_sun": 27.82, + "T2m": 21.66, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200907:1610", + "P": 1599.24, + "G(i)": 335.74, + "H_sun": 17.58, + "T2m": 21.39, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20200907:1710", + "P": 440.28, + "G(i)": 112.37, + "H_sun": 7.02, + "T2m": 21.04, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200907:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200907:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200907:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.42, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200907:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200907:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200907:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200908:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.32, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200908:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200908:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.14, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200908:0610", + "P": 235.86, + "G(i)": 73.1, + "H_sun": 12.07, + "T2m": 16.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200908:0710", + "P": 1046.88, + "G(i)": 242.22, + "H_sun": 22.52, + "T2m": 18.86, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:0810", + "P": 2037.6, + "G(i)": 427.19, + "H_sun": 32.38, + "T2m": 20.2, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200908:0910", + "P": 3001.86, + "G(i)": 626.18, + "H_sun": 41.04, + "T2m": 21.53, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200908:1010", + "P": 3520.62, + "G(i)": 747.3, + "H_sun": 47.53, + "T2m": 22.51, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200908:1110", + "P": 2908.02, + "G(i)": 616.3, + "H_sun": 50.65, + "T2m": 23.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200908:1210", + "P": 3239.34, + "G(i)": 691.74, + "H_sun": 49.56, + "T2m": 24.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200908:1310", + "P": 3682.56, + "G(i)": 795.76, + "H_sun": 44.57, + "T2m": 24.77, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:1410", + "P": 3328.68, + "G(i)": 714.05, + "H_sun": 36.84, + "T2m": 25.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:1510", + "P": 2701.98, + "G(i)": 572.62, + "H_sun": 27.48, + "T2m": 25.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:1610", + "P": 1619.1, + "G(i)": 348.5, + "H_sun": 17.25, + "T2m": 25.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200908:1710", + "P": 394.5, + "G(i)": 104.51, + "H_sun": 6.69, + "T2m": 24.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200908:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200908:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.44, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200908:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200908:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200908:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.85, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200908:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.32, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200909:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.7, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200909:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.18, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200909:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.82, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200909:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200909:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200909:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200909:0610", + "P": 243.54, + "G(i)": 73.12, + "H_sun": 11.87, + "T2m": 16.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200909:0710", + "P": 1029.18, + "G(i)": 241.02, + "H_sun": 22.31, + "T2m": 19.75, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200909:0810", + "P": 1996.38, + "G(i)": 423.68, + "H_sun": 32.15, + "T2m": 21.75, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200909:0910", + "P": 1247.94, + "G(i)": 268.21, + "H_sun": 40.76, + "T2m": 22.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200909:1010", + "P": 2773.5, + "G(i)": 592.1, + "H_sun": 47.2, + "T2m": 23.62, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1110", + "P": 3598.74, + "G(i)": 785.98, + "H_sun": 50.28, + "T2m": 24.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1210", + "P": 3913.74, + "G(i)": 861.82, + "H_sun": 49.17, + "T2m": 24.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200909:1310", + "P": 3647.64, + "G(i)": 799.28, + "H_sun": 44.2, + "T2m": 25.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1410", + "P": 3078.78, + "G(i)": 664.03, + "H_sun": 36.48, + "T2m": 25.48, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200909:1510", + "P": 1641.48, + "G(i)": 352.15, + "H_sun": 27.14, + "T2m": 25.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200909:1610", + "P": 482.22, + "G(i)": 115.98, + "H_sun": 16.92, + "T2m": 25.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200909:1710", + "P": 300.78, + "G(i)": 82.91, + "H_sun": 6.36, + "T2m": 24.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200909:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200909:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200909:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.65, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200909:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200909:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200909:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200910:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200910:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200910:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200910:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200910:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200910:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200910:0610", + "P": 262.08, + "G(i)": 75.06, + "H_sun": 11.67, + "T2m": 17.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200910:0710", + "P": 989.16, + "G(i)": 228.01, + "H_sun": 22.1, + "T2m": 19.52, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200910:0810", + "P": 1930.5, + "G(i)": 411.26, + "H_sun": 31.91, + "T2m": 21.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200910:0910", + "P": 2830.32, + "G(i)": 605.69, + "H_sun": 40.49, + "T2m": 24.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200910:1010", + "P": 3290.46, + "G(i)": 721.97, + "H_sun": 46.88, + "T2m": 25.33, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200910:1110", + "P": 3557.22, + "G(i)": 791.72, + "H_sun": 49.91, + "T2m": 26.39, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200910:1210", + "P": 3191.94, + "G(i)": 702.82, + "H_sun": 48.78, + "T2m": 27.06, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200910:1310", + "P": 3329.94, + "G(i)": 734.81, + "H_sun": 43.82, + "T2m": 27.48, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200910:1410", + "P": 1954.5, + "G(i)": 424.15, + "H_sun": 36.12, + "T2m": 27.79, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200910:1510", + "P": 428.4, + "G(i)": 105.87, + "H_sun": 26.79, + "T2m": 27.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200910:1610", + "P": 1069.26, + "G(i)": 236.38, + "H_sun": 16.59, + "T2m": 26.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200910:1710", + "P": 338.52, + "G(i)": 92.47, + "H_sun": 6.03, + "T2m": 24.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200910:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.27, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200910:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200910:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.36, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200910:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200910:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.43, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200910:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200911:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.4, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200911:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200911:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200911:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.95, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200911:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200911:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.75, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200911:0610", + "P": 180.3, + "G(i)": 51.02, + "H_sun": 11.47, + "T2m": 17.85, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200911:0710", + "P": 74.82, + "G(i)": 27.45, + "H_sun": 21.88, + "T2m": 19.66, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200911:0810", + "P": 155.82, + "G(i)": 46.07, + "H_sun": 31.67, + "T2m": 20.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200911:0910", + "P": 326.46, + "G(i)": 82.34, + "H_sun": 40.21, + "T2m": 21.8, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200911:1010", + "P": 392.4, + "G(i)": 96.06, + "H_sun": 46.55, + "T2m": 22.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200911:1110", + "P": 661.8, + "G(i)": 150.96, + "H_sun": 49.53, + "T2m": 23.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200911:1210", + "P": 1538.34, + "G(i)": 330.01, + "H_sun": 48.39, + "T2m": 24.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200911:1310", + "P": 2046.78, + "G(i)": 437.76, + "H_sun": 43.43, + "T2m": 25.37, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200911:1410", + "P": 1384.02, + "G(i)": 299.4, + "H_sun": 35.76, + "T2m": 25.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200911:1510", + "P": 2352.72, + "G(i)": 501.91, + "H_sun": 26.45, + "T2m": 26.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200911:1610", + "P": 1039.02, + "G(i)": 229.9, + "H_sun": 16.25, + "T2m": 25.86, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200911:1710", + "P": 249.3, + "G(i)": 72.12, + "H_sun": 5.69, + "T2m": 24.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200911:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.45, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200911:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200911:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.39, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200911:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.09, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200911:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200911:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.91, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200912:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200912:0610", + "P": 220.98, + "G(i)": 67.91, + "H_sun": 11.26, + "T2m": 18.19, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:0710", + "P": 1003.02, + "G(i)": 238.29, + "H_sun": 21.67, + "T2m": 19.75, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:0810", + "P": 2036.76, + "G(i)": 435.64, + "H_sun": 31.43, + "T2m": 22.4, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200912:0910", + "P": 2904.6, + "G(i)": 622.16, + "H_sun": 39.93, + "T2m": 24.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:1010", + "P": 3502.62, + "G(i)": 765.97, + "H_sun": 46.22, + "T2m": 25.57, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:1110", + "P": 3813.0, + "G(i)": 844.16, + "H_sun": 49.16, + "T2m": 26.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:1210", + "P": 3882.66, + "G(i)": 864.95, + "H_sun": 48.0, + "T2m": 27.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:1310", + "P": 3737.88, + "G(i)": 830.67, + "H_sun": 43.05, + "T2m": 27.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200912:1410", + "P": 3287.28, + "G(i)": 716.63, + "H_sun": 35.4, + "T2m": 28.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200912:1510", + "P": 2537.88, + "G(i)": 545.1, + "H_sun": 26.1, + "T2m": 28.13, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200912:1610", + "P": 1460.94, + "G(i)": 320.59, + "H_sun": 15.92, + "T2m": 27.7, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200912:1710", + "P": 226.2, + "G(i)": 67.64, + "H_sun": 5.36, + "T2m": 26.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200912:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200912:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 25.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200912:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200912:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.22, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200912:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200912:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200913:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.26, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200913:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200913:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200913:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.75, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200913:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200913:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200913:0610", + "P": 202.38, + "G(i)": 64.72, + "H_sun": 11.06, + "T2m": 19.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200913:0710", + "P": 990.18, + "G(i)": 234.24, + "H_sun": 21.45, + "T2m": 20.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200913:0810", + "P": 2010.84, + "G(i)": 430.28, + "H_sun": 31.19, + "T2m": 23.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200913:0910", + "P": 2891.94, + "G(i)": 616.47, + "H_sun": 39.64, + "T2m": 25.09, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200913:1010", + "P": 3527.52, + "G(i)": 767.99, + "H_sun": 45.89, + "T2m": 26.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200913:1110", + "P": 3810.84, + "G(i)": 845.4, + "H_sun": 48.78, + "T2m": 27.81, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200913:1210", + "P": 3899.34, + "G(i)": 873.33, + "H_sun": 47.61, + "T2m": 28.65, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200913:1310", + "P": 3729.9, + "G(i)": 831.0, + "H_sun": 42.67, + "T2m": 29.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200913:1410", + "P": 3276.54, + "G(i)": 717.1, + "H_sun": 35.03, + "T2m": 29.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200913:1510", + "P": 2501.22, + "G(i)": 539.75, + "H_sun": 25.75, + "T2m": 29.53, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200913:1610", + "P": 1410.84, + "G(i)": 311.82, + "H_sun": 15.58, + "T2m": 29.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200913:1710", + "P": 196.08, + "G(i)": 61.01, + "H_sun": 5.03, + "T2m": 28.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200913:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200913:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200913:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.83, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200913:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200913:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.88, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200913:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200914:0610", + "P": 238.98, + "G(i)": 68.87, + "H_sun": 10.85, + "T2m": 18.01, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:0710", + "P": 972.9, + "G(i)": 232.07, + "H_sun": 21.23, + "T2m": 21.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200914:0810", + "P": 1650.36, + "G(i)": 355.0, + "H_sun": 30.94, + "T2m": 24.14, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200914:0910", + "P": 2824.38, + "G(i)": 607.67, + "H_sun": 39.36, + "T2m": 26.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200914:1010", + "P": 3139.5, + "G(i)": 684.25, + "H_sun": 45.55, + "T2m": 27.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200914:1110", + "P": 3742.92, + "G(i)": 828.23, + "H_sun": 48.41, + "T2m": 28.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200914:1210", + "P": 3890.04, + "G(i)": 859.84, + "H_sun": 47.21, + "T2m": 28.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200914:1310", + "P": 3736.62, + "G(i)": 817.96, + "H_sun": 42.28, + "T2m": 28.87, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200914:1410", + "P": 3206.28, + "G(i)": 692.17, + "H_sun": 34.66, + "T2m": 28.95, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200914:1510", + "P": 2372.7, + "G(i)": 507.51, + "H_sun": 25.4, + "T2m": 28.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200914:1610", + "P": 334.62, + "G(i)": 86.27, + "H_sun": 15.24, + "T2m": 28.16, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200914:1710", + "P": 31.38, + "G(i)": 16.66, + "H_sun": 4.69, + "T2m": 26.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200914:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200914:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200914:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200914:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200914:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.98, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200914:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200915:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.84, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200915:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200915:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.89, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200915:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.26, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200915:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200915:0610", + "P": 228.48, + "G(i)": 66.53, + "H_sun": 10.65, + "T2m": 17.04, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200915:0710", + "P": 964.38, + "G(i)": 225.83, + "H_sun": 21.01, + "T2m": 20.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:0810", + "P": 1996.26, + "G(i)": 425.3, + "H_sun": 30.7, + "T2m": 22.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:0910", + "P": 2881.56, + "G(i)": 613.46, + "H_sun": 39.07, + "T2m": 24.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200915:1010", + "P": 3474.66, + "G(i)": 761.57, + "H_sun": 45.22, + "T2m": 26.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200915:1110", + "P": 3711.72, + "G(i)": 831.77, + "H_sun": 48.03, + "T2m": 27.11, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200915:1210", + "P": 3829.62, + "G(i)": 863.83, + "H_sun": 46.82, + "T2m": 27.81, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200915:1310", + "P": 3563.28, + "G(i)": 796.29, + "H_sun": 41.89, + "T2m": 28.33, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200915:1410", + "P": 3172.5, + "G(i)": 699.79, + "H_sun": 34.3, + "T2m": 28.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200915:1510", + "P": 2445.0, + "G(i)": 531.63, + "H_sun": 25.05, + "T2m": 28.44, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200915:1610", + "P": 1362.24, + "G(i)": 302.12, + "H_sun": 14.9, + "T2m": 28.09, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200915:1710", + "P": 159.6, + "G(i)": 52.43, + "H_sun": 4.35, + "T2m": 26.97, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200915:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200915:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200915:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.91, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200915:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.22, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200915:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.57, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200915:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200916:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.03, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200916:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200916:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.96, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200916:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.25, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.63, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200916:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200916:0610", + "P": 169.44, + "G(i)": 56.84, + "H_sun": 10.44, + "T2m": 17.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200916:0710", + "P": 972.36, + "G(i)": 236.32, + "H_sun": 20.79, + "T2m": 19.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200916:0810", + "P": 1999.14, + "G(i)": 426.39, + "H_sun": 30.45, + "T2m": 21.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200916:0910", + "P": 2838.54, + "G(i)": 604.67, + "H_sun": 38.78, + "T2m": 24.35, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200916:1010", + "P": 3423.66, + "G(i)": 750.03, + "H_sun": 44.88, + "T2m": 26.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200916:1110", + "P": 3694.98, + "G(i)": 830.6, + "H_sun": 47.65, + "T2m": 27.18, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200916:1210", + "P": 3794.04, + "G(i)": 849.78, + "H_sun": 46.42, + "T2m": 28.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200916:1310", + "P": 3612.0, + "G(i)": 806.43, + "H_sun": 41.51, + "T2m": 28.62, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:1410", + "P": 3093.06, + "G(i)": 679.76, + "H_sun": 33.93, + "T2m": 28.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:1510", + "P": 2240.64, + "G(i)": 488.28, + "H_sun": 24.7, + "T2m": 28.74, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200916:1610", + "P": 1364.16, + "G(i)": 301.54, + "H_sun": 14.55, + "T2m": 27.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200916:1710", + "P": 170.4, + "G(i)": 55.86, + "H_sun": 4.01, + "T2m": 26.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200916:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200916:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.24, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200916:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.4, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200916:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200916:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200916:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200917:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.19, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200917:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200917:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200917:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.99, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200917:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.88, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200917:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200917:0610", + "P": 198.3, + "G(i)": 60.84, + "H_sun": 10.23, + "T2m": 18.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200917:0710", + "P": 950.4, + "G(i)": 227.75, + "H_sun": 20.57, + "T2m": 19.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200917:0810", + "P": 1983.66, + "G(i)": 423.98, + "H_sun": 30.2, + "T2m": 22.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200917:0910", + "P": 2864.58, + "G(i)": 608.46, + "H_sun": 38.49, + "T2m": 24.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200917:1010", + "P": 3478.56, + "G(i)": 755.88, + "H_sun": 44.54, + "T2m": 26.57, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200917:1110", + "P": 3699.96, + "G(i)": 820.67, + "H_sun": 47.27, + "T2m": 27.84, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200917:1210", + "P": 3776.28, + "G(i)": 851.24, + "H_sun": 46.02, + "T2m": 28.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200917:1310", + "P": 3607.26, + "G(i)": 806.61, + "H_sun": 41.12, + "T2m": 29.47, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200917:1410", + "P": 3106.08, + "G(i)": 689.85, + "H_sun": 33.56, + "T2m": 29.66, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200917:1510", + "P": 2317.68, + "G(i)": 507.34, + "H_sun": 24.34, + "T2m": 29.61, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200917:1610", + "P": 1271.88, + "G(i)": 283.71, + "H_sun": 14.21, + "T2m": 28.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200917:1710", + "P": 106.74, + "G(i)": 39.31, + "H_sun": 3.67, + "T2m": 27.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200917:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 26.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200917:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 23.19, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200917:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200917:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200917:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200917:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200918:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200918:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.56, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200918:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.66, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200918:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:0610", + "P": 197.52, + "G(i)": 59.69, + "H_sun": 10.02, + "T2m": 17.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200918:0710", + "P": 936.0, + "G(i)": 223.07, + "H_sun": 20.34, + "T2m": 19.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200918:0810", + "P": 1936.8, + "G(i)": 414.7, + "H_sun": 29.95, + "T2m": 22.53, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200918:0910", + "P": 2842.86, + "G(i)": 605.92, + "H_sun": 38.2, + "T2m": 24.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1010", + "P": 3446.1, + "G(i)": 747.4, + "H_sun": 44.2, + "T2m": 25.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1110", + "P": 3753.36, + "G(i)": 828.07, + "H_sun": 46.89, + "T2m": 26.94, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200918:1210", + "P": 3817.98, + "G(i)": 846.29, + "H_sun": 45.62, + "T2m": 27.66, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1310", + "P": 3668.4, + "G(i)": 807.98, + "H_sun": 40.73, + "T2m": 28.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200918:1410", + "P": 3148.98, + "G(i)": 684.46, + "H_sun": 33.18, + "T2m": 28.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200918:1510", + "P": 2138.94, + "G(i)": 459.15, + "H_sun": 23.99, + "T2m": 28.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200918:1610", + "P": 1250.94, + "G(i)": 277.35, + "H_sun": 13.87, + "T2m": 27.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200918:1710", + "P": 70.86, + "G(i)": 29.36, + "H_sun": 3.33, + "T2m": 26.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200918:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 24.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200918:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.91, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200918:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.6, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200918:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200918:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.83, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200918:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.31, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200919:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.82, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200919:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200919:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200919:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.15, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200919:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200919:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200919:0610", + "P": 179.64, + "G(i)": 50.88, + "H_sun": 9.81, + "T2m": 17.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200919:0710", + "P": 727.8, + "G(i)": 164.76, + "H_sun": 20.12, + "T2m": 19.4, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200919:0810", + "P": 932.94, + "G(i)": 202.28, + "H_sun": 29.7, + "T2m": 20.29, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200919:0910", + "P": 1895.58, + "G(i)": 394.45, + "H_sun": 37.91, + "T2m": 20.9, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200919:1010", + "P": 2616.06, + "G(i)": 543.67, + "H_sun": 43.86, + "T2m": 21.61, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200919:1110", + "P": 3557.64, + "G(i)": 749.88, + "H_sun": 46.51, + "T2m": 22.25, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200919:1210", + "P": 3823.86, + "G(i)": 814.0, + "H_sun": 45.23, + "T2m": 22.76, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200919:1310", + "P": 2774.76, + "G(i)": 581.93, + "H_sun": 40.34, + "T2m": 23.34, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200919:1410", + "P": 2226.24, + "G(i)": 466.74, + "H_sun": 32.81, + "T2m": 23.64, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200919:1510", + "P": 2184.72, + "G(i)": 458.46, + "H_sun": 23.63, + "T2m": 23.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200919:1610", + "P": 498.06, + "G(i)": 118.35, + "H_sun": 13.52, + "T2m": 23.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200919:1710", + "P": 4.38, + "G(i)": 7.71, + "H_sun": 2.99, + "T2m": 22.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200919:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.57, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200919:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200919:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200919:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.67, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200919:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200919:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200920:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.54, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200920:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200920:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.3, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200920:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.85, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200920:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:0610", + "P": 118.32, + "G(i)": 37.25, + "H_sun": 9.6, + "T2m": 17.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200920:0710", + "P": 852.78, + "G(i)": 196.01, + "H_sun": 19.89, + "T2m": 18.25, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200920:0810", + "P": 899.28, + "G(i)": 195.57, + "H_sun": 29.44, + "T2m": 19.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200920:0910", + "P": 1001.94, + "G(i)": 215.92, + "H_sun": 37.61, + "T2m": 20.01, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200920:1010", + "P": 2027.64, + "G(i)": 422.61, + "H_sun": 43.52, + "T2m": 21.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200920:1110", + "P": 3580.14, + "G(i)": 761.8, + "H_sun": 46.12, + "T2m": 21.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:1210", + "P": 2446.38, + "G(i)": 515.66, + "H_sun": 44.83, + "T2m": 22.11, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200920:1310", + "P": 1790.94, + "G(i)": 378.37, + "H_sun": 39.95, + "T2m": 22.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200920:1410", + "P": 1868.82, + "G(i)": 392.94, + "H_sun": 32.44, + "T2m": 22.7, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200920:1510", + "P": 1859.4, + "G(i)": 391.76, + "H_sun": 23.28, + "T2m": 22.6, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200920:1610", + "P": 1325.34, + "G(i)": 285.99, + "H_sun": 13.18, + "T2m": 21.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200920:1710", + "P": 7.02, + "G(i)": 8.67, + "H_sun": 2.65, + "T2m": 20.21, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200920:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200920:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.19, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200920:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.86, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200920:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.4, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200920:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.8, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200920:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200921:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.24, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200921:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200921:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.43, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200921:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200921:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200921:0610", + "P": 10.44, + "G(i)": 9.8, + "H_sun": 9.38, + "T2m": 17.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:0710", + "P": 92.28, + "G(i)": 31.37, + "H_sun": 19.66, + "T2m": 17.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200921:0810", + "P": 126.12, + "G(i)": 39.21, + "H_sun": 29.19, + "T2m": 18.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200921:0910", + "P": 179.34, + "G(i)": 50.97, + "H_sun": 37.32, + "T2m": 19.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:1010", + "P": 215.1, + "G(i)": 58.81, + "H_sun": 43.17, + "T2m": 20.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:1110", + "P": 697.44, + "G(i)": 156.84, + "H_sun": 45.74, + "T2m": 21.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200921:1210", + "P": 1775.52, + "G(i)": 376.4, + "H_sun": 44.43, + "T2m": 22.09, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200921:1310", + "P": 2484.78, + "G(i)": 527.93, + "H_sun": 39.56, + "T2m": 22.57, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200921:1410", + "P": 2297.28, + "G(i)": 484.37, + "H_sun": 32.07, + "T2m": 22.82, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200921:1510", + "P": 1590.54, + "G(i)": 335.4, + "H_sun": 22.92, + "T2m": 22.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:1610", + "P": 1133.16, + "G(i)": 247.82, + "H_sun": 12.84, + "T2m": 22.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 21.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200921:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.15, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200921:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200921:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.4, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200921:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.38, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200921:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200922:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200922:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.33, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200922:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200922:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200922:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.02, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200922:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.08, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200922:0610", + "P": 189.54, + "G(i)": 53.3, + "H_sun": 9.17, + "T2m": 17.4, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200922:0710", + "P": 568.56, + "G(i)": 130.54, + "H_sun": 19.43, + "T2m": 18.25, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200922:0810", + "P": 1517.88, + "G(i)": 319.25, + "H_sun": 28.93, + "T2m": 18.68, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:0910", + "P": 1110.54, + "G(i)": 237.04, + "H_sun": 37.02, + "T2m": 19.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200922:1010", + "P": 779.4, + "G(i)": 172.52, + "H_sun": 42.83, + "T2m": 20.38, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200922:1110", + "P": 1047.78, + "G(i)": 226.71, + "H_sun": 45.35, + "T2m": 21.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200922:1210", + "P": 553.74, + "G(i)": 128.41, + "H_sun": 44.03, + "T2m": 21.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:1310", + "P": 1294.68, + "G(i)": 276.25, + "H_sun": 39.16, + "T2m": 22.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200922:1410", + "P": 1802.1, + "G(i)": 376.98, + "H_sun": 31.69, + "T2m": 21.99, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200922:1510", + "P": 954.0, + "G(i)": 206.78, + "H_sun": 22.56, + "T2m": 21.29, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200922:1610", + "P": 359.4, + "G(i)": 89.0, + "H_sun": 12.49, + "T2m": 20.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200922:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.85, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200922:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200922:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.42, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200922:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.99, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200923:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.12, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.3, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200923:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200923:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.94, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200923:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200923:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200923:0610", + "P": 196.92, + "G(i)": 54.73, + "H_sun": 8.96, + "T2m": 15.71, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200923:0710", + "P": 453.6, + "G(i)": 106.25, + "H_sun": 19.2, + "T2m": 16.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200923:0810", + "P": 1174.8, + "G(i)": 249.37, + "H_sun": 28.67, + "T2m": 17.71, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200923:0910", + "P": 2733.12, + "G(i)": 567.58, + "H_sun": 36.72, + "T2m": 19.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:1010", + "P": 2660.94, + "G(i)": 556.41, + "H_sun": 42.48, + "T2m": 20.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:1110", + "P": 3094.86, + "G(i)": 657.6, + "H_sun": 44.97, + "T2m": 21.81, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200923:1210", + "P": 3399.6, + "G(i)": 726.7, + "H_sun": 43.63, + "T2m": 22.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200923:1310", + "P": 3357.96, + "G(i)": 716.12, + "H_sun": 38.77, + "T2m": 23.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200923:1410", + "P": 3022.92, + "G(i)": 636.72, + "H_sun": 31.32, + "T2m": 23.53, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200923:1510", + "P": 2357.46, + "G(i)": 493.33, + "H_sun": 22.21, + "T2m": 23.5, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200923:1610", + "P": 1150.2, + "G(i)": 252.02, + "H_sun": 12.15, + "T2m": 22.93, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200923:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 22.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200923:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200923:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200923:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200923:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200923:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.62, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200923:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.29, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200924:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200924:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.26, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.47, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200924:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200924:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0610", + "P": 184.5, + "G(i)": 52.0, + "H_sun": 8.74, + "T2m": 16.43, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200924:0710", + "P": 122.34, + "G(i)": 38.23, + "H_sun": 18.97, + "T2m": 17.98, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0810", + "P": 552.3, + "G(i)": 126.45, + "H_sun": 28.41, + "T2m": 19.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200924:0910", + "P": 1424.22, + "G(i)": 298.7, + "H_sun": 36.42, + "T2m": 19.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200924:1010", + "P": 1657.26, + "G(i)": 346.41, + "H_sun": 42.13, + "T2m": 20.15, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:1110", + "P": 1738.02, + "G(i)": 364.5, + "H_sun": 44.58, + "T2m": 21.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:1210", + "P": 3136.26, + "G(i)": 662.9, + "H_sun": 43.23, + "T2m": 21.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200924:1310", + "P": 1490.58, + "G(i)": 316.97, + "H_sun": 38.38, + "T2m": 22.55, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200924:1410", + "P": 163.14, + "G(i)": 48.03, + "H_sun": 30.95, + "T2m": 22.32, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200924:1510", + "P": 537.42, + "G(i)": 125.12, + "H_sun": 21.85, + "T2m": 21.85, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200924:1610", + "P": 19.14, + "G(i)": 12.74, + "H_sun": 11.8, + "T2m": 21.13, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200924:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.91, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200924:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.83, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200924:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.21, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200924:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.15, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200924:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200924:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200924:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.1, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200925:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.5, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200925:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.3, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200925:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200925:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200925:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.67, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200925:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.41, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200925:0610", + "P": 171.84, + "G(i)": 50.34, + "H_sun": 8.52, + "T2m": 14.65, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200925:0710", + "P": 278.1, + "G(i)": 70.58, + "H_sun": 18.74, + "T2m": 15.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200925:0810", + "P": 123.54, + "G(i)": 38.23, + "H_sun": 28.15, + "T2m": 15.98, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200925:0910", + "P": 1456.38, + "G(i)": 302.91, + "H_sun": 36.12, + "T2m": 17.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200925:1010", + "P": 3068.7, + "G(i)": 637.56, + "H_sun": 41.78, + "T2m": 19.05, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200925:1110", + "P": 2363.64, + "G(i)": 485.16, + "H_sun": 44.2, + "T2m": 20.5, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200925:1210", + "P": 495.84, + "G(i)": 115.67, + "H_sun": 42.83, + "T2m": 20.68, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200925:1310", + "P": 3196.32, + "G(i)": 647.67, + "H_sun": 37.99, + "T2m": 20.59, + "WS10m": 4.28, + "Int": 0.0 + }, + { + "time": "20200925:1410", + "P": 2495.4, + "G(i)": 503.54, + "H_sun": 30.57, + "T2m": 19.72, + "WS10m": 3.72, + "Int": 0.0 + }, + { + "time": "20200925:1510", + "P": 1447.92, + "G(i)": 298.8, + "H_sun": 21.5, + "T2m": 19.24, + "WS10m": 2.69, + "Int": 0.0 + }, + { + "time": "20200925:1610", + "P": 774.66, + "G(i)": 171.78, + "H_sun": 11.46, + "T2m": 18.69, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200925:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.58, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200925:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.2, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20200925:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.35, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200925:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200925:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.29, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200925:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.09, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200925:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.79, + "WS10m": 3.59, + "Int": 0.0 + }, + { + "time": "20200926:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200926:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.11, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20200926:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.63, + "WS10m": 3.24, + "Int": 0.0 + }, + { + "time": "20200926:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200926:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 2.97, + "Int": 0.0 + }, + { + "time": "20200926:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 3.03, + "Int": 0.0 + }, + { + "time": "20200926:0610", + "P": 104.88, + "G(i)": 36.78, + "H_sun": 8.31, + "T2m": 11.15, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20200926:0710", + "P": 941.4, + "G(i)": 224.38, + "H_sun": 18.5, + "T2m": 12.58, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20200926:0810", + "P": 2118.78, + "G(i)": 431.4, + "H_sun": 27.88, + "T2m": 15.01, + "WS10m": 3.45, + "Int": 0.0 + }, + { + "time": "20200926:0910", + "P": 3165.66, + "G(i)": 630.15, + "H_sun": 35.81, + "T2m": 16.39, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200926:1010", + "P": 3862.98, + "G(i)": 775.07, + "H_sun": 41.43, + "T2m": 17.32, + "WS10m": 4.21, + "Int": 0.0 + }, + { + "time": "20200926:1110", + "P": 4110.72, + "G(i)": 834.11, + "H_sun": 43.81, + "T2m": 18.13, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20200926:1210", + "P": 4129.56, + "G(i)": 843.21, + "H_sun": 42.43, + "T2m": 18.73, + "WS10m": 3.66, + "Int": 0.0 + }, + { + "time": "20200926:1310", + "P": 4006.38, + "G(i)": 820.24, + "H_sun": 37.6, + "T2m": 18.96, + "WS10m": 3.17, + "Int": 0.0 + }, + { + "time": "20200926:1410", + "P": 3437.64, + "G(i)": 700.21, + "H_sun": 30.2, + "T2m": 19.12, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20200926:1510", + "P": 2474.4, + "G(i)": 502.93, + "H_sun": 21.14, + "T2m": 18.96, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200926:1610", + "P": 1230.78, + "G(i)": 263.49, + "H_sun": 11.11, + "T2m": 18.29, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200926:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20200926:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.02, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200926:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200926:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.6, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200926:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200926:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.3, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200926:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200927:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.5, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200927:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200927:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.93, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200927:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200927:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.27, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200927:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200927:0610", + "P": 100.98, + "G(i)": 34.73, + "H_sun": 8.09, + "T2m": 8.18, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20200927:0710", + "P": 920.76, + "G(i)": 216.78, + "H_sun": 18.27, + "T2m": 8.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200927:0810", + "P": 1731.84, + "G(i)": 354.54, + "H_sun": 27.62, + "T2m": 12.06, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200927:0910", + "P": 2727.72, + "G(i)": 553.88, + "H_sun": 35.51, + "T2m": 13.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200927:1010", + "P": 3591.78, + "G(i)": 738.96, + "H_sun": 41.08, + "T2m": 15.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200927:1110", + "P": 3902.04, + "G(i)": 810.65, + "H_sun": 43.42, + "T2m": 16.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200927:1210", + "P": 3991.32, + "G(i)": 831.09, + "H_sun": 42.03, + "T2m": 17.63, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200927:1310", + "P": 3845.4, + "G(i)": 793.94, + "H_sun": 37.21, + "T2m": 18.2, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200927:1410", + "P": 3294.24, + "G(i)": 669.97, + "H_sun": 29.83, + "T2m": 18.39, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20200927:1510", + "P": 2648.16, + "G(i)": 535.65, + "H_sun": 20.79, + "T2m": 18.1, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20200927:1610", + "P": 1268.04, + "G(i)": 269.81, + "H_sun": 10.77, + "T2m": 17.27, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20200927:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.0, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200927:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.58, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200927:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200927:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.32, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200927:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.33, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20200927:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.67, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200927:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.47, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20200928:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.89, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20200928:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200928:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.16, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20200928:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200928:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200928:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.38, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200928:0610", + "P": 103.14, + "G(i)": 34.2, + "H_sun": 7.87, + "T2m": 6.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200928:0710", + "P": 906.36, + "G(i)": 215.87, + "H_sun": 18.03, + "T2m": 10.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200928:0810", + "P": 2045.1, + "G(i)": 418.7, + "H_sun": 27.35, + "T2m": 13.3, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20200928:0910", + "P": 3018.3, + "G(i)": 614.78, + "H_sun": 35.2, + "T2m": 16.08, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200928:1010", + "P": 3613.62, + "G(i)": 752.79, + "H_sun": 40.73, + "T2m": 18.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200928:1110", + "P": 3865.5, + "G(i)": 822.12, + "H_sun": 43.04, + "T2m": 19.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200928:1210", + "P": 3943.56, + "G(i)": 843.96, + "H_sun": 41.63, + "T2m": 20.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200928:1310", + "P": 3764.76, + "G(i)": 799.78, + "H_sun": 36.82, + "T2m": 21.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200928:1410", + "P": 3245.22, + "G(i)": 678.22, + "H_sun": 29.46, + "T2m": 21.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20200928:1510", + "P": 2313.12, + "G(i)": 478.11, + "H_sun": 20.43, + "T2m": 21.26, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20200928:1610", + "P": 1078.14, + "G(i)": 235.69, + "H_sun": 10.43, + "T2m": 20.43, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200928:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.72, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20200928:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.89, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20200928:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.75, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20200928:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.58, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20200928:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20200928:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.16, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20200928:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200929:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20200929:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.91, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20200929:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200929:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200929:0610", + "P": 119.94, + "G(i)": 37.36, + "H_sun": 7.65, + "T2m": 10.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200929:0710", + "P": 847.5, + "G(i)": 203.66, + "H_sun": 17.79, + "T2m": 12.1, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200929:0810", + "P": 1894.32, + "G(i)": 394.53, + "H_sun": 27.08, + "T2m": 14.88, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200929:0910", + "P": 2773.74, + "G(i)": 575.57, + "H_sun": 34.89, + "T2m": 17.12, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200929:1010", + "P": 3334.32, + "G(i)": 705.54, + "H_sun": 40.38, + "T2m": 18.7, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20200929:1110", + "P": 3597.72, + "G(i)": 769.41, + "H_sun": 42.65, + "T2m": 19.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200929:1210", + "P": 3391.86, + "G(i)": 722.44, + "H_sun": 41.23, + "T2m": 21.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20200929:1310", + "P": 2981.46, + "G(i)": 628.2, + "H_sun": 36.43, + "T2m": 21.85, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200929:1410", + "P": 2392.5, + "G(i)": 498.4, + "H_sun": 29.08, + "T2m": 22.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:1510", + "P": 2067.66, + "G(i)": 431.35, + "H_sun": 20.08, + "T2m": 21.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:1610", + "P": 988.44, + "G(i)": 219.56, + "H_sun": 10.09, + "T2m": 21.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200929:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20200929:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200929:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.8, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200929:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.42, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20200929:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20200929:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200930:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200930:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.3, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200930:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.72, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200930:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:0610", + "P": 145.98, + "G(i)": 42.64, + "H_sun": 7.42, + "T2m": 12.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:0710", + "P": 833.94, + "G(i)": 201.66, + "H_sun": 17.55, + "T2m": 13.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20200930:0810", + "P": 1878.42, + "G(i)": 392.8, + "H_sun": 26.81, + "T2m": 15.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:0910", + "P": 2764.56, + "G(i)": 574.05, + "H_sun": 34.58, + "T2m": 17.24, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200930:1010", + "P": 3372.18, + "G(i)": 712.46, + "H_sun": 40.02, + "T2m": 18.56, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20200930:1110", + "P": 3661.38, + "G(i)": 782.13, + "H_sun": 42.26, + "T2m": 19.79, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:1210", + "P": 3697.8, + "G(i)": 795.21, + "H_sun": 40.83, + "T2m": 20.8, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20200930:1310", + "P": 3446.28, + "G(i)": 737.98, + "H_sun": 36.04, + "T2m": 21.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20200930:1410", + "P": 2742.72, + "G(i)": 575.24, + "H_sun": 28.71, + "T2m": 21.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20200930:1510", + "P": 1519.68, + "G(i)": 320.26, + "H_sun": 19.73, + "T2m": 22.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20200930:1610", + "P": 805.98, + "G(i)": 182.63, + "H_sun": 9.75, + "T2m": 21.49, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200930:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 20.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20200930:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.4, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20200930:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.19, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20200930:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.05, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201001:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201001:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.93, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201001:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201001:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201001:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.97, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:0610", + "P": 96.12, + "G(i)": 31.8, + "H_sun": 7.2, + "T2m": 13.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201001:0710", + "P": 501.06, + "G(i)": 115.67, + "H_sun": 17.31, + "T2m": 15.26, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:0810", + "P": 1393.08, + "G(i)": 291.62, + "H_sun": 26.54, + "T2m": 16.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201001:0910", + "P": 2637.12, + "G(i)": 543.55, + "H_sun": 34.27, + "T2m": 17.34, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201001:1010", + "P": 3341.34, + "G(i)": 698.93, + "H_sun": 39.67, + "T2m": 17.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201001:1110", + "P": 3519.96, + "G(i)": 751.12, + "H_sun": 41.88, + "T2m": 19.17, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201001:1210", + "P": 2640.9, + "G(i)": 550.8, + "H_sun": 40.44, + "T2m": 19.43, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201001:1310", + "P": 1074.6, + "G(i)": 231.16, + "H_sun": 35.65, + "T2m": 20.43, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201001:1410", + "P": 2253.6, + "G(i)": 467.4, + "H_sun": 28.34, + "T2m": 20.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201001:1510", + "P": 537.42, + "G(i)": 124.37, + "H_sun": 19.37, + "T2m": 20.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201001:1610", + "P": 605.34, + "G(i)": 140.45, + "H_sun": 9.41, + "T2m": 20.22, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201001:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 19.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201001:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201001:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201001:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.9, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201001:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201001:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201001:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.76, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.83, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201002:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.89, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201002:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.88, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201002:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201002:0610", + "P": 32.58, + "G(i)": 16.38, + "H_sun": 6.98, + "T2m": 15.69, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201002:0710", + "P": 160.74, + "G(i)": 46.07, + "H_sun": 17.07, + "T2m": 14.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201002:0810", + "P": 216.9, + "G(i)": 57.83, + "H_sun": 26.27, + "T2m": 14.97, + "WS10m": 2.41, + "Int": 0.0 + }, + { + "time": "20201002:0910", + "P": 303.06, + "G(i)": 75.48, + "H_sun": 33.96, + "T2m": 15.59, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20201002:1010", + "P": 306.72, + "G(i)": 76.46, + "H_sun": 39.32, + "T2m": 16.23, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201002:1110", + "P": 349.5, + "G(i)": 85.28, + "H_sun": 41.49, + "T2m": 17.21, + "WS10m": 2.62, + "Int": 0.0 + }, + { + "time": "20201002:1210", + "P": 237.54, + "G(i)": 62.74, + "H_sun": 40.04, + "T2m": 18.03, + "WS10m": 4.97, + "Int": 0.0 + }, + { + "time": "20201002:1310", + "P": 213.48, + "G(i)": 57.83, + "H_sun": 35.26, + "T2m": 18.4, + "WS10m": 5.1, + "Int": 0.0 + }, + { + "time": "20201002:1410", + "P": 217.8, + "G(i)": 58.81, + "H_sun": 27.98, + "T2m": 18.71, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201002:1510", + "P": 122.1, + "G(i)": 38.23, + "H_sun": 19.02, + "T2m": 18.71, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201002:1610", + "P": 131.1, + "G(i)": 40.19, + "H_sun": 9.07, + "T2m": 18.47, + "WS10m": 4.9, + "Int": 0.0 + }, + { + "time": "20201002:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 5.38, + "Int": 0.0 + }, + { + "time": "20201002:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.3, + "WS10m": 6.14, + "Int": 0.0 + }, + { + "time": "20201002:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.7, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201002:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.31, + "WS10m": 3.1, + "Int": 0.0 + }, + { + "time": "20201002:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.02, + "WS10m": 4.48, + "Int": 0.0 + }, + { + "time": "20201002:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.5, + "WS10m": 5.38, + "Int": 0.0 + }, + { + "time": "20201002:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 6.21, + "Int": 0.0 + }, + { + "time": "20201003:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.74, + "WS10m": 6.55, + "Int": 0.0 + }, + { + "time": "20201003:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.81, + "WS10m": 6.28, + "Int": 0.0 + }, + { + "time": "20201003:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.61, + "WS10m": 5.45, + "Int": 0.0 + }, + { + "time": "20201003:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.08, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201003:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.51, + "WS10m": 4.41, + "Int": 0.0 + }, + { + "time": "20201003:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.57, + "WS10m": 4.76, + "Int": 0.0 + }, + { + "time": "20201003:0610", + "P": 116.88, + "G(i)": 36.62, + "H_sun": 6.75, + "T2m": 15.55, + "WS10m": 5.1, + "Int": 0.0 + }, + { + "time": "20201003:0710", + "P": 680.58, + "G(i)": 154.82, + "H_sun": 16.83, + "T2m": 14.64, + "WS10m": 3.93, + "Int": 0.0 + }, + { + "time": "20201003:0810", + "P": 1926.96, + "G(i)": 396.17, + "H_sun": 26.0, + "T2m": 15.81, + "WS10m": 3.52, + "Int": 0.0 + }, + { + "time": "20201003:0910", + "P": 2941.2, + "G(i)": 593.16, + "H_sun": 33.65, + "T2m": 17.39, + "WS10m": 2.9, + "Int": 0.0 + }, + { + "time": "20201003:1010", + "P": 3534.18, + "G(i)": 728.63, + "H_sun": 38.96, + "T2m": 18.41, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201003:1110", + "P": 3873.0, + "G(i)": 811.61, + "H_sun": 41.11, + "T2m": 18.52, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201003:1210", + "P": 3866.82, + "G(i)": 802.02, + "H_sun": 39.64, + "T2m": 18.73, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201003:1310", + "P": 3666.72, + "G(i)": 756.01, + "H_sun": 34.88, + "T2m": 18.83, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201003:1410", + "P": 3103.08, + "G(i)": 636.33, + "H_sun": 27.61, + "T2m": 18.95, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201003:1510", + "P": 2194.08, + "G(i)": 449.21, + "H_sun": 18.67, + "T2m": 18.78, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201003:1610", + "P": 924.6, + "G(i)": 204.76, + "H_sun": 8.74, + "T2m": 18.11, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201003:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.73, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201003:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.91, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201003:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.17, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201003:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.56, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201003:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201003:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201003:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201004:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201004:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201004:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.97, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201004:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201004:0610", + "P": 120.12, + "G(i)": 36.62, + "H_sun": 6.53, + "T2m": 9.94, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201004:0710", + "P": 772.26, + "G(i)": 182.26, + "H_sun": 16.58, + "T2m": 11.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:0810", + "P": 1930.26, + "G(i)": 399.1, + "H_sun": 25.72, + "T2m": 13.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201004:0910", + "P": 2848.5, + "G(i)": 576.89, + "H_sun": 33.34, + "T2m": 14.6, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201004:1010", + "P": 3256.68, + "G(i)": 666.7, + "H_sun": 38.61, + "T2m": 16.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201004:1110", + "P": 3679.26, + "G(i)": 761.93, + "H_sun": 40.72, + "T2m": 17.32, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201004:1210", + "P": 3250.5, + "G(i)": 672.77, + "H_sun": 39.25, + "T2m": 18.49, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201004:1310", + "P": 316.5, + "G(i)": 79.4, + "H_sun": 34.49, + "T2m": 19.22, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201004:1410", + "P": 420.18, + "G(i)": 99.99, + "H_sun": 27.24, + "T2m": 18.71, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201004:1510", + "P": 162.9, + "G(i)": 47.05, + "H_sun": 18.33, + "T2m": 17.48, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201004:1610", + "P": 110.1, + "G(i)": 35.29, + "H_sun": 8.4, + "T2m": 16.38, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201004:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.86, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201004:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.12, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201004:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201004:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201004:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201004:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.63, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201004:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201005:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201005:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201005:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201005:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201005:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201005:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201005:0610", + "P": 107.82, + "G(i)": 33.73, + "H_sun": 6.3, + "T2m": 8.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201005:0710", + "P": 503.04, + "G(i)": 114.24, + "H_sun": 16.34, + "T2m": 10.54, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201005:0810", + "P": 1091.7, + "G(i)": 226.94, + "H_sun": 25.45, + "T2m": 11.89, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201005:0910", + "P": 1731.42, + "G(i)": 351.69, + "H_sun": 33.02, + "T2m": 13.2, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201005:1010", + "P": 1800.24, + "G(i)": 368.0, + "H_sun": 38.26, + "T2m": 14.25, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201005:1110", + "P": 2829.3, + "G(i)": 580.55, + "H_sun": 40.34, + "T2m": 15.21, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201005:1210", + "P": 2544.78, + "G(i)": 524.6, + "H_sun": 38.86, + "T2m": 16.34, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201005:1310", + "P": 2216.34, + "G(i)": 453.79, + "H_sun": 34.11, + "T2m": 16.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201005:1410", + "P": 3145.26, + "G(i)": 646.34, + "H_sun": 26.88, + "T2m": 17.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201005:1510", + "P": 574.44, + "G(i)": 129.89, + "H_sun": 17.98, + "T2m": 17.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201005:1610", + "P": 430.32, + "G(i)": 103.65, + "H_sun": 8.07, + "T2m": 17.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201005:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201005:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201005:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.89, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201005:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201005:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201005:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201005:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.5, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201006:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201006:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201006:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201006:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201006:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201006:0610", + "P": 94.2, + "G(i)": 30.84, + "H_sun": 6.07, + "T2m": 9.31, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201006:0710", + "P": 692.34, + "G(i)": 159.99, + "H_sun": 16.09, + "T2m": 10.49, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201006:0810", + "P": 1377.06, + "G(i)": 284.13, + "H_sun": 25.17, + "T2m": 12.45, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201006:0910", + "P": 1329.78, + "G(i)": 273.58, + "H_sun": 32.71, + "T2m": 14.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:1010", + "P": 2045.94, + "G(i)": 416.54, + "H_sun": 37.9, + "T2m": 15.32, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:1110", + "P": 1733.76, + "G(i)": 356.59, + "H_sun": 39.95, + "T2m": 16.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201006:1210", + "P": 1418.82, + "G(i)": 295.23, + "H_sun": 38.47, + "T2m": 16.99, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201006:1310", + "P": 1441.44, + "G(i)": 299.58, + "H_sun": 33.73, + "T2m": 17.7, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201006:1410", + "P": 954.96, + "G(i)": 203.98, + "H_sun": 26.52, + "T2m": 18.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201006:1510", + "P": 63.42, + "G(i)": 24.51, + "H_sun": 17.64, + "T2m": 18.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201006:1610", + "P": 131.46, + "G(i)": 40.32, + "H_sun": 7.74, + "T2m": 17.32, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201006:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.9, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201006:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.0, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201006:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201006:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.53, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201006:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.54, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201006:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.89, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201006:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201007:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201007:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201007:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201007:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201007:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.86, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201007:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201007:0610", + "P": 111.9, + "G(i)": 34.69, + "H_sun": 5.85, + "T2m": 8.81, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:0710", + "P": 521.76, + "G(i)": 118.39, + "H_sun": 15.84, + "T2m": 10.35, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:0810", + "P": 1316.22, + "G(i)": 273.5, + "H_sun": 24.9, + "T2m": 13.31, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201007:0910", + "P": 1957.56, + "G(i)": 400.46, + "H_sun": 32.39, + "T2m": 15.67, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:1010", + "P": 2201.88, + "G(i)": 452.8, + "H_sun": 37.55, + "T2m": 17.8, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201007:1110", + "P": 3604.26, + "G(i)": 756.31, + "H_sun": 39.57, + "T2m": 19.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201007:1210", + "P": 3674.1, + "G(i)": 776.56, + "H_sun": 38.08, + "T2m": 20.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201007:1310", + "P": 3448.74, + "G(i)": 729.55, + "H_sun": 33.35, + "T2m": 20.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201007:1410", + "P": 2833.32, + "G(i)": 591.88, + "H_sun": 26.16, + "T2m": 20.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201007:1510", + "P": 1713.06, + "G(i)": 358.14, + "H_sun": 17.3, + "T2m": 20.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201007:1610", + "P": 429.78, + "G(i)": 105.28, + "H_sun": 7.41, + "T2m": 19.6, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201007:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.77, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201007:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.55, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201007:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 18.23, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201007:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201007:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201007:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201007:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.29, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201008:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201008:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201008:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201008:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.39, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201008:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201008:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201008:0610", + "P": 94.32, + "G(i)": 30.84, + "H_sun": 5.62, + "T2m": 9.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201008:0710", + "P": 736.74, + "G(i)": 184.07, + "H_sun": 15.59, + "T2m": 11.07, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201008:0810", + "P": 1863.18, + "G(i)": 388.72, + "H_sun": 24.62, + "T2m": 13.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201008:0910", + "P": 2766.48, + "G(i)": 565.65, + "H_sun": 32.08, + "T2m": 16.18, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201008:1010", + "P": 3372.42, + "G(i)": 701.26, + "H_sun": 37.19, + "T2m": 17.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201008:1110", + "P": 3672.18, + "G(i)": 775.96, + "H_sun": 39.19, + "T2m": 19.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201008:1210", + "P": 3632.28, + "G(i)": 769.42, + "H_sun": 37.69, + "T2m": 20.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201008:1310", + "P": 3446.28, + "G(i)": 726.76, + "H_sun": 32.97, + "T2m": 20.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201008:1410", + "P": 2897.22, + "G(i)": 604.56, + "H_sun": 25.8, + "T2m": 20.95, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201008:1510", + "P": 1880.16, + "G(i)": 392.95, + "H_sun": 16.96, + "T2m": 20.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201008:1610", + "P": 647.34, + "G(i)": 151.37, + "H_sun": 7.08, + "T2m": 19.99, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201008:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.8, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201008:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201008:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.89, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201008:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201008:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.18, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201008:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201008:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.51, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201009:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201009:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.94, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.58, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0610", + "P": 55.98, + "G(i)": 22.16, + "H_sun": 5.39, + "T2m": 11.84, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:0710", + "P": 653.28, + "G(i)": 152.89, + "H_sun": 15.34, + "T2m": 10.85, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201009:0810", + "P": 1376.94, + "G(i)": 285.87, + "H_sun": 24.34, + "T2m": 12.69, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201009:0910", + "P": 1346.28, + "G(i)": 277.96, + "H_sun": 31.76, + "T2m": 14.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201009:1010", + "P": 1909.2, + "G(i)": 390.99, + "H_sun": 36.84, + "T2m": 16.09, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:1110", + "P": 2907.78, + "G(i)": 600.64, + "H_sun": 38.81, + "T2m": 17.13, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201009:1210", + "P": 2567.46, + "G(i)": 528.93, + "H_sun": 37.3, + "T2m": 17.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201009:1310", + "P": 1846.08, + "G(i)": 380.42, + "H_sun": 32.6, + "T2m": 18.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201009:1410", + "P": 739.38, + "G(i)": 162.9, + "H_sun": 25.44, + "T2m": 18.44, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201009:1510", + "P": 547.02, + "G(i)": 124.91, + "H_sun": 16.62, + "T2m": 18.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201009:1610", + "P": 115.02, + "G(i)": 36.73, + "H_sun": 6.76, + "T2m": 17.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201009:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201009:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201009:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201009:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201009:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.07, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201009:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201009:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201010:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.55, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.23, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201010:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201010:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201010:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.87, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:0610", + "P": 84.6, + "G(i)": 28.91, + "H_sun": 5.15, + "T2m": 11.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201010:0710", + "P": 530.94, + "G(i)": 122.36, + "H_sun": 15.09, + "T2m": 11.55, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201010:0810", + "P": 951.48, + "G(i)": 201.92, + "H_sun": 24.06, + "T2m": 14.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201010:0910", + "P": 969.66, + "G(i)": 206.17, + "H_sun": 31.45, + "T2m": 15.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201010:1010", + "P": 2217.18, + "G(i)": 457.63, + "H_sun": 36.49, + "T2m": 17.22, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201010:1110", + "P": 3123.0, + "G(i)": 654.86, + "H_sun": 38.43, + "T2m": 18.36, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201010:1210", + "P": 3237.36, + "G(i)": 680.99, + "H_sun": 36.91, + "T2m": 19.11, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201010:1310", + "P": 1783.32, + "G(i)": 371.08, + "H_sun": 32.22, + "T2m": 19.78, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201010:1410", + "P": 1185.66, + "G(i)": 251.08, + "H_sun": 25.09, + "T2m": 19.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201010:1510", + "P": 1104.72, + "G(i)": 235.0, + "H_sun": 16.28, + "T2m": 19.69, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201010:1610", + "P": 154.26, + "G(i)": 46.05, + "H_sun": 6.44, + "T2m": 18.93, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201010:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.54, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201010:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201010:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.07, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201010:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201010:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.84, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201010:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201010:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201011:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201011:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201011:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.43, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201011:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.8, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201011:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201011:0610", + "P": 72.66, + "G(i)": 26.02, + "H_sun": 4.92, + "T2m": 10.42, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:0710", + "P": 696.48, + "G(i)": 176.09, + "H_sun": 14.84, + "T2m": 10.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201011:0810", + "P": 1800.84, + "G(i)": 373.75, + "H_sun": 23.78, + "T2m": 12.52, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201011:0910", + "P": 2567.52, + "G(i)": 517.56, + "H_sun": 31.13, + "T2m": 13.82, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:1010", + "P": 2463.06, + "G(i)": 496.79, + "H_sun": 36.14, + "T2m": 14.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201011:1110", + "P": 3017.1, + "G(i)": 611.91, + "H_sun": 38.05, + "T2m": 15.87, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201011:1210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.17, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201011:1310", + "P": 3248.52, + "G(i)": 656.78, + "H_sun": 31.85, + "T2m": 16.21, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201011:1410", + "P": 2588.04, + "G(i)": 518.2, + "H_sun": 24.74, + "T2m": 15.97, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201011:1510", + "P": 1587.96, + "G(i)": 323.05, + "H_sun": 15.95, + "T2m": 15.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201011:1610", + "P": 104.76, + "G(i)": 34.07, + "H_sun": 6.12, + "T2m": 14.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201011:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.62, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201011:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201011:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201011:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.83, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201011:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.08, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201011:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.72, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201011:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201012:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201012:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.92, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201012:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.19, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201012:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.7, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201012:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201012:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201012:0610", + "P": 78.78, + "G(i)": 26.98, + "H_sun": 4.69, + "T2m": 5.67, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201012:0710", + "P": 632.58, + "G(i)": 145.62, + "H_sun": 14.59, + "T2m": 7.71, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201012:0810", + "P": 1217.58, + "G(i)": 250.19, + "H_sun": 23.5, + "T2m": 9.59, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201012:0910", + "P": 2717.34, + "G(i)": 548.8, + "H_sun": 30.81, + "T2m": 12.19, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1010", + "P": 3436.32, + "G(i)": 700.09, + "H_sun": 35.78, + "T2m": 14.26, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201012:1110", + "P": 3749.88, + "G(i)": 773.93, + "H_sun": 37.68, + "T2m": 15.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201012:1210", + "P": 3654.36, + "G(i)": 760.81, + "H_sun": 36.15, + "T2m": 16.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201012:1310", + "P": 3430.5, + "G(i)": 715.11, + "H_sun": 31.48, + "T2m": 17.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1410", + "P": 2871.6, + "G(i)": 591.59, + "H_sun": 24.39, + "T2m": 17.12, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1510", + "P": 1925.82, + "G(i)": 397.01, + "H_sun": 15.62, + "T2m": 16.91, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201012:1610", + "P": 529.08, + "G(i)": 126.26, + "H_sun": 5.8, + "T2m": 16.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201012:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.05, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201012:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.07, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201012:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.43, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201012:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.26, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201012:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201012:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201012:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.46, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201013:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201013:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201013:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201013:0610", + "P": 65.46, + "G(i)": 24.09, + "H_sun": 4.46, + "T2m": 7.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201013:0710", + "P": 680.7, + "G(i)": 166.96, + "H_sun": 14.34, + "T2m": 7.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201013:0810", + "P": 1711.8, + "G(i)": 351.56, + "H_sun": 23.22, + "T2m": 9.82, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201013:0910", + "P": 2751.72, + "G(i)": 555.58, + "H_sun": 30.5, + "T2m": 12.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201013:1010", + "P": 3341.04, + "G(i)": 684.46, + "H_sun": 35.43, + "T2m": 13.86, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201013:1110", + "P": 3691.38, + "G(i)": 768.4, + "H_sun": 37.3, + "T2m": 14.97, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201013:1210", + "P": 3625.14, + "G(i)": 755.27, + "H_sun": 35.77, + "T2m": 15.76, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201013:1310", + "P": 3424.8, + "G(i)": 704.58, + "H_sun": 31.12, + "T2m": 16.29, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201013:1410", + "P": 2856.66, + "G(i)": 580.33, + "H_sun": 24.04, + "T2m": 16.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201013:1510", + "P": 1890.24, + "G(i)": 385.99, + "H_sun": 15.29, + "T2m": 16.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201013:1610", + "P": 404.76, + "G(i)": 100.27, + "H_sun": 5.49, + "T2m": 15.47, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201013:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201013:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.51, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201013:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201013:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.53, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201013:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.46, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201013:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201013:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201014:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201014:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201014:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.66, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201014:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.54, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201014:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.41, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201014:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.35, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201014:0610", + "P": 37.8, + "G(i)": 17.34, + "H_sun": 4.22, + "T2m": 8.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201014:0710", + "P": 306.36, + "G(i)": 74.27, + "H_sun": 14.08, + "T2m": 8.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201014:0810", + "P": 1165.92, + "G(i)": 240.97, + "H_sun": 22.94, + "T2m": 10.66, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201014:0910", + "P": 282.3, + "G(i)": 70.58, + "H_sun": 30.18, + "T2m": 12.56, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201014:1010", + "P": 414.6, + "G(i)": 97.04, + "H_sun": 35.08, + "T2m": 13.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201014:1110", + "P": 1327.62, + "G(i)": 273.5, + "H_sun": 36.93, + "T2m": 14.45, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201014:1210", + "P": 3492.96, + "G(i)": 714.31, + "H_sun": 35.39, + "T2m": 15.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201014:1310", + "P": 2873.46, + "G(i)": 580.25, + "H_sun": 30.75, + "T2m": 15.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201014:1410", + "P": 2579.34, + "G(i)": 518.51, + "H_sun": 23.69, + "T2m": 15.59, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201014:1510", + "P": 1172.76, + "G(i)": 243.21, + "H_sun": 14.97, + "T2m": 15.17, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201014:1610", + "P": 30.3, + "G(i)": 15.68, + "H_sun": 5.18, + "T2m": 14.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201014:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201014:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201014:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.51, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201014:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201014:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201014:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.44, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201014:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201015:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.15, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201015:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.82, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201015:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201015:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201015:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.87, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201015:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.81, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201015:0610", + "P": 34.26, + "G(i)": 16.38, + "H_sun": 3.99, + "T2m": 7.71, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201015:0710", + "P": 280.68, + "G(i)": 69.38, + "H_sun": 13.83, + "T2m": 8.83, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:0810", + "P": 306.48, + "G(i)": 74.5, + "H_sun": 22.65, + "T2m": 9.84, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:0910", + "P": 432.24, + "G(i)": 99.0, + "H_sun": 29.86, + "T2m": 10.36, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:1010", + "P": 385.32, + "G(i)": 90.18, + "H_sun": 34.73, + "T2m": 10.92, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201015:1110", + "P": 1441.38, + "G(i)": 290.38, + "H_sun": 36.56, + "T2m": 11.25, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201015:1210", + "P": 618.84, + "G(i)": 135.27, + "H_sun": 35.02, + "T2m": 11.49, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201015:1310", + "P": 479.88, + "G(i)": 108.81, + "H_sun": 30.39, + "T2m": 11.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201015:1410", + "P": 1247.88, + "G(i)": 253.16, + "H_sun": 23.35, + "T2m": 11.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201015:1510", + "P": 652.98, + "G(i)": 141.39, + "H_sun": 14.64, + "T2m": 11.28, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201015:1610", + "P": 167.04, + "G(i)": 48.35, + "H_sun": 4.87, + "T2m": 11.0, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201015:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201015:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201015:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201015:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201015:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.62, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201015:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201015:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201016:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201016:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201016:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201016:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201016:0610", + "P": 16.8, + "G(i)": 11.56, + "H_sun": 3.75, + "T2m": 9.02, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201016:0710", + "P": 415.86, + "G(i)": 97.71, + "H_sun": 13.58, + "T2m": 9.48, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:0810", + "P": 1047.54, + "G(i)": 217.88, + "H_sun": 22.37, + "T2m": 11.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201016:0910", + "P": 540.24, + "G(i)": 120.57, + "H_sun": 29.55, + "T2m": 12.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201016:1010", + "P": 1052.1, + "G(i)": 219.23, + "H_sun": 34.38, + "T2m": 13.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201016:1110", + "P": 2471.4, + "G(i)": 499.12, + "H_sun": 36.19, + "T2m": 14.18, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201016:1210", + "P": 2636.46, + "G(i)": 535.82, + "H_sun": 34.65, + "T2m": 15.09, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:1310", + "P": 2928.9, + "G(i)": 598.09, + "H_sun": 30.03, + "T2m": 15.69, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:1410", + "P": 2347.98, + "G(i)": 477.82, + "H_sun": 23.01, + "T2m": 15.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201016:1510", + "P": 1476.06, + "G(i)": 305.28, + "H_sun": 14.33, + "T2m": 15.81, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201016:1610", + "P": 280.14, + "G(i)": 74.79, + "H_sun": 4.57, + "T2m": 15.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201016:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.41, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201016:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201016:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201016:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201016:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201017:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201017:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.38, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201017:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.48, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201017:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201017:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201017:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201017:0610", + "P": 42.0, + "G(i)": 18.31, + "H_sun": 3.52, + "T2m": 6.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201017:0710", + "P": 611.52, + "G(i)": 155.44, + "H_sun": 13.32, + "T2m": 6.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201017:0810", + "P": 1695.36, + "G(i)": 349.85, + "H_sun": 22.09, + "T2m": 9.03, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201017:0910", + "P": 2642.1, + "G(i)": 535.47, + "H_sun": 29.23, + "T2m": 11.92, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201017:1010", + "P": 3253.38, + "G(i)": 664.7, + "H_sun": 34.04, + "T2m": 14.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201017:1110", + "P": 3620.04, + "G(i)": 746.37, + "H_sun": 35.82, + "T2m": 15.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201017:1210", + "P": 3523.74, + "G(i)": 726.54, + "H_sun": 34.28, + "T2m": 16.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201017:1310", + "P": 3293.1, + "G(i)": 675.16, + "H_sun": 29.68, + "T2m": 16.95, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201017:1410", + "P": 2654.52, + "G(i)": 539.17, + "H_sun": 22.68, + "T2m": 17.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201017:1510", + "P": 1662.9, + "G(i)": 342.63, + "H_sun": 14.01, + "T2m": 16.94, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201017:1610", + "P": 238.2, + "G(i)": 66.06, + "H_sun": 4.27, + "T2m": 16.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201017:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.43, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201017:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201017:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201017:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201017:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.34, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201017:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201017:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201018:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201018:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201018:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:0610", + "P": 5.1, + "G(i)": 7.71, + "H_sun": 3.28, + "T2m": 9.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201018:0710", + "P": 283.5, + "G(i)": 70.37, + "H_sun": 13.06, + "T2m": 10.08, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201018:0810", + "P": 730.14, + "G(i)": 156.68, + "H_sun": 21.8, + "T2m": 10.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201018:0910", + "P": 986.04, + "G(i)": 205.23, + "H_sun": 28.92, + "T2m": 11.98, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201018:1010", + "P": 2009.28, + "G(i)": 401.75, + "H_sun": 33.69, + "T2m": 12.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201018:1110", + "P": 2969.46, + "G(i)": 595.49, + "H_sun": 35.46, + "T2m": 13.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201018:1210", + "P": 2531.04, + "G(i)": 507.34, + "H_sun": 33.91, + "T2m": 13.95, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201018:1310", + "P": 2954.34, + "G(i)": 595.09, + "H_sun": 29.32, + "T2m": 14.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201018:1410", + "P": 2563.86, + "G(i)": 515.86, + "H_sun": 22.35, + "T2m": 14.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201018:1510", + "P": 1615.44, + "G(i)": 330.64, + "H_sun": 13.7, + "T2m": 14.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201018:1610", + "P": 176.16, + "G(i)": 51.77, + "H_sun": 3.97, + "T2m": 13.98, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201018:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201018:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201018:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201018:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.53, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201018:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.22, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201018:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201018:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201019:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.01, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201019:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201019:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201019:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201019:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201019:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.54, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201019:0610", + "P": 7.68, + "G(i)": 8.67, + "H_sun": 3.05, + "T2m": 10.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201019:0710", + "P": 216.54, + "G(i)": 56.85, + "H_sun": 12.81, + "T2m": 10.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201019:0810", + "P": 595.26, + "G(i)": 130.63, + "H_sun": 21.52, + "T2m": 11.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201019:0910", + "P": 2095.5, + "G(i)": 417.24, + "H_sun": 28.6, + "T2m": 11.74, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201019:1010", + "P": 1569.84, + "G(i)": 315.5, + "H_sun": 33.35, + "T2m": 12.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201019:1110", + "P": 2146.8, + "G(i)": 427.72, + "H_sun": 35.09, + "T2m": 12.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201019:1210", + "P": 2825.34, + "G(i)": 563.37, + "H_sun": 33.55, + "T2m": 13.32, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201019:1310", + "P": 2827.38, + "G(i)": 564.5, + "H_sun": 28.97, + "T2m": 13.64, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1410", + "P": 2611.56, + "G(i)": 520.66, + "H_sun": 22.02, + "T2m": 13.66, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1510", + "P": 1494.12, + "G(i)": 304.15, + "H_sun": 13.39, + "T2m": 13.48, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1610", + "P": 100.02, + "G(i)": 34.0, + "H_sun": 3.68, + "T2m": 13.27, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.45, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201019:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201019:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.71, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201019:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201019:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.48, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201019:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.07, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201020:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201020:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.14, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201020:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201020:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201020:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201020:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.19, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201020:0610", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 2.81, + "T2m": 11.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201020:0710", + "P": 154.98, + "G(i)": 44.11, + "H_sun": 12.55, + "T2m": 10.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201020:0810", + "P": 601.14, + "G(i)": 131.71, + "H_sun": 21.24, + "T2m": 11.02, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201020:0910", + "P": 485.4, + "G(i)": 109.79, + "H_sun": 28.29, + "T2m": 11.77, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201020:1010", + "P": 880.32, + "G(i)": 184.96, + "H_sun": 33.0, + "T2m": 12.21, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201020:1110", + "P": 1095.66, + "G(i)": 226.18, + "H_sun": 34.73, + "T2m": 12.87, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201020:1210", + "P": 1737.24, + "G(i)": 347.22, + "H_sun": 33.19, + "T2m": 12.73, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201020:1310", + "P": 1482.18, + "G(i)": 298.38, + "H_sun": 28.63, + "T2m": 12.96, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201020:1410", + "P": 346.14, + "G(i)": 83.32, + "H_sun": 21.69, + "T2m": 13.25, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201020:1510", + "P": 259.5, + "G(i)": 66.13, + "H_sun": 13.08, + "T2m": 13.26, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201020:1610", + "P": 0.42, + "G(i)": 5.88, + "H_sun": 3.39, + "T2m": 12.93, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201020:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.52, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201020:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.46, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201020:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.67, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201020:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201020:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.67, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201020:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201020:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201021:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201021:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201021:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201021:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.26, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201021:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201021:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201021:0610", + "P": 0.0, + "G(i)": 2.89, + "H_sun": 2.57, + "T2m": 11.33, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:0710", + "P": 27.42, + "G(i)": 14.7, + "H_sun": 12.3, + "T2m": 10.96, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201021:0810", + "P": 211.32, + "G(i)": 55.87, + "H_sun": 20.96, + "T2m": 11.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201021:0910", + "P": 211.02, + "G(i)": 55.87, + "H_sun": 27.97, + "T2m": 11.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201021:1010", + "P": 363.84, + "G(i)": 86.26, + "H_sun": 32.66, + "T2m": 11.38, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201021:1110", + "P": 409.14, + "G(i)": 95.08, + "H_sun": 34.37, + "T2m": 11.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201021:1210", + "P": 313.26, + "G(i)": 76.46, + "H_sun": 32.83, + "T2m": 11.61, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201021:1310", + "P": 249.12, + "G(i)": 63.72, + "H_sun": 28.29, + "T2m": 11.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201021:1410", + "P": 158.4, + "G(i)": 45.09, + "H_sun": 21.37, + "T2m": 11.84, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:1510", + "P": 82.38, + "G(i)": 28.43, + "H_sun": 12.78, + "T2m": 11.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201021:1610", + "P": 13.98, + "G(i)": 10.78, + "H_sun": 3.1, + "T2m": 11.72, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201021:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201021:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201021:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201021:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201021:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201022:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201022:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201022:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201022:0710", + "P": 38.22, + "G(i)": 17.64, + "H_sun": 12.04, + "T2m": 11.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201022:0810", + "P": 78.12, + "G(i)": 27.45, + "H_sun": 20.67, + "T2m": 11.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201022:0910", + "P": 167.28, + "G(i)": 47.05, + "H_sun": 27.66, + "T2m": 12.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1010", + "P": 281.1, + "G(i)": 70.58, + "H_sun": 32.32, + "T2m": 13.41, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1110", + "P": 439.2, + "G(i)": 101.95, + "H_sun": 34.02, + "T2m": 13.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1210", + "P": 260.52, + "G(i)": 66.66, + "H_sun": 32.48, + "T2m": 14.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1310", + "P": 165.42, + "G(i)": 47.05, + "H_sun": 27.95, + "T2m": 14.5, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:1410", + "P": 138.0, + "G(i)": 41.17, + "H_sun": 21.05, + "T2m": 14.45, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201022:1510", + "P": 133.62, + "G(i)": 40.19, + "H_sun": 12.48, + "T2m": 14.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201022:1610", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 2.82, + "T2m": 14.05, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201022:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201022:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201022:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201022:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201022:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201022:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201023:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201023:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.47, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201023:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201023:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201023:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201023:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.38, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201023:0710", + "P": 240.72, + "G(i)": 62.35, + "H_sun": 11.78, + "T2m": 10.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:0810", + "P": 269.22, + "G(i)": 67.64, + "H_sun": 20.39, + "T2m": 11.26, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201023:0910", + "P": 418.56, + "G(i)": 97.04, + "H_sun": 27.35, + "T2m": 11.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201023:1010", + "P": 292.56, + "G(i)": 72.54, + "H_sun": 31.98, + "T2m": 12.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201023:1110", + "P": 341.7, + "G(i)": 82.34, + "H_sun": 33.66, + "T2m": 12.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:1210", + "P": 209.4, + "G(i)": 55.87, + "H_sun": 32.12, + "T2m": 12.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201023:1310", + "P": 228.06, + "G(i)": 59.8, + "H_sun": 27.61, + "T2m": 13.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201023:1410", + "P": 271.44, + "G(i)": 68.62, + "H_sun": 20.74, + "T2m": 13.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201023:1510", + "P": 37.8, + "G(i)": 17.64, + "H_sun": 12.19, + "T2m": 13.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201023:1610", + "P": 0.0, + "G(i)": 1.93, + "H_sun": 2.54, + "T2m": 13.21, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201023:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201023:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.72, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201023:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.98, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201023:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.0, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201023:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.91, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201023:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201023:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201024:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.66, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201024:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.68, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201024:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201024:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201024:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.36, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201024:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.49, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201024:0710", + "P": 312.84, + "G(i)": 78.04, + "H_sun": 11.53, + "T2m": 11.19, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201024:0810", + "P": 660.84, + "G(i)": 144.18, + "H_sun": 20.11, + "T2m": 12.46, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201024:0910", + "P": 690.6, + "G(i)": 150.23, + "H_sun": 27.04, + "T2m": 13.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201024:1010", + "P": 2230.86, + "G(i)": 452.98, + "H_sun": 31.65, + "T2m": 15.47, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201024:1110", + "P": 2544.84, + "G(i)": 521.99, + "H_sun": 33.31, + "T2m": 16.77, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201024:1210", + "P": 3024.36, + "G(i)": 629.82, + "H_sun": 31.78, + "T2m": 17.92, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201024:1310", + "P": 2917.08, + "G(i)": 608.84, + "H_sun": 27.28, + "T2m": 18.51, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201024:1410", + "P": 2403.18, + "G(i)": 497.86, + "H_sun": 20.43, + "T2m": 18.81, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201024:1510", + "P": 1402.74, + "G(i)": 296.26, + "H_sun": 11.9, + "T2m": 18.58, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 17.16, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201024:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.18, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201024:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201024:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.49, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201024:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.73, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201024:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201024:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.97, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201025:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.55, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201025:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201025:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.57, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201025:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201025:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.82, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201025:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201025:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.2, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201025:0710", + "P": 359.82, + "G(i)": 89.25, + "H_sun": 11.27, + "T2m": 10.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201025:0810", + "P": 303.54, + "G(i)": 74.5, + "H_sun": 19.83, + "T2m": 11.84, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201025:0910", + "P": 347.82, + "G(i)": 83.32, + "H_sun": 26.73, + "T2m": 12.35, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201025:1010", + "P": 1349.94, + "G(i)": 274.16, + "H_sun": 31.31, + "T2m": 13.17, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201025:1110", + "P": 1161.3, + "G(i)": 239.16, + "H_sun": 32.97, + "T2m": 13.55, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201025:1210", + "P": 796.62, + "G(i)": 170.16, + "H_sun": 31.43, + "T2m": 13.76, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201025:1310", + "P": 810.0, + "G(i)": 172.59, + "H_sun": 26.95, + "T2m": 13.9, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201025:1410", + "P": 335.1, + "G(i)": 81.36, + "H_sun": 20.12, + "T2m": 13.88, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201025:1510", + "P": 268.14, + "G(i)": 68.02, + "H_sun": 11.62, + "T2m": 13.67, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201025:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.37, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201025:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201025:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.5, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201025:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201025:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.52, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201025:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.34, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201025:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201025:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.05, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201026:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.94, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201026:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.64, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201026:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.66, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:0710", + "P": 20.52, + "G(i)": 12.74, + "H_sun": 11.01, + "T2m": 11.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201026:0810", + "P": 154.26, + "G(i)": 44.11, + "H_sun": 19.55, + "T2m": 11.45, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201026:0910", + "P": 333.54, + "G(i)": 80.38, + "H_sun": 26.42, + "T2m": 11.85, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201026:1010", + "P": 525.9, + "G(i)": 117.63, + "H_sun": 30.98, + "T2m": 12.02, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201026:1110", + "P": 632.1, + "G(i)": 138.21, + "H_sun": 32.62, + "T2m": 12.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201026:1210", + "P": 351.24, + "G(i)": 84.3, + "H_sun": 31.09, + "T2m": 12.63, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201026:1310", + "P": 242.52, + "G(i)": 62.74, + "H_sun": 26.63, + "T2m": 12.98, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201026:1410", + "P": 121.2, + "G(i)": 37.25, + "H_sun": 19.82, + "T2m": 12.76, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201026:1510", + "P": 116.82, + "G(i)": 36.27, + "H_sun": 11.33, + "T2m": 12.56, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201026:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.43, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201026:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.96, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201026:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201026:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.96, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201026:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.25, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201026:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.89, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201026:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.58, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201026:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201027:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.1, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201027:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.81, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201027:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.23, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201027:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.62, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20201027:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.06, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201027:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.29, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201027:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201027:0710", + "P": 447.84, + "G(i)": 119.35, + "H_sun": 10.76, + "T2m": 7.16, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201027:0810", + "P": 1488.06, + "G(i)": 308.92, + "H_sun": 19.27, + "T2m": 8.42, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201027:0910", + "P": 2474.46, + "G(i)": 492.33, + "H_sun": 26.12, + "T2m": 10.61, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201027:1010", + "P": 3114.24, + "G(i)": 627.19, + "H_sun": 30.65, + "T2m": 12.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201027:1110", + "P": 3449.52, + "G(i)": 706.41, + "H_sun": 32.28, + "T2m": 14.81, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1210", + "P": 3486.6, + "G(i)": 718.35, + "H_sun": 30.75, + "T2m": 15.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1310", + "P": 3177.12, + "G(i)": 652.42, + "H_sun": 26.31, + "T2m": 16.41, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201027:1410", + "P": 2488.02, + "G(i)": 506.42, + "H_sun": 19.52, + "T2m": 16.51, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201027:1510", + "P": 1441.38, + "G(i)": 300.58, + "H_sun": 11.06, + "T2m": 16.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201027:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201027:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.38, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201027:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201027:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201027:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.8, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201027:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201028:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.63, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201028:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201028:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201028:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.22, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201028:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.15, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201028:0710", + "P": 429.0, + "G(i)": 116.07, + "H_sun": 10.5, + "T2m": 7.56, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:0810", + "P": 1455.54, + "G(i)": 307.44, + "H_sun": 18.99, + "T2m": 9.43, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201028:0910", + "P": 2392.14, + "G(i)": 483.63, + "H_sun": 25.81, + "T2m": 11.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201028:1010", + "P": 3039.48, + "G(i)": 617.11, + "H_sun": 30.32, + "T2m": 13.75, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201028:1110", + "P": 3346.26, + "G(i)": 686.46, + "H_sun": 31.94, + "T2m": 14.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201028:1210", + "P": 3412.14, + "G(i)": 702.87, + "H_sun": 30.42, + "T2m": 15.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201028:1310", + "P": 3085.86, + "G(i)": 630.73, + "H_sun": 25.99, + "T2m": 16.31, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201028:1410", + "P": 2568.66, + "G(i)": 522.59, + "H_sun": 19.23, + "T2m": 16.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201028:1510", + "P": 1304.76, + "G(i)": 273.41, + "H_sun": 10.79, + "T2m": 16.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.86, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201028:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.74, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201028:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201028:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201028:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.04, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201028:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.74, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201029:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.5, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201029:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.57, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201029:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201029:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.42, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201029:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.66, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201029:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201029:0710", + "P": 289.38, + "G(i)": 73.11, + "H_sun": 10.25, + "T2m": 7.89, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:0810", + "P": 1268.58, + "G(i)": 267.09, + "H_sun": 18.71, + "T2m": 9.5, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:0910", + "P": 1707.72, + "G(i)": 345.29, + "H_sun": 25.51, + "T2m": 12.03, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201029:1010", + "P": 2470.56, + "G(i)": 498.91, + "H_sun": 30.0, + "T2m": 13.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201029:1110", + "P": 2348.34, + "G(i)": 479.58, + "H_sun": 31.61, + "T2m": 15.09, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201029:1210", + "P": 2787.42, + "G(i)": 572.2, + "H_sun": 30.09, + "T2m": 16.0, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201029:1310", + "P": 2436.78, + "G(i)": 499.81, + "H_sun": 25.68, + "T2m": 16.75, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201029:1410", + "P": 1611.66, + "G(i)": 332.26, + "H_sun": 18.94, + "T2m": 16.97, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201029:1510", + "P": 791.7, + "G(i)": 173.39, + "H_sun": 10.52, + "T2m": 16.65, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201029:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.42, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201029:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.68, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201029:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.15, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201029:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201029:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201029:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201029:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201029:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.83, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201030:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.45, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201030:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.06, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201030:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.68, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201030:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.07, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201030:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201030:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201030:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.76, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201030:0710", + "P": 363.96, + "G(i)": 96.12, + "H_sun": 9.99, + "T2m": 9.38, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201030:0810", + "P": 1210.8, + "G(i)": 257.5, + "H_sun": 18.43, + "T2m": 11.2, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201030:0910", + "P": 1804.92, + "G(i)": 367.24, + "H_sun": 25.21, + "T2m": 13.0, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201030:1010", + "P": 2769.48, + "G(i)": 566.31, + "H_sun": 29.68, + "T2m": 14.82, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201030:1110", + "P": 2316.54, + "G(i)": 473.38, + "H_sun": 31.28, + "T2m": 16.18, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201030:1210", + "P": 3284.22, + "G(i)": 683.16, + "H_sun": 29.77, + "T2m": 17.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201030:1310", + "P": 2620.44, + "G(i)": 539.49, + "H_sun": 25.37, + "T2m": 18.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201030:1410", + "P": 1684.26, + "G(i)": 346.83, + "H_sun": 18.66, + "T2m": 18.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201030:1510", + "P": 1264.74, + "G(i)": 268.11, + "H_sun": 10.25, + "T2m": 18.17, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201030:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.61, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201030:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201030:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201030:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.23, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201030:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201030:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.25, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201030:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201030:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.61, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201031:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201031:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.02, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201031:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201031:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.06, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201031:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201031:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.6, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201031:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.41, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201031:0710", + "P": 365.64, + "G(i)": 99.55, + "H_sun": 9.74, + "T2m": 8.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201031:0810", + "P": 1161.78, + "G(i)": 246.59, + "H_sun": 18.16, + "T2m": 10.9, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201031:0910", + "P": 1993.5, + "G(i)": 404.07, + "H_sun": 24.91, + "T2m": 12.09, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201031:1010", + "P": 2853.12, + "G(i)": 581.29, + "H_sun": 29.36, + "T2m": 13.37, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201031:1110", + "P": 3169.92, + "G(i)": 651.81, + "H_sun": 30.95, + "T2m": 14.8, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201031:1210", + "P": 3222.42, + "G(i)": 665.79, + "H_sun": 29.45, + "T2m": 16.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201031:1310", + "P": 2887.08, + "G(i)": 594.8, + "H_sun": 25.07, + "T2m": 17.21, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201031:1410", + "P": 1517.28, + "G(i)": 313.85, + "H_sun": 18.38, + "T2m": 17.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201031:1510", + "P": 1166.88, + "G(i)": 248.83, + "H_sun": 10.0, + "T2m": 17.56, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201031:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.45, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201031:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.42, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201031:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.97, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201031:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201031:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.41, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201031:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.32, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201031:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201031:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201101:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.67, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201101:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.56, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201101:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201101:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201101:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201101:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201101:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201101:0710", + "P": 62.1, + "G(i)": 23.53, + "H_sun": 9.48, + "T2m": 10.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201101:0810", + "P": 772.68, + "G(i)": 166.65, + "H_sun": 17.88, + "T2m": 11.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:0910", + "P": 667.26, + "G(i)": 144.71, + "H_sun": 24.61, + "T2m": 11.92, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201101:1010", + "P": 875.76, + "G(i)": 184.98, + "H_sun": 29.04, + "T2m": 12.76, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:1110", + "P": 627.36, + "G(i)": 138.21, + "H_sun": 30.63, + "T2m": 13.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:1210", + "P": 1428.18, + "G(i)": 292.19, + "H_sun": 29.13, + "T2m": 14.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201101:1310", + "P": 1470.3, + "G(i)": 301.16, + "H_sun": 24.77, + "T2m": 15.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201101:1410", + "P": 712.14, + "G(i)": 155.66, + "H_sun": 18.1, + "T2m": 15.78, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201101:1510", + "P": 557.16, + "G(i)": 126.61, + "H_sun": 9.74, + "T2m": 15.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201101:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201101:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.43, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201101:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201101:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.41, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201101:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201101:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.62, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201101:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201101:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.55, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201102:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201102:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201102:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.36, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.47, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201102:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.83, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:0710", + "P": 231.3, + "G(i)": 61.8, + "H_sun": 9.23, + "T2m": 10.53, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201102:0810", + "P": 564.48, + "G(i)": 125.9, + "H_sun": 17.61, + "T2m": 12.03, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201102:0910", + "P": 678.84, + "G(i)": 147.98, + "H_sun": 24.31, + "T2m": 13.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201102:1010", + "P": 808.26, + "G(i)": 173.78, + "H_sun": 28.73, + "T2m": 14.68, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201102:1110", + "P": 855.6, + "G(i)": 183.9, + "H_sun": 30.31, + "T2m": 15.99, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201102:1210", + "P": 1367.58, + "G(i)": 283.53, + "H_sun": 28.82, + "T2m": 16.98, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:1310", + "P": 1958.16, + "G(i)": 400.23, + "H_sun": 24.48, + "T2m": 17.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201102:1410", + "P": 1667.76, + "G(i)": 342.81, + "H_sun": 17.83, + "T2m": 17.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201102:1510", + "P": 589.08, + "G(i)": 134.09, + "H_sun": 9.49, + "T2m": 17.75, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201102:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201102:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.06, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201102:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201102:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.02, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.67, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201102:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.2, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201102:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201102:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.68, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201103:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.45, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201103:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.31, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201103:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201103:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201103:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.12, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201103:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.87, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201103:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.93, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201103:0710", + "P": 220.56, + "G(i)": 59.87, + "H_sun": 8.98, + "T2m": 11.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201103:0810", + "P": 520.8, + "G(i)": 117.74, + "H_sun": 17.33, + "T2m": 12.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201103:0910", + "P": 667.02, + "G(i)": 146.04, + "H_sun": 24.02, + "T2m": 14.15, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201103:1010", + "P": 760.32, + "G(i)": 164.55, + "H_sun": 28.42, + "T2m": 14.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201103:1110", + "P": 535.56, + "G(i)": 121.55, + "H_sun": 29.99, + "T2m": 15.59, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201103:1210", + "P": 498.06, + "G(i)": 114.69, + "H_sun": 28.51, + "T2m": 16.31, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201103:1310", + "P": 339.06, + "G(i)": 83.32, + "H_sun": 24.19, + "T2m": 16.73, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201103:1410", + "P": 186.24, + "G(i)": 51.95, + "H_sun": 17.56, + "T2m": 16.87, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201103:1510", + "P": 201.48, + "G(i)": 55.22, + "H_sun": 9.25, + "T2m": 16.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201103:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.93, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201103:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.12, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201103:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201103:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201103:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.98, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201103:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.62, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201103:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201103:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.17, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201104:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201104:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201104:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201104:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.73, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201104:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.49, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201104:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.42, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201104:0710", + "P": 160.14, + "G(i)": 45.93, + "H_sun": 8.73, + "T2m": 12.55, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:0810", + "P": 247.74, + "G(i)": 63.72, + "H_sun": 17.06, + "T2m": 12.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201104:0910", + "P": 166.32, + "G(i)": 47.05, + "H_sun": 23.73, + "T2m": 13.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:1010", + "P": 275.88, + "G(i)": 69.6, + "H_sun": 28.11, + "T2m": 13.72, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:1110", + "P": 393.72, + "G(i)": 93.12, + "H_sun": 29.68, + "T2m": 14.17, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:1210", + "P": 605.28, + "G(i)": 134.29, + "H_sun": 28.21, + "T2m": 14.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201104:1310", + "P": 274.68, + "G(i)": 69.6, + "H_sun": 23.91, + "T2m": 14.55, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201104:1410", + "P": 445.74, + "G(i)": 103.36, + "H_sun": 17.3, + "T2m": 14.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201104:1510", + "P": 442.02, + "G(i)": 103.34, + "H_sun": 9.01, + "T2m": 14.5, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201104:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201104:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.75, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201104:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201104:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.42, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201104:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201104:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201104:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.29, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.27, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201105:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201105:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.86, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201105:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201105:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.64, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:0710", + "P": 293.1, + "G(i)": 89.41, + "H_sun": 8.48, + "T2m": 12.02, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:0810", + "P": 843.48, + "G(i)": 184.47, + "H_sun": 16.8, + "T2m": 13.78, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201105:0910", + "P": 1381.38, + "G(i)": 285.24, + "H_sun": 23.44, + "T2m": 14.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:1010", + "P": 2245.08, + "G(i)": 456.79, + "H_sun": 27.81, + "T2m": 15.76, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201105:1110", + "P": 3239.52, + "G(i)": 665.9, + "H_sun": 29.37, + "T2m": 16.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201105:1210", + "P": 3252.36, + "G(i)": 668.27, + "H_sun": 27.91, + "T2m": 16.79, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:1310", + "P": 2919.3, + "G(i)": 597.64, + "H_sun": 23.63, + "T2m": 17.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:1410", + "P": 2205.9, + "G(i)": 451.68, + "H_sun": 17.05, + "T2m": 17.38, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201105:1510", + "P": 1130.52, + "G(i)": 242.35, + "H_sun": 8.78, + "T2m": 17.16, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201105:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 16.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201105:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.92, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201105:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201105:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.27, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201105:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201105:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.88, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201105:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201106:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.71, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.55, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201106:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201106:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201106:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.8, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201106:0710", + "P": 188.34, + "G(i)": 53.23, + "H_sun": 8.23, + "T2m": 12.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201106:0810", + "P": 568.38, + "G(i)": 127.74, + "H_sun": 16.53, + "T2m": 13.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201106:0910", + "P": 339.0, + "G(i)": 82.34, + "H_sun": 23.15, + "T2m": 14.16, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201106:1010", + "P": 793.44, + "G(i)": 170.93, + "H_sun": 27.51, + "T2m": 15.02, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201106:1110", + "P": 1294.38, + "G(i)": 267.03, + "H_sun": 29.07, + "T2m": 15.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201106:1210", + "P": 2913.54, + "G(i)": 589.06, + "H_sun": 27.62, + "T2m": 16.03, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201106:1310", + "P": 2536.98, + "G(i)": 510.76, + "H_sun": 23.35, + "T2m": 16.17, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201106:1410", + "P": 1969.32, + "G(i)": 398.49, + "H_sun": 16.8, + "T2m": 16.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201106:1510", + "P": 1122.6, + "G(i)": 238.8, + "H_sun": 8.55, + "T2m": 15.73, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201106:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201106:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201106:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201106:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201106:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.15, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201106:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.4, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201106:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.28, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201106:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.98, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201107:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.99, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201107:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.69, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201107:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.53, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201107:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201107:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201107:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.3, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201107:0710", + "P": 236.7, + "G(i)": 66.47, + "H_sun": 7.98, + "T2m": 8.45, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201107:0810", + "P": 858.84, + "G(i)": 184.86, + "H_sun": 16.26, + "T2m": 9.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201107:0910", + "P": 1410.36, + "G(i)": 286.44, + "H_sun": 22.87, + "T2m": 11.65, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201107:1010", + "P": 2730.3, + "G(i)": 548.61, + "H_sun": 27.21, + "T2m": 13.44, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:1110", + "P": 3161.16, + "G(i)": 646.2, + "H_sun": 28.77, + "T2m": 15.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201107:1210", + "P": 3236.04, + "G(i)": 668.05, + "H_sun": 27.33, + "T2m": 16.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201107:1310", + "P": 2727.84, + "G(i)": 558.76, + "H_sun": 23.08, + "T2m": 16.99, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201107:1410", + "P": 1266.54, + "G(i)": 263.42, + "H_sun": 16.55, + "T2m": 17.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201107:1510", + "P": 205.26, + "G(i)": 55.89, + "H_sun": 8.33, + "T2m": 16.67, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201107:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.54, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201107:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.31, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201107:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.67, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201107:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.14, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201107:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.07, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201107:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201108:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.04, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201108:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.6, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201108:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.69, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201108:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.37, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201108:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201108:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.72, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201108:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.17, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201108:0710", + "P": 254.04, + "G(i)": 77.84, + "H_sun": 7.74, + "T2m": 9.9, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:0810", + "P": 1176.84, + "G(i)": 258.03, + "H_sun": 16.0, + "T2m": 11.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201108:0910", + "P": 2103.18, + "G(i)": 431.17, + "H_sun": 22.59, + "T2m": 13.74, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201108:1010", + "P": 2682.66, + "G(i)": 546.7, + "H_sun": 26.92, + "T2m": 15.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:1110", + "P": 2062.8, + "G(i)": 420.74, + "H_sun": 28.48, + "T2m": 16.43, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:1210", + "P": 3157.56, + "G(i)": 652.14, + "H_sun": 27.05, + "T2m": 17.02, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201108:1310", + "P": 2196.84, + "G(i)": 448.48, + "H_sun": 22.82, + "T2m": 17.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201108:1410", + "P": 2131.44, + "G(i)": 436.25, + "H_sun": 16.31, + "T2m": 17.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201108:1510", + "P": 150.72, + "G(i)": 44.33, + "H_sun": 8.11, + "T2m": 16.92, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201108:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201108:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.34, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201108:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.88, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201108:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201108:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.77, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201108:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201108:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.68, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201108:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201109:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.25, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201109:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201109:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.52, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201109:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.31, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201109:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:0710", + "P": 247.2, + "G(i)": 78.5, + "H_sun": 7.5, + "T2m": 10.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201109:0810", + "P": 1196.7, + "G(i)": 263.45, + "H_sun": 15.74, + "T2m": 11.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:0910", + "P": 2139.18, + "G(i)": 436.22, + "H_sun": 22.31, + "T2m": 13.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:1010", + "P": 2812.08, + "G(i)": 569.98, + "H_sun": 26.63, + "T2m": 14.59, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:1110", + "P": 3166.38, + "G(i)": 649.04, + "H_sun": 28.19, + "T2m": 15.76, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201109:1210", + "P": 3251.04, + "G(i)": 671.8, + "H_sun": 26.77, + "T2m": 16.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:1310", + "P": 2872.26, + "G(i)": 592.12, + "H_sun": 22.56, + "T2m": 16.7, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201109:1410", + "P": 2290.74, + "G(i)": 470.9, + "H_sun": 16.08, + "T2m": 16.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201109:1510", + "P": 168.9, + "G(i)": 48.18, + "H_sun": 7.9, + "T2m": 16.55, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 15.44, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201109:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201109:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201109:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201109:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201109:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.35, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201109:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.84, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201109:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.44, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201110:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.77, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.95, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201110:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.02, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201110:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.04, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201110:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:0710", + "P": 234.48, + "G(i)": 73.5, + "H_sun": 7.25, + "T2m": 8.28, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201110:0810", + "P": 961.32, + "G(i)": 208.9, + "H_sun": 15.48, + "T2m": 9.54, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201110:0910", + "P": 2018.04, + "G(i)": 410.89, + "H_sun": 22.04, + "T2m": 11.49, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201110:1010", + "P": 2681.22, + "G(i)": 545.64, + "H_sun": 26.35, + "T2m": 13.45, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201110:1110", + "P": 3057.6, + "G(i)": 626.37, + "H_sun": 27.9, + "T2m": 14.84, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:1210", + "P": 2684.52, + "G(i)": 547.79, + "H_sun": 26.49, + "T2m": 15.65, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201110:1310", + "P": 3027.78, + "G(i)": 621.72, + "H_sun": 22.31, + "T2m": 16.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201110:1410", + "P": 871.44, + "G(i)": 186.27, + "H_sun": 15.85, + "T2m": 16.12, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:1510", + "P": 178.74, + "G(i)": 50.11, + "H_sun": 7.69, + "T2m": 15.73, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201110:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 14.67, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201110:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201110:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.44, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201110:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.88, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201110:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201110:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201110:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.49, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.33, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201111:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.09, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201111:0710", + "P": 217.8, + "G(i)": 67.59, + "H_sun": 7.01, + "T2m": 8.51, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201111:0810", + "P": 1004.76, + "G(i)": 219.62, + "H_sun": 15.23, + "T2m": 9.98, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201111:0910", + "P": 1756.62, + "G(i)": 357.08, + "H_sun": 21.77, + "T2m": 11.39, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201111:1010", + "P": 2746.44, + "G(i)": 552.4, + "H_sun": 26.07, + "T2m": 12.52, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201111:1110", + "P": 3122.94, + "G(i)": 628.65, + "H_sun": 27.62, + "T2m": 13.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201111:1210", + "P": 2352.54, + "G(i)": 469.77, + "H_sun": 26.23, + "T2m": 13.54, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201111:1310", + "P": 2747.52, + "G(i)": 550.08, + "H_sun": 22.06, + "T2m": 14.05, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201111:1410", + "P": 2016.42, + "G(i)": 404.01, + "H_sun": 15.63, + "T2m": 13.68, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201111:1510", + "P": 153.48, + "G(i)": 44.33, + "H_sun": 7.49, + "T2m": 13.6, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201111:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 13.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.75, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201111:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201111:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201111:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201111:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.45, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201112:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.35, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201112:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.24, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.22, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201112:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.16, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201112:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.18, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.15, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:0710", + "P": 180.72, + "G(i)": 54.55, + "H_sun": 6.78, + "T2m": 9.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:0810", + "P": 202.56, + "G(i)": 53.91, + "H_sun": 14.97, + "T2m": 10.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:0910", + "P": 1081.74, + "G(i)": 222.64, + "H_sun": 21.5, + "T2m": 10.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201112:1010", + "P": 501.24, + "G(i)": 112.73, + "H_sun": 25.79, + "T2m": 11.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201112:1110", + "P": 437.88, + "G(i)": 100.97, + "H_sun": 27.35, + "T2m": 12.07, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201112:1210", + "P": 558.42, + "G(i)": 124.49, + "H_sun": 25.96, + "T2m": 12.64, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201112:1310", + "P": 435.48, + "G(i)": 100.97, + "H_sun": 21.82, + "T2m": 13.08, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201112:1410", + "P": 573.18, + "G(i)": 127.4, + "H_sun": 15.41, + "T2m": 13.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201112:1510", + "P": 162.66, + "G(i)": 46.25, + "H_sun": 7.3, + "T2m": 13.34, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201112:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201112:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.04, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201112:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.26, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201112:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201112:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201112:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.74, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201112:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.44, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201112:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201113:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201113:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201113:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.77, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201113:0710", + "P": 103.14, + "G(i)": 33.23, + "H_sun": 6.54, + "T2m": 9.05, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:0810", + "P": 373.5, + "G(i)": 87.74, + "H_sun": 14.72, + "T2m": 9.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201113:0910", + "P": 320.58, + "G(i)": 77.44, + "H_sun": 21.24, + "T2m": 10.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201113:1010", + "P": 563.76, + "G(i)": 124.49, + "H_sun": 25.52, + "T2m": 10.86, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201113:1110", + "P": 558.06, + "G(i)": 123.51, + "H_sun": 27.08, + "T2m": 11.05, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201113:1210", + "P": 566.88, + "G(i)": 125.47, + "H_sun": 25.71, + "T2m": 11.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201113:1310", + "P": 602.7, + "G(i)": 132.29, + "H_sun": 21.59, + "T2m": 11.82, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:1410", + "P": 397.2, + "G(i)": 92.95, + "H_sun": 15.2, + "T2m": 12.13, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201113:1510", + "P": 141.06, + "G(i)": 41.44, + "H_sun": 7.11, + "T2m": 12.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.75, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201113:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.96, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201113:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201113:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.76, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201113:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201114:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.51, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201114:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.34, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201114:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201114:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.51, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201114:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:0710", + "P": 105.66, + "G(i)": 34.11, + "H_sun": 6.31, + "T2m": 7.84, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201114:0810", + "P": 410.7, + "G(i)": 95.14, + "H_sun": 14.48, + "T2m": 9.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201114:0910", + "P": 624.42, + "G(i)": 135.87, + "H_sun": 20.98, + "T2m": 10.41, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201114:1010", + "P": 696.18, + "G(i)": 149.99, + "H_sun": 25.25, + "T2m": 11.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201114:1110", + "P": 984.06, + "G(i)": 204.95, + "H_sun": 26.81, + "T2m": 12.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201114:1210", + "P": 1313.1, + "G(i)": 267.7, + "H_sun": 25.46, + "T2m": 12.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201114:1310", + "P": 1892.1, + "G(i)": 379.39, + "H_sun": 21.36, + "T2m": 13.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201114:1410", + "P": 1379.64, + "G(i)": 280.6, + "H_sun": 14.99, + "T2m": 13.2, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201114:1510", + "P": 149.28, + "G(i)": 43.36, + "H_sun": 6.93, + "T2m": 13.1, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201114:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.53, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201114:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201114:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.7, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201114:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.44, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201114:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201114:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201114:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.78, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.54, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201115:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.65, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201115:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0710", + "P": 100.92, + "G(i)": 33.14, + "H_sun": 6.08, + "T2m": 8.36, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:0810", + "P": 514.92, + "G(i)": 116.03, + "H_sun": 14.23, + "T2m": 9.21, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201115:0910", + "P": 560.94, + "G(i)": 123.32, + "H_sun": 20.72, + "T2m": 9.62, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201115:1010", + "P": 401.4, + "G(i)": 93.12, + "H_sun": 24.99, + "T2m": 10.15, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1110", + "P": 1107.48, + "G(i)": 226.96, + "H_sun": 26.56, + "T2m": 10.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1210", + "P": 961.86, + "G(i)": 199.63, + "H_sun": 25.21, + "T2m": 11.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201115:1310", + "P": 383.88, + "G(i)": 90.18, + "H_sun": 21.13, + "T2m": 11.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1410", + "P": 108.66, + "G(i)": 34.31, + "H_sun": 14.8, + "T2m": 11.39, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201115:1510", + "P": 146.04, + "G(i)": 42.4, + "H_sun": 6.75, + "T2m": 11.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201115:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.18, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201115:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201115:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.63, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201115:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.4, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201115:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201115:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.38, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201115:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.31, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201115:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.29, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201116:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.17, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201116:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.59, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201116:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201116:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201116:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.48, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201116:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201116:0710", + "P": 166.86, + "G(i)": 61.75, + "H_sun": 5.85, + "T2m": 6.39, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201116:0810", + "P": 631.44, + "G(i)": 139.12, + "H_sun": 13.99, + "T2m": 7.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201116:0910", + "P": 1487.4, + "G(i)": 298.51, + "H_sun": 20.47, + "T2m": 8.63, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:1010", + "P": 1446.96, + "G(i)": 289.18, + "H_sun": 24.73, + "T2m": 9.85, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:1110", + "P": 2598.06, + "G(i)": 512.52, + "H_sun": 26.3, + "T2m": 10.89, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201116:1210", + "P": 3145.62, + "G(i)": 626.51, + "H_sun": 24.97, + "T2m": 11.87, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:1310", + "P": 2821.2, + "G(i)": 562.65, + "H_sun": 20.92, + "T2m": 12.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201116:1410", + "P": 2069.82, + "G(i)": 415.54, + "H_sun": 14.6, + "T2m": 12.95, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201116:1510", + "P": 92.46, + "G(i)": 30.84, + "H_sun": 6.58, + "T2m": 12.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201116:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201116:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201116:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.53, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201116:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201116:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201116:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.97, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201116:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.15, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201116:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.75, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201117:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201117:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201117:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.12, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.58, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201117:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201117:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201117:0710", + "P": 127.14, + "G(i)": 48.01, + "H_sun": 5.62, + "T2m": 6.42, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201117:0810", + "P": 963.9, + "G(i)": 213.94, + "H_sun": 13.75, + "T2m": 7.4, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201117:0910", + "P": 1954.32, + "G(i)": 396.23, + "H_sun": 20.22, + "T2m": 9.6, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201117:1010", + "P": 2586.36, + "G(i)": 519.71, + "H_sun": 24.48, + "T2m": 11.83, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201117:1110", + "P": 2628.84, + "G(i)": 528.63, + "H_sun": 26.05, + "T2m": 13.33, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201117:1210", + "P": 2565.48, + "G(i)": 515.56, + "H_sun": 24.74, + "T2m": 14.25, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201117:1310", + "P": 1987.8, + "G(i)": 399.54, + "H_sun": 20.71, + "T2m": 14.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:1410", + "P": 1948.8, + "G(i)": 393.57, + "H_sun": 14.41, + "T2m": 14.63, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201117:1510", + "P": 126.36, + "G(i)": 38.54, + "H_sun": 6.41, + "T2m": 14.01, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201117:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.76, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201117:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.09, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201117:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.58, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201117:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.86, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201117:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201117:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.21, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201117:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201117:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.13, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201118:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.63, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201118:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201118:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.66, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201118:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201118:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201118:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201118:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.48, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:0710", + "P": 117.96, + "G(i)": 45.6, + "H_sun": 5.4, + "T2m": 4.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:0810", + "P": 993.3, + "G(i)": 219.22, + "H_sun": 13.52, + "T2m": 5.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:0910", + "P": 1979.16, + "G(i)": 399.58, + "H_sun": 19.98, + "T2m": 8.49, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201118:1010", + "P": 2754.3, + "G(i)": 554.13, + "H_sun": 24.23, + "T2m": 10.71, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201118:1110", + "P": 3094.5, + "G(i)": 626.3, + "H_sun": 25.81, + "T2m": 12.43, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:1210", + "P": 3136.56, + "G(i)": 635.11, + "H_sun": 24.51, + "T2m": 13.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201118:1310", + "P": 2805.24, + "G(i)": 566.65, + "H_sun": 20.5, + "T2m": 14.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201118:1410", + "P": 2005.26, + "G(i)": 405.81, + "H_sun": 14.23, + "T2m": 14.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201118:1510", + "P": 113.46, + "G(i)": 35.65, + "H_sun": 6.25, + "T2m": 13.61, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201118:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 12.17, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201118:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201118:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201118:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.64, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201118:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201118:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.24, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201118:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201118:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.53, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201119:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201119:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.29, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201119:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.76, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201119:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201119:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.07, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.65, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.31, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201119:0710", + "P": 108.0, + "G(i)": 45.06, + "H_sun": 5.18, + "T2m": 3.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201119:0810", + "P": 1008.42, + "G(i)": 223.47, + "H_sun": 13.28, + "T2m": 4.57, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201119:0910", + "P": 1996.44, + "G(i)": 401.86, + "H_sun": 19.74, + "T2m": 7.55, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201119:1010", + "P": 2709.66, + "G(i)": 541.65, + "H_sun": 23.99, + "T2m": 9.96, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201119:1110", + "P": 3043.98, + "G(i)": 614.32, + "H_sun": 25.57, + "T2m": 12.08, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201119:1210", + "P": 3048.6, + "G(i)": 617.29, + "H_sun": 24.29, + "T2m": 13.39, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:1310", + "P": 2713.8, + "G(i)": 548.72, + "H_sun": 20.3, + "T2m": 14.19, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201119:1410", + "P": 1965.9, + "G(i)": 398.67, + "H_sun": 14.06, + "T2m": 14.26, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201119:1510", + "P": 96.36, + "G(i)": 31.8, + "H_sun": 6.1, + "T2m": 13.48, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201119:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.63, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201119:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.92, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201119:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.51, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201119:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.03, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201119:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.33, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201119:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.59, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201119:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201119:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.22, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201120:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.74, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201120:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201120:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.51, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201120:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201120:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.84, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201120:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201120:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201120:0710", + "P": 91.32, + "G(i)": 50.4, + "H_sun": 4.96, + "T2m": 3.91, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201120:0810", + "P": 1069.74, + "G(i)": 238.91, + "H_sun": 13.06, + "T2m": 4.62, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201120:0910", + "P": 2042.76, + "G(i)": 410.09, + "H_sun": 19.5, + "T2m": 7.34, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201120:1010", + "P": 524.46, + "G(i)": 116.65, + "H_sun": 23.75, + "T2m": 9.88, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201120:1110", + "P": 2385.48, + "G(i)": 479.68, + "H_sun": 25.34, + "T2m": 12.07, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201120:1210", + "P": 3096.18, + "G(i)": 630.91, + "H_sun": 24.07, + "T2m": 13.34, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201120:1310", + "P": 2799.66, + "G(i)": 567.96, + "H_sun": 20.11, + "T2m": 13.84, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201120:1410", + "P": 2068.8, + "G(i)": 419.24, + "H_sun": 13.89, + "T2m": 13.73, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201120:1510", + "P": 105.24, + "G(i)": 33.73, + "H_sun": 5.95, + "T2m": 12.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201120:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 11.0, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201120:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.59, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201120:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.93, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201120:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.15, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201120:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.79, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201120:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.93, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201120:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.26, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201120:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.85, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201121:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201121:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.76, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201121:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201121:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.81, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201121:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.96, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201121:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.02, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201121:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.91, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201121:0710", + "P": 97.14, + "G(i)": 36.79, + "H_sun": 4.74, + "T2m": 3.09, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201121:0810", + "P": 793.32, + "G(i)": 174.26, + "H_sun": 12.83, + "T2m": 4.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201121:0910", + "P": 1126.26, + "G(i)": 228.4, + "H_sun": 19.27, + "T2m": 6.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201121:1010", + "P": 2534.22, + "G(i)": 496.78, + "H_sun": 23.52, + "T2m": 8.71, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201121:1110", + "P": 2892.66, + "G(i)": 566.32, + "H_sun": 25.11, + "T2m": 9.47, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201121:1210", + "P": 3173.7, + "G(i)": 623.67, + "H_sun": 23.86, + "T2m": 9.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201121:1310", + "P": 2855.16, + "G(i)": 559.93, + "H_sun": 19.92, + "T2m": 9.74, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201121:1410", + "P": 2048.1, + "G(i)": 403.67, + "H_sun": 13.73, + "T2m": 9.47, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201121:1510", + "P": 107.52, + "G(i)": 33.73, + "H_sun": 5.81, + "T2m": 8.97, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201121:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.57, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201121:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201121:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201121:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201121:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201121:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201121:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.68, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201121:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.18, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201122:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201122:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.36, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201122:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.11, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201122:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.16, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201122:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201122:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.8, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201122:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:0710", + "P": 89.52, + "G(i)": 38.21, + "H_sun": 4.53, + "T2m": -1.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:0810", + "P": 999.6, + "G(i)": 219.32, + "H_sun": 12.61, + "T2m": 0.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201122:0910", + "P": 2023.02, + "G(i)": 398.46, + "H_sun": 19.04, + "T2m": 3.37, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201122:1010", + "P": 2761.26, + "G(i)": 537.16, + "H_sun": 23.29, + "T2m": 5.15, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201122:1110", + "P": 3140.22, + "G(i)": 614.19, + "H_sun": 24.89, + "T2m": 6.46, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201122:1210", + "P": 3159.0, + "G(i)": 618.91, + "H_sun": 23.66, + "T2m": 7.4, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201122:1310", + "P": 2794.2, + "G(i)": 545.81, + "H_sun": 19.74, + "T2m": 7.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:1410", + "P": 2060.82, + "G(i)": 404.58, + "H_sun": 13.57, + "T2m": 8.0, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201122:1510", + "P": 103.92, + "G(i)": 32.76, + "H_sun": 5.68, + "T2m": 7.48, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201122:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.1, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201122:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201122:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201122:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201122:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201122:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.58, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201122:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201122:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.35, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201123:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.74, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201123:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.3, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.33, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201123:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.36, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201123:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.32, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201123:0710", + "P": 83.1, + "G(i)": 35.89, + "H_sun": 4.32, + "T2m": -1.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201123:0810", + "P": 976.98, + "G(i)": 215.58, + "H_sun": 12.39, + "T2m": 0.01, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201123:0910", + "P": 1967.76, + "G(i)": 389.79, + "H_sun": 18.82, + "T2m": 3.16, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201123:1010", + "P": 2701.38, + "G(i)": 530.36, + "H_sun": 23.07, + "T2m": 5.36, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201123:1110", + "P": 3086.28, + "G(i)": 608.36, + "H_sun": 24.68, + "T2m": 6.86, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201123:1210", + "P": 3134.88, + "G(i)": 617.5, + "H_sun": 23.46, + "T2m": 7.94, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201123:1310", + "P": 2809.26, + "G(i)": 551.05, + "H_sun": 19.57, + "T2m": 8.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201123:1410", + "P": 2024.94, + "G(i)": 398.4, + "H_sun": 13.42, + "T2m": 8.6, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201123:1510", + "P": 103.8, + "G(i)": 32.76, + "H_sun": 5.55, + "T2m": 7.72, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201123:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.02, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201123:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201123:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201123:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.39, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201123:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201123:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.55, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201123:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201123:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.32, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201124:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201124:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.18, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201124:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.15, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201124:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.15, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201124:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.37, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201124:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.38, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201124:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201124:0710", + "P": 68.34, + "G(i)": 35.34, + "H_sun": 4.12, + "T2m": 0.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201124:0810", + "P": 881.1, + "G(i)": 194.94, + "H_sun": 12.18, + "T2m": 1.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201124:0910", + "P": 1892.16, + "G(i)": 376.06, + "H_sun": 18.6, + "T2m": 4.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201124:1010", + "P": 1430.46, + "G(i)": 283.77, + "H_sun": 22.85, + "T2m": 7.28, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201124:1110", + "P": 3022.02, + "G(i)": 597.68, + "H_sun": 24.47, + "T2m": 9.44, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1210", + "P": 3003.72, + "G(i)": 597.56, + "H_sun": 23.27, + "T2m": 10.93, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1310", + "P": 2696.88, + "G(i)": 536.03, + "H_sun": 19.4, + "T2m": 11.49, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201124:1410", + "P": 1964.94, + "G(i)": 393.05, + "H_sun": 13.28, + "T2m": 11.41, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1510", + "P": 106.56, + "G(i)": 33.73, + "H_sun": 5.43, + "T2m": 10.53, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201124:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 10.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201124:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.14, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201124:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201124:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201124:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201124:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201124:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201124:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201125:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.22, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201125:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201125:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201125:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.44, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201125:0710", + "P": 66.84, + "G(i)": 30.35, + "H_sun": 3.92, + "T2m": -0.9, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201125:0810", + "P": 858.66, + "G(i)": 190.52, + "H_sun": 11.97, + "T2m": 0.78, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201125:0910", + "P": 1693.62, + "G(i)": 336.36, + "H_sun": 18.39, + "T2m": 3.91, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201125:1010", + "P": 2637.3, + "G(i)": 518.97, + "H_sun": 22.64, + "T2m": 6.86, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:1110", + "P": 2998.14, + "G(i)": 594.81, + "H_sun": 24.27, + "T2m": 8.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201125:1210", + "P": 2810.34, + "G(i)": 560.97, + "H_sun": 23.09, + "T2m": 10.07, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201125:1310", + "P": 2716.5, + "G(i)": 543.69, + "H_sun": 19.24, + "T2m": 10.7, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201125:1410", + "P": 1912.02, + "G(i)": 383.4, + "H_sun": 13.14, + "T2m": 10.74, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201125:1510", + "P": 89.46, + "G(i)": 29.87, + "H_sun": 5.32, + "T2m": 10.21, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201125:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.32, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201125:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201125:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.7, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201125:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201125:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.66, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.07, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.3, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.47, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201126:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.71, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.84, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201126:0710", + "P": 60.54, + "G(i)": 27.27, + "H_sun": 3.72, + "T2m": -0.24, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:0810", + "P": 873.54, + "G(i)": 195.39, + "H_sun": 11.77, + "T2m": 0.86, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201126:0910", + "P": 1880.1, + "G(i)": 373.84, + "H_sun": 18.18, + "T2m": 3.74, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:1010", + "P": 2611.98, + "G(i)": 512.62, + "H_sun": 22.43, + "T2m": 6.3, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201126:1110", + "P": 2996.4, + "G(i)": 593.76, + "H_sun": 24.08, + "T2m": 8.16, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201126:1210", + "P": 3112.98, + "G(i)": 624.12, + "H_sun": 22.91, + "T2m": 9.61, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201126:1310", + "P": 2645.76, + "G(i)": 528.03, + "H_sun": 19.09, + "T2m": 10.3, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201126:1410", + "P": 1957.26, + "G(i)": 391.56, + "H_sun": 13.01, + "T2m": 10.35, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:1510", + "P": 93.9, + "G(i)": 30.84, + "H_sun": 5.21, + "T2m": 9.87, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201126:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201126:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201126:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201126:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.03, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201126:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201126:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.74, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201126:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.07, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201126:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.77, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.32, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.46, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201127:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.14, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201127:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201127:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.88, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:0710", + "P": 51.54, + "G(i)": 25.42, + "H_sun": 3.52, + "T2m": 1.73, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:0810", + "P": 479.16, + "G(i)": 108.66, + "H_sun": 11.57, + "T2m": 2.83, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:0910", + "P": 1312.68, + "G(i)": 263.71, + "H_sun": 17.98, + "T2m": 4.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201127:1010", + "P": 2280.96, + "G(i)": 447.26, + "H_sun": 22.23, + "T2m": 6.6, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201127:1110", + "P": 2227.98, + "G(i)": 438.31, + "H_sun": 23.89, + "T2m": 8.2, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201127:1210", + "P": 974.28, + "G(i)": 200.36, + "H_sun": 22.74, + "T2m": 8.92, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:1310", + "P": 490.14, + "G(i)": 109.9, + "H_sun": 18.94, + "T2m": 9.4, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201127:1410", + "P": 1329.78, + "G(i)": 268.32, + "H_sun": 12.89, + "T2m": 9.36, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:1510", + "P": 98.58, + "G(i)": 31.8, + "H_sun": 5.1, + "T2m": 9.09, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201127:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.81, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201127:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.65, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201127:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201127:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.85, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201127:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201127:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201127:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.93, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201127:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.99, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201128:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.03, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201128:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.22, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201128:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.16, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201128:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201128:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201128:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.24, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201128:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.37, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201128:0710", + "P": 28.86, + "G(i)": 15.48, + "H_sun": 3.33, + "T2m": 5.37, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201128:0810", + "P": 107.52, + "G(i)": 33.33, + "H_sun": 11.37, + "T2m": 5.63, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:0910", + "P": 67.74, + "G(i)": 24.51, + "H_sun": 17.78, + "T2m": 6.23, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201128:1010", + "P": 736.38, + "G(i)": 154.5, + "H_sun": 22.04, + "T2m": 6.7, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201128:1110", + "P": 1032.66, + "G(i)": 209.92, + "H_sun": 23.71, + "T2m": 7.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201128:1210", + "P": 929.1, + "G(i)": 190.75, + "H_sun": 22.58, + "T2m": 8.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201128:1310", + "P": 343.8, + "G(i)": 81.36, + "H_sun": 18.8, + "T2m": 8.3, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201128:1410", + "P": 301.5, + "G(i)": 73.21, + "H_sun": 12.77, + "T2m": 8.5, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201128:1510", + "P": 81.78, + "G(i)": 27.94, + "H_sun": 5.01, + "T2m": 8.39, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201128:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.21, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201128:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.87, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201128:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.36, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201128:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.93, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201128:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.62, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201128:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.17, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201129:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201129:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.31, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201129:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.47, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201129:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.56, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.05, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201129:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.13, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201129:0710", + "P": 0.78, + "G(i)": 5.88, + "H_sun": 3.15, + "T2m": 3.41, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:0810", + "P": 238.8, + "G(i)": 60.16, + "H_sun": 11.18, + "T2m": 4.63, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201129:0910", + "P": 574.02, + "G(i)": 124.52, + "H_sun": 17.59, + "T2m": 6.73, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201129:1010", + "P": 999.96, + "G(i)": 204.39, + "H_sun": 21.85, + "T2m": 8.4, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:1110", + "P": 1959.06, + "G(i)": 386.22, + "H_sun": 23.53, + "T2m": 9.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201129:1210", + "P": 2673.06, + "G(i)": 529.0, + "H_sun": 22.42, + "T2m": 10.76, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201129:1310", + "P": 2537.7, + "G(i)": 502.6, + "H_sun": 18.66, + "T2m": 11.24, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201129:1410", + "P": 710.52, + "G(i)": 152.02, + "H_sun": 12.66, + "T2m": 11.19, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:1510", + "P": 68.46, + "G(i)": 25.05, + "H_sun": 4.92, + "T2m": 10.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 9.46, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201129:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.7, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201129:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.59, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201129:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.84, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201129:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201129:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201129:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201129:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.02, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201130:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201130:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201130:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201130:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201130:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.09, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.17, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:0710", + "P": 5.94, + "G(i)": 7.84, + "H_sun": 2.96, + "T2m": 1.94, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201130:0810", + "P": 309.78, + "G(i)": 74.06, + "H_sun": 11.0, + "T2m": 2.85, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201130:0910", + "P": 299.52, + "G(i)": 71.56, + "H_sun": 17.4, + "T2m": 4.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201130:1010", + "P": 348.6, + "G(i)": 81.36, + "H_sun": 21.67, + "T2m": 5.51, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201130:1110", + "P": 393.18, + "G(i)": 90.18, + "H_sun": 23.36, + "T2m": 6.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201130:1210", + "P": 381.0, + "G(i)": 88.22, + "H_sun": 22.27, + "T2m": 7.61, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1310", + "P": 293.76, + "G(i)": 71.56, + "H_sun": 18.54, + "T2m": 8.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1410", + "P": 166.32, + "G(i)": 46.07, + "H_sun": 12.56, + "T2m": 8.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1510", + "P": 57.36, + "G(i)": 22.16, + "H_sun": 4.84, + "T2m": 7.68, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201130:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.94, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201130:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.14, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201130:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.3, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201130:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.46, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201130:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.95, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201130:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201130:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.39, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201130:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201201:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.95, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201201:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201201:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201201:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201201:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201201:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.04, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201201:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201201:0710", + "P": 29.58, + "G(i)": 16.97, + "H_sun": 2.78, + "T2m": 2.4, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201201:0810", + "P": 310.32, + "G(i)": 74.1, + "H_sun": 10.82, + "T2m": 2.52, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201201:0910", + "P": 1322.46, + "G(i)": 263.67, + "H_sun": 17.22, + "T2m": 3.42, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201201:1010", + "P": 320.22, + "G(i)": 75.48, + "H_sun": 21.5, + "T2m": 4.24, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201201:1110", + "P": 213.3, + "G(i)": 54.89, + "H_sun": 23.2, + "T2m": 4.79, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201201:1210", + "P": 207.84, + "G(i)": 53.91, + "H_sun": 22.13, + "T2m": 5.37, + "WS10m": 2.34, + "Int": 0.0 + }, + { + "time": "20201201:1310", + "P": 85.26, + "G(i)": 28.43, + "H_sun": 18.42, + "T2m": 5.73, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20201201:1410", + "P": 570.42, + "G(i)": 122.47, + "H_sun": 12.46, + "T2m": 5.69, + "WS10m": 2.76, + "Int": 0.0 + }, + { + "time": "20201201:1510", + "P": 0.0, + "G(i)": 4.82, + "H_sun": 4.76, + "T2m": 5.28, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20201201:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.77, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201201:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.51, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201201:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.1, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201201:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201201:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.26, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201201:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201201:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201201:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.28, + "WS10m": 2.48, + "Int": 0.0 + }, + { + "time": "20201202:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201202:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.34, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201202:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201202:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201202:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201202:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.46, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201202:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.39, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201202:0710", + "P": 0.0, + "G(i)": 4.9, + "H_sun": 2.61, + "T2m": 1.24, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201202:0810", + "P": 25.5, + "G(i)": 13.72, + "H_sun": 10.64, + "T2m": 1.27, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201202:0910", + "P": 410.16, + "G(i)": 91.65, + "H_sun": 17.05, + "T2m": 1.59, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201202:1010", + "P": 186.3, + "G(i)": 49.01, + "H_sun": 21.33, + "T2m": 1.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201202:1110", + "P": 380.52, + "G(i)": 86.26, + "H_sun": 23.04, + "T2m": 2.36, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201202:1210", + "P": 726.84, + "G(i)": 149.61, + "H_sun": 22.0, + "T2m": 2.45, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201202:1310", + "P": 175.98, + "G(i)": 47.05, + "H_sun": 18.31, + "T2m": 2.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201202:1410", + "P": 310.8, + "G(i)": 73.28, + "H_sun": 12.37, + "T2m": 2.61, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201202:1510", + "P": 0.0, + "G(i)": 4.82, + "H_sun": 4.69, + "T2m": 2.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201202:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.34, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201202:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201202:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.29, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201202:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.55, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201202:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.64, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201202:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201202:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.4, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201202:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201203:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.67, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201203:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201203:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201203:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.7, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201203:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201203:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201203:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201203:0710", + "P": 12.24, + "G(i)": 9.8, + "H_sun": 2.44, + "T2m": -2.43, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201203:0810", + "P": 496.5, + "G(i)": 112.43, + "H_sun": 10.47, + "T2m": -1.01, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201203:0910", + "P": 715.92, + "G(i)": 148.14, + "H_sun": 16.88, + "T2m": 1.33, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201203:1010", + "P": 986.88, + "G(i)": 198.32, + "H_sun": 21.16, + "T2m": 3.79, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201203:1110", + "P": 942.9, + "G(i)": 191.12, + "H_sun": 22.9, + "T2m": 5.26, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201203:1210", + "P": 787.8, + "G(i)": 163.18, + "H_sun": 21.87, + "T2m": 6.36, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201203:1310", + "P": 727.62, + "G(i)": 152.14, + "H_sun": 18.2, + "T2m": 6.82, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201203:1410", + "P": 334.86, + "G(i)": 78.98, + "H_sun": 12.29, + "T2m": 6.72, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201203:1510", + "P": 70.26, + "G(i)": 25.05, + "H_sun": 4.63, + "T2m": 5.97, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201203:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.7, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201203:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.07, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201203:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.76, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201203:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.51, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201203:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201203:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.15, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201203:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201203:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201204:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.03, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201204:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201204:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201204:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201204:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201204:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.12, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201204:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201204:0810", + "P": 124.26, + "G(i)": 36.27, + "H_sun": 10.3, + "T2m": 0.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201204:0910", + "P": 263.04, + "G(i)": 63.72, + "H_sun": 16.71, + "T2m": 0.93, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201204:1010", + "P": 257.58, + "G(i)": 62.74, + "H_sun": 21.01, + "T2m": 1.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:1110", + "P": 162.42, + "G(i)": 44.11, + "H_sun": 22.75, + "T2m": 1.31, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201204:1210", + "P": 499.68, + "G(i)": 107.83, + "H_sun": 21.75, + "T2m": 1.42, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201204:1310", + "P": 221.88, + "G(i)": 55.87, + "H_sun": 18.1, + "T2m": 1.39, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201204:1410", + "P": 467.34, + "G(i)": 101.84, + "H_sun": 12.21, + "T2m": 1.42, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201204:1510", + "P": 80.7, + "G(i)": 26.98, + "H_sun": 4.57, + "T2m": 1.26, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201204:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.78, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201204:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201204:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201204:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.09, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201204:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.56, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201204:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.03, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201205:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201205:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.85, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201205:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.61, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.21, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201205:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.78, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201205:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201205:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201205:0810", + "P": 53.34, + "G(i)": 20.59, + "H_sun": 10.14, + "T2m": -0.76, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201205:0910", + "P": 69.96, + "G(i)": 24.51, + "H_sun": 16.56, + "T2m": 0.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201205:1010", + "P": 253.5, + "G(i)": 61.76, + "H_sun": 20.86, + "T2m": 0.37, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201205:1110", + "P": 298.8, + "G(i)": 70.58, + "H_sun": 22.62, + "T2m": 1.35, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201205:1210", + "P": 211.56, + "G(i)": 53.91, + "H_sun": 21.63, + "T2m": 1.7, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201205:1310", + "P": 231.54, + "G(i)": 57.83, + "H_sun": 18.01, + "T2m": 1.79, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201205:1410", + "P": 186.54, + "G(i)": 49.01, + "H_sun": 12.14, + "T2m": 1.75, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201205:1510", + "P": 63.48, + "G(i)": 23.13, + "H_sun": 4.52, + "T2m": 1.7, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201205:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201205:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201205:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201205:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.72, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201205:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201205:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.69, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201205:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.58, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201206:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201206:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.35, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201206:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.57, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201206:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201206:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201206:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.22, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201206:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.25, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201206:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.9, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201206:0810", + "P": 578.64, + "G(i)": 134.58, + "H_sun": 9.99, + "T2m": 1.89, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201206:0910", + "P": 1273.32, + "G(i)": 255.07, + "H_sun": 16.4, + "T2m": 2.88, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201206:1010", + "P": 883.92, + "G(i)": 179.27, + "H_sun": 20.72, + "T2m": 3.76, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201206:1110", + "P": 890.94, + "G(i)": 180.87, + "H_sun": 22.49, + "T2m": 4.52, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201206:1210", + "P": 680.04, + "G(i)": 142.89, + "H_sun": 21.52, + "T2m": 5.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201206:1310", + "P": 1134.66, + "G(i)": 225.55, + "H_sun": 17.93, + "T2m": 5.85, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201206:1410", + "P": 1416.66, + "G(i)": 279.07, + "H_sun": 12.08, + "T2m": 5.85, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201206:1510", + "P": 50.16, + "G(i)": 20.24, + "H_sun": 4.48, + "T2m": 5.09, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201206:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.86, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201206:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201206:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201206:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201206:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201206:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.33, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201206:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.83, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201206:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.51, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201207:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.39, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201207:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.61, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201207:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.64, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201207:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.79, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201207:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.74, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201207:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201207:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.29, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201207:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.5, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201207:0810", + "P": 309.24, + "G(i)": 74.17, + "H_sun": 9.84, + "T2m": 0.9, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201207:0910", + "P": 297.48, + "G(i)": 70.58, + "H_sun": 16.26, + "T2m": 1.73, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201207:1010", + "P": 835.08, + "G(i)": 169.48, + "H_sun": 20.58, + "T2m": 2.29, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201207:1110", + "P": 1041.48, + "G(i)": 206.65, + "H_sun": 22.37, + "T2m": 2.89, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201207:1210", + "P": 160.74, + "G(i)": 44.11, + "H_sun": 21.42, + "T2m": 3.33, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201207:1310", + "P": 189.6, + "G(i)": 49.99, + "H_sun": 17.85, + "T2m": 3.7, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201207:1410", + "P": 209.28, + "G(i)": 53.91, + "H_sun": 12.03, + "T2m": 3.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201207:1510", + "P": 75.3, + "G(i)": 26.02, + "H_sun": 4.44, + "T2m": 3.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201207:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.71, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201207:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.34, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.11, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201207:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201207:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.07, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201207:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.05, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201208:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201208:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.87, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201208:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201208:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201208:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.78, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201208:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.59, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201208:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201208:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201208:0810", + "P": 114.24, + "G(i)": 34.31, + "H_sun": 9.69, + "T2m": 2.04, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201208:0910", + "P": 641.64, + "G(i)": 135.01, + "H_sun": 16.12, + "T2m": 2.52, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201208:1010", + "P": 165.96, + "G(i)": 45.09, + "H_sun": 20.45, + "T2m": 2.92, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201208:1110", + "P": 871.56, + "G(i)": 176.25, + "H_sun": 22.26, + "T2m": 3.45, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201208:1210", + "P": 388.68, + "G(i)": 88.22, + "H_sun": 21.33, + "T2m": 3.72, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201208:1310", + "P": 624.42, + "G(i)": 131.71, + "H_sun": 17.78, + "T2m": 3.96, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201208:1410", + "P": 204.12, + "G(i)": 52.93, + "H_sun": 11.98, + "T2m": 3.99, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201208:1510", + "P": 5.46, + "G(i)": 7.71, + "H_sun": 4.41, + "T2m": 3.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201208:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.55, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201208:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.58, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201208:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.41, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201208:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.87, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201208:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.26, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201208:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.15, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201208:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201208:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.76, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201209:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.51, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.47, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201209:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.31, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201209:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.15, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201209:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.27, + "WS10m": 1.86, + "Int": 0.0 + }, + { + "time": "20201209:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.98, + "WS10m": 2.21, + "Int": 0.0 + }, + { + "time": "20201209:0810", + "P": 170.52, + "G(i)": 46.07, + "H_sun": 9.55, + "T2m": 3.33, + "WS10m": 2.07, + "Int": 0.0 + }, + { + "time": "20201209:0910", + "P": 320.7, + "G(i)": 75.48, + "H_sun": 15.99, + "T2m": 3.96, + "WS10m": 1.72, + "Int": 0.0 + }, + { + "time": "20201209:1010", + "P": 780.36, + "G(i)": 161.36, + "H_sun": 20.33, + "T2m": 5.34, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201209:1110", + "P": 647.28, + "G(i)": 137.73, + "H_sun": 22.15, + "T2m": 6.73, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201209:1210", + "P": 556.32, + "G(i)": 121.46, + "H_sun": 21.25, + "T2m": 7.95, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201209:1310", + "P": 278.94, + "G(i)": 68.62, + "H_sun": 17.72, + "T2m": 8.0, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201209:1410", + "P": 273.42, + "G(i)": 67.45, + "H_sun": 11.94, + "T2m": 7.72, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201209:1510", + "P": 57.6, + "G(i)": 22.16, + "H_sun": 4.39, + "T2m": 7.0, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201209:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201209:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201209:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.83, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201209:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.85, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201209:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.28, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201209:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201209:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201209:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.87, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201210:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.57, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201210:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.16, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201210:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.85, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201210:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.48, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.98, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201210:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.81, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201210:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.84, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.47, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201210:0810", + "P": 385.86, + "G(i)": 92.11, + "H_sun": 9.42, + "T2m": 2.24, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201210:0910", + "P": 607.38, + "G(i)": 129.61, + "H_sun": 15.86, + "T2m": 3.64, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201210:1010", + "P": 1203.48, + "G(i)": 239.73, + "H_sun": 20.22, + "T2m": 4.83, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201210:1110", + "P": 1391.22, + "G(i)": 275.33, + "H_sun": 22.06, + "T2m": 6.08, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:1210", + "P": 2028.0, + "G(i)": 396.41, + "H_sun": 21.17, + "T2m": 6.93, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201210:1310", + "P": 773.16, + "G(i)": 161.47, + "H_sun": 17.66, + "T2m": 7.43, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201210:1410", + "P": 278.46, + "G(i)": 68.44, + "H_sun": 11.9, + "T2m": 7.51, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201210:1510", + "P": 61.56, + "G(i)": 23.13, + "H_sun": 4.37, + "T2m": 7.18, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201210:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.09, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201210:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.61, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201210:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.44, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201210:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.27, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201210:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.91, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201210:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.36, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201210:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201211:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.36, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201211:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201211:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.19, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201211:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.63, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201211:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.26, + "WS10m": 0.0, + "Int": 0.0 + }, + { + "time": "20201211:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.71, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201211:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.4, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201211:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201211:0810", + "P": 254.76, + "G(i)": 63.55, + "H_sun": 9.29, + "T2m": 1.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201211:0910", + "P": 466.26, + "G(i)": 102.59, + "H_sun": 15.74, + "T2m": 2.42, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201211:1010", + "P": 658.2, + "G(i)": 137.83, + "H_sun": 20.11, + "T2m": 2.96, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201211:1110", + "P": 624.3, + "G(i)": 131.85, + "H_sun": 21.96, + "T2m": 3.49, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201211:1210", + "P": 434.82, + "G(i)": 97.04, + "H_sun": 21.1, + "T2m": 4.0, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201211:1310", + "P": 472.44, + "G(i)": 104.1, + "H_sun": 17.61, + "T2m": 4.22, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201211:1410", + "P": 631.26, + "G(i)": 133.3, + "H_sun": 11.87, + "T2m": 4.19, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201211:1510", + "P": 8.16, + "G(i)": 8.67, + "H_sun": 4.36, + "T2m": 4.11, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201211:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.72, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201211:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201211:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201211:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.21, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201211:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.22, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201211:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.25, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201211:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.23, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201211:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.04, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201212:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201212:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.84, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201212:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201212:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.46, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201212:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201212:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201212:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201212:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.01, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201212:0810", + "P": 197.7, + "G(i)": 51.41, + "H_sun": 9.17, + "T2m": 1.23, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201212:0910", + "P": 467.88, + "G(i)": 102.6, + "H_sun": 15.63, + "T2m": 2.13, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201212:1010", + "P": 868.74, + "G(i)": 176.28, + "H_sun": 20.01, + "T2m": 3.24, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201212:1110", + "P": 1447.56, + "G(i)": 282.48, + "H_sun": 21.88, + "T2m": 4.22, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201212:1210", + "P": 2030.76, + "G(i)": 392.16, + "H_sun": 21.04, + "T2m": 5.16, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201212:1310", + "P": 1058.58, + "G(i)": 212.36, + "H_sun": 17.57, + "T2m": 5.73, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201212:1410", + "P": 1117.98, + "G(i)": 224.37, + "H_sun": 11.85, + "T2m": 6.01, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201212:1510", + "P": 49.98, + "G(i)": 20.24, + "H_sun": 4.36, + "T2m": 5.76, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201212:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.82, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201212:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201212:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.87, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201212:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.58, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201212:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201212:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201212:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.9, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201212:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.41, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201213:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.61, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201213:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.07, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.55, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.8, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.02, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.23, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.56, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:0810", + "P": 653.16, + "G(i)": 160.3, + "H_sun": 9.05, + "T2m": 0.04, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201213:0910", + "P": 1698.06, + "G(i)": 342.23, + "H_sun": 15.52, + "T2m": 2.01, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201213:1010", + "P": 2517.3, + "G(i)": 491.81, + "H_sun": 19.91, + "T2m": 4.2, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201213:1110", + "P": 2930.94, + "G(i)": 574.17, + "H_sun": 21.81, + "T2m": 6.01, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201213:1210", + "P": 3041.04, + "G(i)": 599.45, + "H_sun": 20.98, + "T2m": 7.61, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201213:1310", + "P": 2695.98, + "G(i)": 532.26, + "H_sun": 17.54, + "T2m": 8.41, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201213:1410", + "P": 2025.06, + "G(i)": 402.11, + "H_sun": 11.84, + "T2m": 8.57, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201213:1510", + "P": 61.32, + "G(i)": 23.13, + "H_sun": 4.36, + "T2m": 7.9, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201213:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.06, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201213:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201213:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.75, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201213:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.36, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201213:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201213:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201213:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201213:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201214:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201214:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201214:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.1, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201214:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.83, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201214:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.89, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201214:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.14, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201214:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.98, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201214:0810", + "P": 536.88, + "G(i)": 131.15, + "H_sun": 8.94, + "T2m": 1.59, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201214:0910", + "P": 1596.54, + "G(i)": 323.32, + "H_sun": 15.42, + "T2m": 3.05, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:1010", + "P": 2355.96, + "G(i)": 461.38, + "H_sun": 19.82, + "T2m": 5.15, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:1110", + "P": 1922.34, + "G(i)": 376.0, + "H_sun": 21.74, + "T2m": 6.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201214:1210", + "P": 2663.1, + "G(i)": 522.48, + "H_sun": 20.94, + "T2m": 7.93, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201214:1310", + "P": 2538.6, + "G(i)": 498.94, + "H_sun": 17.51, + "T2m": 8.6, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201214:1410", + "P": 1545.48, + "G(i)": 308.47, + "H_sun": 11.83, + "T2m": 8.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201214:1510", + "P": 57.24, + "G(i)": 22.16, + "H_sun": 4.37, + "T2m": 7.9, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201214:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.89, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201214:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.38, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201214:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.67, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201214:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.3, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201214:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.33, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201214:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.66, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201214:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.17, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201214:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201215:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.94, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201215:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201215:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.26, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201215:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.95, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201215:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201215:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.68, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201215:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201215:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.38, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201215:0810", + "P": 403.74, + "G(i)": 98.18, + "H_sun": 8.84, + "T2m": 1.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201215:0910", + "P": 961.68, + "G(i)": 197.13, + "H_sun": 15.32, + "T2m": 3.52, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201215:1010", + "P": 1419.36, + "G(i)": 279.74, + "H_sun": 19.74, + "T2m": 5.0, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201215:1110", + "P": 1287.72, + "G(i)": 255.5, + "H_sun": 21.68, + "T2m": 6.17, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1210", + "P": 1077.12, + "G(i)": 217.36, + "H_sun": 20.9, + "T2m": 7.29, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201215:1310", + "P": 1649.04, + "G(i)": 324.55, + "H_sun": 17.5, + "T2m": 7.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201215:1410", + "P": 387.12, + "G(i)": 89.61, + "H_sun": 11.84, + "T2m": 8.13, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1510", + "P": 65.4, + "G(i)": 24.09, + "H_sun": 4.39, + "T2m": 7.87, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.25, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.2, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201215:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.21, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201215:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201215:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201215:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.62, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201215:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.16, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201216:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.09, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201216:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.49, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201216:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.14, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201216:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201216:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201216:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.74, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201216:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.06, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201216:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.75, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201216:0810", + "P": 236.58, + "G(i)": 60.69, + "H_sun": 8.74, + "T2m": 4.13, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201216:0910", + "P": 362.7, + "G(i)": 83.86, + "H_sun": 15.24, + "T2m": 4.59, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201216:1010", + "P": 953.88, + "G(i)": 194.34, + "H_sun": 19.67, + "T2m": 5.79, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201216:1110", + "P": 1107.96, + "G(i)": 223.21, + "H_sun": 21.62, + "T2m": 6.87, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201216:1210", + "P": 884.76, + "G(i)": 182.04, + "H_sun": 20.86, + "T2m": 7.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201216:1310", + "P": 1655.64, + "G(i)": 325.78, + "H_sun": 17.49, + "T2m": 7.52, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201216:1410", + "P": 533.16, + "G(i)": 116.91, + "H_sun": 11.84, + "T2m": 7.37, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201216:1510", + "P": 73.98, + "G(i)": 26.02, + "H_sun": 4.41, + "T2m": 7.09, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201216:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.48, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201216:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201216:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.72, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201216:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.07, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201216:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.2, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201216:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201216:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.13, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201216:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.9, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.77, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.33, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201217:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.37, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.22, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.88, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201217:0810", + "P": 493.92, + "G(i)": 123.07, + "H_sun": 8.65, + "T2m": 3.95, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201217:0910", + "P": 1591.86, + "G(i)": 325.73, + "H_sun": 15.16, + "T2m": 5.53, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201217:1010", + "P": 2343.78, + "G(i)": 459.55, + "H_sun": 19.61, + "T2m": 6.82, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201217:1110", + "P": 2700.54, + "G(i)": 529.13, + "H_sun": 21.58, + "T2m": 8.2, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201217:1210", + "P": 2898.6, + "G(i)": 571.66, + "H_sun": 20.84, + "T2m": 8.96, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201217:1310", + "P": 2581.92, + "G(i)": 511.31, + "H_sun": 17.48, + "T2m": 9.52, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201217:1410", + "P": 2164.02, + "G(i)": 432.64, + "H_sun": 11.86, + "T2m": 9.65, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201217:1510", + "P": 48.96, + "G(i)": 20.24, + "H_sun": 4.44, + "T2m": 9.23, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201217:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.79, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201217:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.19, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201217:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.99, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201217:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201217:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.51, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201217:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201217:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.23, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201217:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.52, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201218:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.08, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201218:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.45, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.16, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201218:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.81, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.68, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.5, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201218:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.61, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201218:0810", + "P": 376.62, + "G(i)": 93.02, + "H_sun": 8.56, + "T2m": 2.81, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201218:0910", + "P": 910.02, + "G(i)": 188.06, + "H_sun": 15.08, + "T2m": 3.73, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201218:1010", + "P": 1238.04, + "G(i)": 246.69, + "H_sun": 19.55, + "T2m": 5.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201218:1110", + "P": 1423.14, + "G(i)": 281.7, + "H_sun": 21.54, + "T2m": 6.89, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1210", + "P": 2194.74, + "G(i)": 430.33, + "H_sun": 20.82, + "T2m": 8.1, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1310", + "P": 2511.9, + "G(i)": 495.67, + "H_sun": 17.49, + "T2m": 8.93, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1410", + "P": 1949.82, + "G(i)": 388.52, + "H_sun": 11.88, + "T2m": 9.19, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201218:1510", + "P": 69.12, + "G(i)": 25.05, + "H_sun": 4.48, + "T2m": 8.9, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201218:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.97, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201218:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.7, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201218:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.02, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201218:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201218:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.15, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201218:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201218:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.4, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201218:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.06, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201219:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.69, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201219:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.08, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201219:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.77, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201219:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.91, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201219:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.13, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201219:0810", + "P": 381.0, + "G(i)": 95.41, + "H_sun": 8.49, + "T2m": 4.45, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:0910", + "P": 726.12, + "G(i)": 153.75, + "H_sun": 15.02, + "T2m": 5.45, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201219:1010", + "P": 316.2, + "G(i)": 75.48, + "H_sun": 19.5, + "T2m": 6.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201219:1110", + "P": 601.68, + "G(i)": 129.91, + "H_sun": 21.51, + "T2m": 7.5, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201219:1210", + "P": 288.96, + "G(i)": 70.58, + "H_sun": 20.81, + "T2m": 7.74, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201219:1310", + "P": 400.5, + "G(i)": 92.14, + "H_sun": 17.5, + "T2m": 7.92, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201219:1410", + "P": 253.08, + "G(i)": 63.51, + "H_sun": 11.91, + "T2m": 7.81, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201219:1510", + "P": 78.06, + "G(i)": 26.98, + "H_sun": 4.52, + "T2m": 7.44, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201219:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.85, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201219:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201219:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.02, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201219:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.3, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201219:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.9, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201219:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.81, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201219:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.73, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.83, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.97, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.11, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201220:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.12, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201220:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.1, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201220:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.92, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.21, + "WS10m": 0.07, + "Int": 0.0 + }, + { + "time": "20201220:0810", + "P": 107.22, + "G(i)": 33.33, + "H_sun": 8.41, + "T2m": 6.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201220:0910", + "P": 231.06, + "G(i)": 58.81, + "H_sun": 14.96, + "T2m": 6.29, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201220:1010", + "P": 330.6, + "G(i)": 78.42, + "H_sun": 19.46, + "T2m": 7.05, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201220:1110", + "P": 264.84, + "G(i)": 65.68, + "H_sun": 21.48, + "T2m": 7.15, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201220:1210", + "P": 381.3, + "G(i)": 88.22, + "H_sun": 20.81, + "T2m": 7.26, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201220:1310", + "P": 157.38, + "G(i)": 44.11, + "H_sun": 17.51, + "T2m": 7.36, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201220:1410", + "P": 308.4, + "G(i)": 74.16, + "H_sun": 11.94, + "T2m": 7.25, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:1510", + "P": 49.56, + "G(i)": 20.24, + "H_sun": 4.57, + "T2m": 7.21, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.98, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.74, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201220:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.57, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.22, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201220:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.95, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201220:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.46, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201220:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201220:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.87, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201221:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.67, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201221:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.3, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201221:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.84, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201221:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201221:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.93, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201221:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.8, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201221:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201221:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.89, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201221:0810", + "P": 164.46, + "G(i)": 45.55, + "H_sun": 8.35, + "T2m": 5.12, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201221:0910", + "P": 737.52, + "G(i)": 155.89, + "H_sun": 14.9, + "T2m": 5.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201221:1010", + "P": 306.36, + "G(i)": 73.52, + "H_sun": 19.42, + "T2m": 6.27, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201221:1110", + "P": 750.66, + "G(i)": 157.33, + "H_sun": 21.47, + "T2m": 7.12, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201221:1210", + "P": 734.94, + "G(i)": 154.58, + "H_sun": 20.82, + "T2m": 7.66, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201221:1310", + "P": 1267.32, + "G(i)": 252.73, + "H_sun": 17.54, + "T2m": 7.76, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201221:1410", + "P": 767.76, + "G(i)": 160.89, + "H_sun": 11.99, + "T2m": 7.83, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201221:1510", + "P": 73.8, + "G(i)": 26.02, + "H_sun": 4.63, + "T2m": 7.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201221:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.06, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201221:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.6, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201221:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.27, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201221:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.01, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201221:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201221:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.81, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201221:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.58, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201221:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201222:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.28, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.89, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201222:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.97, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.92, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.82, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.69, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201222:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.6, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.88, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201222:0810", + "P": 252.72, + "G(i)": 65.11, + "H_sun": 8.29, + "T2m": 4.86, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201222:0910", + "P": 492.96, + "G(i)": 109.25, + "H_sun": 14.86, + "T2m": 5.91, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201222:1010", + "P": 315.0, + "G(i)": 75.48, + "H_sun": 19.39, + "T2m": 7.26, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201222:1110", + "P": 1012.02, + "G(i)": 206.48, + "H_sun": 21.46, + "T2m": 8.29, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201222:1210", + "P": 516.12, + "G(i)": 114.6, + "H_sun": 20.83, + "T2m": 9.28, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:1310", + "P": 502.14, + "G(i)": 112.17, + "H_sun": 17.57, + "T2m": 9.93, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201222:1410", + "P": 885.42, + "G(i)": 184.65, + "H_sun": 12.04, + "T2m": 10.42, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201222:1510", + "P": 76.92, + "G(i)": 26.98, + "H_sun": 4.69, + "T2m": 10.11, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201222:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.79, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201222:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.78, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201222:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.86, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201222:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.23, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201222:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.0, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201222:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201222:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.49, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201222:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.94, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201223:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201223:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.78, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201223:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201223:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.6, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201223:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.71, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201223:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.7, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.9, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201223:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201223:0810", + "P": 98.7, + "G(i)": 31.37, + "H_sun": 8.23, + "T2m": 5.31, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201223:0910", + "P": 311.4, + "G(i)": 74.5, + "H_sun": 14.82, + "T2m": 6.41, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201223:1010", + "P": 519.72, + "G(i)": 114.34, + "H_sun": 19.37, + "T2m": 7.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:1110", + "P": 1389.66, + "G(i)": 275.86, + "H_sun": 21.46, + "T2m": 8.1, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201223:1210", + "P": 283.02, + "G(i)": 69.6, + "H_sun": 20.85, + "T2m": 8.71, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201223:1310", + "P": 114.54, + "G(i)": 35.29, + "H_sun": 17.61, + "T2m": 9.17, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201223:1410", + "P": 132.84, + "G(i)": 39.21, + "H_sun": 12.09, + "T2m": 9.12, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201223:1510", + "P": 41.46, + "G(i)": 18.31, + "H_sun": 4.76, + "T2m": 8.79, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201223:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.23, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201223:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.8, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201223:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.66, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201223:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.31, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201223:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.14, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201223:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.08, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.97, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201223:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.91, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201224:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.88, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.83, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201224:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.78, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201224:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201224:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.62, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201224:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.64, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201224:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.48, + "WS10m": 0.21, + "Int": 0.0 + }, + { + "time": "20201224:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.3, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201224:0810", + "P": 184.08, + "G(i)": 49.93, + "H_sun": 8.19, + "T2m": 5.51, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201224:0910", + "P": 271.14, + "G(i)": 66.66, + "H_sun": 14.79, + "T2m": 6.21, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201224:1010", + "P": 1213.5, + "G(i)": 243.89, + "H_sun": 19.36, + "T2m": 7.09, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:1110", + "P": 385.38, + "G(i)": 89.2, + "H_sun": 21.47, + "T2m": 7.96, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201224:1210", + "P": 1668.12, + "G(i)": 328.21, + "H_sun": 20.88, + "T2m": 8.58, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201224:1310", + "P": 257.64, + "G(i)": 64.7, + "H_sun": 17.66, + "T2m": 9.01, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201224:1410", + "P": 193.98, + "G(i)": 51.95, + "H_sun": 12.15, + "T2m": 9.26, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201224:1510", + "P": 81.6, + "G(i)": 27.94, + "H_sun": 4.83, + "T2m": 9.04, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201224:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 8.27, + "WS10m": 1.52, + "Int": 0.0 + }, + { + "time": "20201224:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 7.45, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201224:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.55, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201224:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 6.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201224:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.87, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.13, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201224:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.56, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201224:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.0, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.83, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201225:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.23, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201225:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.46, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201225:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.2, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201225:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201225:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201225:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.0, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201225:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.22, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201225:0810", + "P": 11.76, + "G(i)": 9.8, + "H_sun": 8.15, + "T2m": 3.07, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:0910", + "P": 700.8, + "G(i)": 148.01, + "H_sun": 14.76, + "T2m": 4.16, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201225:1010", + "P": 107.58, + "G(i)": 33.33, + "H_sun": 19.35, + "T2m": 5.6, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201225:1110", + "P": 172.08, + "G(i)": 47.05, + "H_sun": 21.48, + "T2m": 6.93, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201225:1210", + "P": 550.8, + "G(i)": 120.48, + "H_sun": 20.92, + "T2m": 7.88, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201225:1310", + "P": 338.1, + "G(i)": 80.38, + "H_sun": 17.72, + "T2m": 8.73, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:1410", + "P": 316.98, + "G(i)": 76.04, + "H_sun": 12.22, + "T2m": 8.35, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201225:1510", + "P": 86.7, + "G(i)": 28.91, + "H_sun": 4.91, + "T2m": 7.22, + "WS10m": 2.55, + "Int": 0.0 + }, + { + "time": "20201225:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.59, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201225:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.78, + "WS10m": 1.45, + "Int": 0.0 + }, + { + "time": "20201225:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 4.5, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201225:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.54, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201225:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201225:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.19, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201225:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201225:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.88, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201226:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.54, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201226:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.45, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201226:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.33, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.12, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.17, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.4, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201226:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.34, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201226:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.28, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201226:0810", + "P": 592.86, + "G(i)": 155.17, + "H_sun": 8.11, + "T2m": 1.31, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201226:0910", + "P": 1665.96, + "G(i)": 340.32, + "H_sun": 14.74, + "T2m": 2.45, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201226:1010", + "P": 2513.82, + "G(i)": 495.8, + "H_sun": 19.35, + "T2m": 5.31, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201226:1110", + "P": 2996.34, + "G(i)": 588.51, + "H_sun": 21.51, + "T2m": 6.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201226:1210", + "P": 3063.6, + "G(i)": 601.33, + "H_sun": 20.96, + "T2m": 7.5, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201226:1310", + "P": 2881.92, + "G(i)": 565.87, + "H_sun": 17.78, + "T2m": 7.85, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201226:1410", + "P": 2217.9, + "G(i)": 436.79, + "H_sun": 12.3, + "T2m": 7.75, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201226:1510", + "P": 41.88, + "G(i)": 18.31, + "H_sun": 5.0, + "T2m": 7.03, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201226:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 5.1, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201226:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.9, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201226:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201226:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.79, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201226:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.44, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201226:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.35, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201226:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.7, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201226:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.14, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201227:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.23, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201227:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.97, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201227:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.54, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201227:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.79, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201227:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.98, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.29, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201227:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.61, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201227:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.11, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201227:0810", + "P": 391.62, + "G(i)": 95.25, + "H_sun": 8.09, + "T2m": -3.44, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201227:0910", + "P": 871.38, + "G(i)": 176.91, + "H_sun": 14.73, + "T2m": -0.89, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:1010", + "P": 1160.52, + "G(i)": 226.79, + "H_sun": 19.36, + "T2m": 0.57, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201227:1110", + "P": 862.5, + "G(i)": 173.38, + "H_sun": 21.54, + "T2m": 1.37, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201227:1210", + "P": 1525.2, + "G(i)": 292.42, + "H_sun": 21.01, + "T2m": 1.87, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201227:1310", + "P": 1238.46, + "G(i)": 240.95, + "H_sun": 17.85, + "T2m": 2.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:1410", + "P": 1067.88, + "G(i)": 210.67, + "H_sun": 12.38, + "T2m": 1.81, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201227:1510", + "P": 111.9, + "G(i)": 33.73, + "H_sun": 5.09, + "T2m": 1.24, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201227:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201227:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.42, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201227:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.71, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201227:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.94, + "WS10m": 1.66, + "Int": 0.0 + }, + { + "time": "20201227:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.82, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201227:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.89, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201227:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.01, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201227:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.99, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201228:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201228:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.03, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.97, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201228:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.92, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201228:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.82, + "WS10m": 2.28, + "Int": 0.0 + }, + { + "time": "20201228:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.03, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201228:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.11, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201228:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.44, + "WS10m": 1.79, + "Int": 0.0 + }, + { + "time": "20201228:0810", + "P": 145.14, + "G(i)": 40.19, + "H_sun": 8.07, + "T2m": -1.41, + "WS10m": 1.93, + "Int": 0.0 + }, + { + "time": "20201228:0910", + "P": 521.16, + "G(i)": 111.16, + "H_sun": 14.73, + "T2m": -0.84, + "WS10m": 2.14, + "Int": 0.0 + }, + { + "time": "20201228:1010", + "P": 754.08, + "G(i)": 152.9, + "H_sun": 19.38, + "T2m": -0.03, + "WS10m": 2.0, + "Int": 0.0 + }, + { + "time": "20201228:1110", + "P": 1155.84, + "G(i)": 224.84, + "H_sun": 21.58, + "T2m": 0.63, + "WS10m": 1.59, + "Int": 0.0 + }, + { + "time": "20201228:1210", + "P": 1278.6, + "G(i)": 247.41, + "H_sun": 21.07, + "T2m": 0.99, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201228:1310", + "P": 1338.6, + "G(i)": 258.4, + "H_sun": 17.93, + "T2m": 1.11, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201228:1410", + "P": 1594.38, + "G(i)": 305.73, + "H_sun": 12.47, + "T2m": 1.18, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201228:1510", + "P": 85.8, + "G(i)": 27.94, + "H_sun": 5.19, + "T2m": -0.39, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.47, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201228:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.39, + "WS10m": 1.24, + "Int": 0.0 + }, + { + "time": "20201228:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.92, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.68, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201228:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.3, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201228:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.34, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201228:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.18, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201228:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.46, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201229:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -4.38, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.43, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201229:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.42, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201229:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.73, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -6.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201229:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -6.77, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201229:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -6.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201229:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -5.91, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201229:0810", + "P": 308.58, + "G(i)": 75.63, + "H_sun": 8.05, + "T2m": -4.33, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201229:0910", + "P": 1477.86, + "G(i)": 292.65, + "H_sun": 14.73, + "T2m": -3.42, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:1010", + "P": 526.14, + "G(i)": 111.38, + "H_sun": 19.4, + "T2m": -1.74, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201229:1110", + "P": 373.62, + "G(i)": 84.3, + "H_sun": 21.62, + "T2m": 0.27, + "WS10m": 1.1, + "Int": 0.0 + }, + { + "time": "20201229:1210", + "P": 1111.98, + "G(i)": 217.83, + "H_sun": 21.14, + "T2m": 1.25, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201229:1310", + "P": 2051.64, + "G(i)": 390.11, + "H_sun": 18.01, + "T2m": 1.71, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201229:1410", + "P": 1126.08, + "G(i)": 221.57, + "H_sun": 12.57, + "T2m": 1.79, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201229:1510", + "P": 111.72, + "G(i)": 33.73, + "H_sun": 5.29, + "T2m": 1.56, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.37, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201229:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.08, + "WS10m": 1.38, + "Int": 0.0 + }, + { + "time": "20201229:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.63, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201229:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.17, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201229:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.94, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201229:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.0, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201229:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201229:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.47, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.0, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201230:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.64, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.04, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201230:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.98, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201230:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.24, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.66, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.74, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.68, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:0810", + "P": 57.6, + "G(i)": 21.57, + "H_sun": 8.05, + "T2m": -0.8, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:0910", + "P": 207.9, + "G(i)": 52.93, + "H_sun": 14.74, + "T2m": 0.22, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:1010", + "P": 424.2, + "G(i)": 94.1, + "H_sun": 19.44, + "T2m": 1.47, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201230:1110", + "P": 1514.64, + "G(i)": 292.62, + "H_sun": 21.68, + "T2m": 2.56, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201230:1210", + "P": 785.16, + "G(i)": 161.29, + "H_sun": 21.21, + "T2m": 3.71, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201230:1310", + "P": 1204.26, + "G(i)": 238.7, + "H_sun": 18.1, + "T2m": 4.76, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201230:1410", + "P": 2101.98, + "G(i)": 410.49, + "H_sun": 12.67, + "T2m": 4.98, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201230:1510", + "P": 58.5, + "G(i)": 22.16, + "H_sun": 5.4, + "T2m": 4.07, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201230:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.69, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201230:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 3.04, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201230:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 2.69, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201230:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.06, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201230:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.37, + "WS10m": 0.97, + "Int": 0.0 + }, + { + "time": "20201230:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.83, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201230:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.21, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201230:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.38, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201231:0010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.4, + "WS10m": 0.34, + "Int": 0.0 + }, + { + "time": "20201231:0110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -1.51, + "WS10m": 0.28, + "Int": 0.0 + }, + { + "time": "20201231:0210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.09, + "WS10m": 0.41, + "Int": 0.0 + }, + { + "time": "20201231:0310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.53, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201231:0410", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -2.81, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201231:0510", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.0, + "WS10m": 0.62, + "Int": 0.0 + }, + { + "time": "20201231:0610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.48, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201231:0710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -3.37, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201231:0810", + "P": 498.66, + "G(i)": 126.47, + "H_sun": 8.05, + "T2m": -2.74, + "WS10m": 1.31, + "Int": 0.0 + }, + { + "time": "20201231:0910", + "P": 1467.96, + "G(i)": 292.28, + "H_sun": 14.76, + "T2m": -1.74, + "WS10m": 1.17, + "Int": 0.0 + }, + { + "time": "20201231:1010", + "P": 2619.0, + "G(i)": 498.7, + "H_sun": 19.48, + "T2m": -1.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201231:1110", + "P": 2190.24, + "G(i)": 412.74, + "H_sun": 21.74, + "T2m": -0.46, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201231:1210", + "P": 2579.1, + "G(i)": 486.25, + "H_sun": 21.29, + "T2m": 0.18, + "WS10m": 0.76, + "Int": 0.0 + }, + { + "time": "20201231:1310", + "P": 1093.44, + "G(i)": 214.21, + "H_sun": 18.2, + "T2m": 1.05, + "WS10m": 0.83, + "Int": 0.0 + }, + { + "time": "20201231:1410", + "P": 1263.6, + "G(i)": 246.11, + "H_sun": 12.78, + "T2m": 1.43, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201231:1510", + "P": 121.02, + "G(i)": 35.65, + "H_sun": 5.52, + "T2m": 1.29, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201231:1610", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.58, + "WS10m": 0.55, + "Int": 0.0 + }, + { + "time": "20201231:1710", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.06, + "WS10m": 0.69, + "Int": 0.0 + }, + { + "time": "20201231:1810", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": -0.65, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201231:1910", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 0.14, + "Int": 0.0 + }, + { + "time": "20201231:2010", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 1.81, + "WS10m": 0.48, + "Int": 0.0 + }, + { + "time": "20201231:2110", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.54, + "WS10m": 1.03, + "Int": 0.0 + }, + { + "time": "20201231:2210", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.52, + "WS10m": 0.9, + "Int": 0.0 + }, + { + "time": "20201231:2310", + "P": 0.0, + "G(i)": 0.0, + "H_sun": 0.0, + "T2m": 0.35, + "WS10m": 0.97, + "Int": 0.0 + } + ] + }, + "meta": { + "inputs": { + "location": { + "description": "Selected location", + "variables": { + "latitude": { + "description": "Latitude", + "units": "decimal degree" + }, + "longitude": { + "description": "Longitude", + "units": "decimal degree" + }, + "elevation": { + "description": "Elevation", + "units": "m" + } + } + }, + "meteo_data": { + "description": "Sources of meteorological data", + "variables": { + "radiation_db": { + "description": "Solar radiation database" + }, + "meteo_db": { + "description": "Database used for meteorological variables other than solar radiation" + }, + "year_min": { + "description": "First year of the calculations" + }, + "year_max": { + "description": "Last year of the calculations" + }, + "use_horizon": { + "description": "Include horizon shadows" + }, + "horizon_db": { + "description": "Source of horizon data" + } + } + }, + "mounting_system": { + "description": "Mounting system", + "choices": "fixed, vertical_axis, inclined_axis, two_axis", + "fields": { + "slope": { + "description": "Inclination angle from the horizontal plane", + "units": "degree" + }, + "azimuth": { + "description": "Orientation (azimuth) angle of the (fixed) PV system (0 = S, 90 = W, -90 = E)", + "units": "degree" + } + } + }, + "pv_module": { + "description": "PV module parameters", + "variables": { + "technology": { + "description": "PV technology" + }, + "peak_power": { + "description": "Nominal (peak) power of the PV module", + "units": "kW" + }, + "system_loss": { + "description": "Sum of system losses", + "units": "%" + } + } + } + }, + "outputs": { + "hourly": { + "type": "time series", + "timestamp": "hourly averages", + "variables": { + "P": { + "description": "PV system power", + "units": "W" + }, + "G(i)": { + "description": "Global irradiance on the inclined plane (plane of the array)", + "units": "W/m2" + }, + "H_sun": { + "description": "Sun height", + "units": "degree" + }, + "T2m": { + "description": "2-m air temperature", + "units": "degree Celsius" + }, + "WS10m": { + "description": "10-m total wind speed", + "units": "m/s" + }, + "Int": { + "description": "1 means solar radiation values are reconstructed" + } + } + } + } + } +} diff --git a/pvtools/jest.config.js b/pvtoolsOld/jest.config.js similarity index 100% rename from pvtools/jest.config.js rename to pvtoolsOld/jest.config.js diff --git a/pvtools/nuxt.config.js b/pvtoolsOld/nuxt.config.js similarity index 100% rename from pvtools/nuxt.config.js rename to pvtoolsOld/nuxt.config.js diff --git a/pvtoolsOld/package-lock.json b/pvtoolsOld/package-lock.json new file mode 100644 index 0000000..48ffad9 --- /dev/null +++ b/pvtoolsOld/package-lock.json @@ -0,0 +1,17306 @@ +{ + "name": "pvtools", + "version": "1.0.0", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "pvtools", + "version": "1.0.0", + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.5.1", + "@fortawesome/free-solid-svg-icons": "^6.5.1", + "@fortawesome/vue-fontawesome": "^2.0.10", + "@nuxtjs/axios": "^5.13.6", + "@nuxtjs/google-analytics": "^2.4.0", + "bootstrap": "^4.6.2", + "bootstrap-vue": "^2.21.2", + "chart.js": "^3.9.1", + "core-js": "^3.34.0", + "nuxt": "^2.17.2", + "papaparse": "^5.4.1", + "vue": "^2.7.15", + "vue-chartjs": "^4.1.2", + "vue-gtag": "^1.16.1", + "vue-server-renderer": "^2.7.15", + "vue-template-compiler": "^2.7.15", + "webpack": "^4.47.0" + }, + "devDependencies": { + "csv-parse": "^5.5.2", + "jest": "^28.1.3", + "prettier": "^3.1.1" + } + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/code-frame/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/code-frame/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/code-frame/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/code-frame/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.23.5.tgz", + "integrity": "sha512-uU27kfDRlhfKl+w1U6vp16IuvSLtjAxdArVXPa9BvLkrr7CYIsxH5adpHObeAGY/41+syctUWOZ140a2Rvkgjw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.6.tgz", + "integrity": "sha512-FxpRyGjrMJXh7X3wGLGhNDCRiwpWEF74sKjTLDJSG5Kyvow3QZaG0Adbqzi9ZrVjTWpsX+2cxWXD71NMg93kdw==", + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.23.6", + "@babel/parser": "^7.23.6", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==" + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-create-class-features-plugin": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.23.6.tgz", + "integrity": "sha512-cBXU1vZni/CpGF29iTu4YRbOZt3Wat6zCoMDxRF1MayiEc4URxOj31tT65HUM0CRpMowA3HCJaAOVOUnMf96cw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-create-regexp-features-plugin": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-define-polyfill-provider": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.4.4.tgz", + "integrity": "sha512-QcJMILQCu2jm5TFPGA3lCpJJTeEP+mqeXooG/NZbg/h5FTFi6V0+99ahlRsW8/kRLyb24LZVCCiclDedhLKcBA==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", + "debug": "^4.1.1", + "lodash.debounce": "^4.0.8", + "resolve": "^1.14.2" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-member-expression-to-functions": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", + "dependencies": { + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-optimise-call-expression": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-remap-async-to-generator": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-replace-supers": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.22.20.tgz", + "integrity": "sha512-qsW0In3dbwQUbK8kejJ4R7IHVGwHJlV6lpG6UA7a9hSa2YEiAib+N1T2kr6PEeUT+Fl7najmSOS6SmAwCHK6Tw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.22.15", + "@babel/helper-optimise-call-expression": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-skip-transparent-expression-wrappers": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-wrap-function": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", + "dependencies": { + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.6.tgz", + "integrity": "sha512-wCfsbN4nBidDRhpDhvcKlzHWCTlgJYUUdSJfzXb2NuBssDSIjc3xcb+znA7l+zYsFljAcGM0aFkN40cR3lXiGA==", + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.6", + "@babel/types": "^7.23.6" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@babel/highlight/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@babel/highlight/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/highlight/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.6.tgz", + "integrity": "sha512-Z2uID7YJ7oNvAI20O9X0bblw7Qqs8Q2hFy0R9tAfnfLkp5MW0UH9eUvnDSnFwKZ0AvgS1ucqR4KzvVHgnke1VQ==", + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.23.3.tgz", + "integrity": "sha512-iRkKcCqb7iGnq9+3G6rZ+Ciz5VywC4XNRHe57lKM+jOeYAoR0lVqdeeDRfh0tQcTfw/+vBhHn926FmQhLtlFLQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.23.3.tgz", + "integrity": "sha512-WwlxbfMNdVEpQjZmK5mhm7oSwD3dS6eU+Iwsi4Knl9wAletWem7kaRsGOG+8UEbRyqxY4SS5zvtfXwX+jMxUwQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.13.0" + } + }, + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.23.3.tgz", + "integrity": "sha512-XaJak1qcityzrX0/IU5nKHb34VaibwP3saKqG6a/tppelgllOH13LUann4ZCIBcVOeE6H18K4Vx9QKkVww3z/w==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-proposal-class-properties": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", + "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-class-properties instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-decorators": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-decorators/-/plugin-proposal-decorators-7.23.6.tgz", + "integrity": "sha512-D7Ccq9LfkBFnow3azZGJvZYgcfeqAw3I1e5LoTpj6UKIFQilh8yqXsIGcRIqbBdsPWIz+Ze7ZZfggSj62Qp+Fg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/plugin-syntax-decorators": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", + "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-nullish-coalescing-operator instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.18.6", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-optional-chaining": { + "version": "7.21.0", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.21.0.tgz", + "integrity": "sha512-p4zeefM72gpmEe2fkUr/OnOXpWEf8nAgk7ZYVqqfFiyIG7oFfVZcCrU64hWn5xp4tQ9LkV4bTIa5rD0KANpKNA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-optional-chaining instead.", + "dependencies": { + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-methods": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", + "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-methods instead.", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.11", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.11.tgz", + "integrity": "sha512-0QZ8qP/3RLDVBwBFoWAwCtgcDZJVwA5LUJRZU8x2YFfKNuFq161wK3cuGrALu5yiPu+vzwTAg/sMWVNeWeNyaw==", + "deprecated": "This proposal has been merged to the ECMAScript standard and thus this plugin is no longer maintained. Please use @babel/plugin-transform-private-property-in-object instead.", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.18.6", + "@babel/helper-create-class-features-plugin": "^7.21.0", + "@babel/helper-plugin-utils": "^7.20.2", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-static-block": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-static-block/-/plugin-syntax-class-static-block-7.14.5.tgz", + "integrity": "sha512-b+YyPmr6ldyNnM6sqYeMWE+bgJcJpO6yS4QD7ymxgH34GBPNDM/THBh8iunyvKIZztiwLH4CJZ0RxTk9emgpjw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.23.3.tgz", + "integrity": "sha512-cf7Niq4/+/juY67E0PbgH0TDhLQ5J7zS8C/Q5FFx+DWyrRa9sUQdTXkjqKu8zGvuqr7vw1muKiukseihU+PJDA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-dynamic-import": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-dynamic-import/-/plugin-syntax-dynamic-import-7.8.3.tgz", + "integrity": "sha512-5gdGbFon+PszYzqs83S3E5mpi7/y/8M9eC90MRTZfduQOYW76ig6SOSPNe41IG5LoP3FGBn2N0RjVDSQiS94kQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-export-namespace-from": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-export-namespace-from/-/plugin-syntax-export-namespace-from-7.8.3.tgz", + "integrity": "sha512-MXf5laXo6c1IbEbegDmzGPwGNTsHZmEy6QGznu5Sh2UCWvueywb2ee+CCE4zQiZstxU9BMoQO9i6zUFSY0Kj0Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-assertions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.23.3.tgz", + "integrity": "sha512-lPgDSU+SJLK3xmFDTV2ZRQAiM7UuUjGidwBywFavObCiZc1BeAAcMtHJKUya92hPHO+at63JJPLygilZard8jw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.23.3.tgz", + "integrity": "sha512-pawnE0P9g10xgoP7yKr6CK63K2FMsTE+FZidZO/1PwRdzmAPVs+HS1mAURUsgaoxammTJvULUdIkEK0gOcU2tA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.23.3.tgz", + "integrity": "sha512-EB2MELswq55OHUoRZLGg/zC7QWUKfNLpE57m/S2yr1uEneIgsTgrSzXP3NXEsMkVn76OlaVVnzN+ugObuYGwhg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-private-property-in-object": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-private-property-in-object/-/plugin-syntax-private-property-in-object-7.14.5.tgz", + "integrity": "sha512-0wVnp9dxJ72ZUJDV27ZfbSj6iHLoytYZmh3rFcxNnvsJF3ktkzLDZPy/mA17HGsaQT3/DQsWYX1f1QGWkCoVUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.23.3.tgz", + "integrity": "sha512-9EiNjVJOMwCO+43TqoTrgQ8jMwcAd0sWyXi9RPfIsLTj4R2MADDDQXELhffaUx/uJv2AYcxBgPwH6j4TIA4ytQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-arrow-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.23.3.tgz", + "integrity": "sha512-NzQcQrzaQPkaEwoTm4Mhyl8jI1huEL/WWIEvudjTCMJ9aBZNpsJbMASx7EQECtQQPS/DcnFpo0FIh3LvEO9cxQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.23.4.tgz", + "integrity": "sha512-efdkfPhHYTtn0G6n2ddrESE91fgXxjlqLsnUtPWnJs4a4mZIbUaK7ffqKIIUKXSHwcDvaCVX6GXkaJJFqtX7jw==", + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-to-generator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.23.3.tgz", + "integrity": "sha512-A7LFsKi4U4fomjqXJlZg/u0ft/n8/7n7lpffUP/ZULx/DtV9SGlNKZolHH6PE8Xl1ngCc0M11OaeZptXVkfKSw==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-remap-async-to-generator": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoped-functions": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.23.3.tgz", + "integrity": "sha512-vI+0sIaPIO6CNuM9Kk5VmXcMVRiOpDh7w2zZt9GXzmE/9KD70CUEVhvPR/etAeNK/FAEkhxQtXOzVF3EuRL41A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-block-scoping": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.23.4.tgz", + "integrity": "sha512-0QqbP6B6HOh7/8iNR4CQU2Th/bbRtBp4KS9vcaZd1fZ0wSh5Fyssg0UCIHwxh+ka+pNDREbVLQnHCMHKZfPwfw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.23.3.tgz", + "integrity": "sha512-uM+AN8yCIjDPccsKGlw271xjJtGii+xQIF/uMPS8H15L12jZTsLfF4o5vNO7d/oUguOyfdikHGc/yi9ge4SGIg==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.23.4.tgz", + "integrity": "sha512-nsWu/1M+ggti1SOALj3hfx5FXzAY06fwPJsUZD4/A5e1bWi46VUIWtD+kOX6/IdhXGsXBWllLFDSnqSCdUNydQ==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, + "node_modules/@babel/plugin-transform-classes": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.23.5.tgz", + "integrity": "sha512-jvOTR4nicqYC9yzOHIhXG5emiFEOpappSJAl73SDSEDcybD+Puuze8Tnpb9p9qEyYup24tq891gkaygIFvWDqg==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20", + "@babel/helper-split-export-declaration": "^7.22.6", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-computed-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.23.3.tgz", + "integrity": "sha512-dTj83UVTLw/+nbiHqQSFdwO9CbTtwq1DsDqm3CUEtDrZNET5rT5E6bIdTlOftDTDLMYxvxHNEYO4B9SLl8SLZw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/template": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-destructuring": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.23.3.tgz", + "integrity": "sha512-n225npDqjDIr967cMScVKHXJs7rout1q+tt50inyBCPkyZ8KxeI6d+GIbSBTT/w/9WdlWDOej3V9HE5Lgk57gw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dotall-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.23.3.tgz", + "integrity": "sha512-vgnFYDHAKzFaTVp+mneDsIEbnJ2Np/9ng9iviHw3P/KVcgONxpNULEW/51Z/BaFojG2GI2GwwXck5uV1+1NOYQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-duplicate-keys": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.23.3.tgz", + "integrity": "sha512-RrqQ+BQmU3Oyav3J+7/myfvRCq7Tbz+kKLLshUmMwNlDHExbGL7ARhajvoBJEvc+fCguPPu887N+3RRXBVKZUA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.23.4.tgz", + "integrity": "sha512-V6jIbLhdJK86MaLh4Jpghi8ho5fGzt3imHOBu/x0jlBaPYqDoWz4RDXjmMOfnh+JWNaQleEAByZLV0QzBT4YQQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-exponentiation-operator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.23.3.tgz", + "integrity": "sha512-5fhCsl1odX96u7ILKHBj4/Y8vipoqwsJMh4csSA8qFfxrZDEA4Ssku2DyNvMJSmZNOEBT750LfFPbtrnTP90BQ==", + "dependencies": { + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.23.4.tgz", + "integrity": "sha512-GzuSBcKkx62dGzZI1WVgTWvkkz84FZO5TC5T8dl/Tht/rAla6Dg/Mz9Yhypg+ezVACf/rgDuQt3kbWEv7LdUDQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-for-of": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.23.6.tgz", + "integrity": "sha512-aYH4ytZ0qSuBbpfhuofbg/e96oQ7U2w1Aw/UQmKT+1l39uEhUPoFS3fHevDc1G0OvewyDudfMKY1OulczHzWIw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-function-name": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.23.3.tgz", + "integrity": "sha512-I1QXp1LxIvt8yLaib49dRW5Okt7Q4oaxao6tFVKS/anCdEOMtYwWVKoiOA1p34GOWIZjUK0E+zCp7+l1pfQyiw==", + "dependencies": { + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.23.4.tgz", + "integrity": "sha512-81nTOqM1dMwZ/aRXQ59zVubN9wHGqk6UtqRK+/q+ciXmRy8fSolhGVvG09HHRGo4l6fr/c4ZhXUQH0uFW7PZbg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-json-strings": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.23.3.tgz", + "integrity": "sha512-wZ0PIXRxnwZvl9AYpqNUxpZ5BiTGrYt7kueGQ+N5FiQ7RCOD4cm8iShd6S6ggfVIWaJf2EMk8eRzAh52RfP4rQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.23.4.tgz", + "integrity": "sha512-Mc/ALf1rmZTP4JKKEhUwiORU+vcfarFVLfcFiolKUo6sewoxSEgl36ak5t+4WamRsNr6nzjZXQjM35WsU+9vbg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-member-expression-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.23.3.tgz", + "integrity": "sha512-sC3LdDBDi5x96LA+Ytekz2ZPk8i/Ck+DEuDbRAll5rknJ5XRTSaPKEYwomLcs1AA8wg9b3KjIQRsnApj+q51Ag==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-amd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.23.3.tgz", + "integrity": "sha512-vJYQGxeKM4t8hYCKVBlZX/gtIY2I7mRGFNcm85sgXGMTBcoV3QdVtdpbcWEbzbfUIUZKwvgFT82mRvaQIebZzw==", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-commonjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.23.3.tgz", + "integrity": "sha512-aVS0F65LKsdNOtcz6FRCpE4OgsP2OFnW46qNxNIX9h3wuzaNcSQsJysuMwqSibC98HPrf2vCgtxKNwS0DAlgcA==", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-simple-access": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-systemjs": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.23.3.tgz", + "integrity": "sha512-ZxyKGTkF9xT9YJuKQRo19ewf3pXpopuYQd8cDXqNzc3mUNbOME0RKMoZxviQk74hwzfQsEe66dE92MaZbdHKNQ==", + "dependencies": { + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-modules-umd": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.23.3.tgz", + "integrity": "sha512-zHsy9iXX2nIsCBFPud3jKn1IRPWg3Ing1qOZgeKV39m1ZgIdpJqvlWVeiHBZC6ITRG0MfskhYe9cLgntfSFPIg==", + "dependencies": { + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/plugin-transform-new-target": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.23.3.tgz", + "integrity": "sha512-YJ3xKqtJMAT5/TIZnpAR3I+K+WaDowYbN3xyxI8zxx/Gsypwf9B9h0VB+1Nh6ACAAPRS5NSRje0uVv5i79HYGQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.23.4.tgz", + "integrity": "sha512-jHE9EVVqHKAQx+VePv5LLGHjmHSJR76vawFPTdlxR/LVJPfOEGxREQwQfjuZEOPTwG92X3LINSh3M40Rv4zpVA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.23.4.tgz", + "integrity": "sha512-mps6auzgwjRrwKEZA05cOwuDc9FAzoyFS4ZsG/8F43bTLf/TgkJg7QXOrPO1JO599iA3qgK9MXdMGOEC8O1h6Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.23.4.tgz", + "integrity": "sha512-9x9K1YyeQVw0iOXJlIzwm8ltobIIv7j2iLyP2jIhEbqPRQ7ScNgwQufU2I0Gq11VjyG4gI4yMXt2VFags+1N3g==", + "dependencies": { + "@babel/compat-data": "^7.23.3", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.23.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-super": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.23.3.tgz", + "integrity": "sha512-BwQ8q0x2JG+3lxCVFohg+KbQM7plfpBwThdW9A6TMtWwLsbDA01Ek2Zb/AgDN39BiZsExm4qrXxjk+P1/fzGrA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-replace-supers": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.23.4.tgz", + "integrity": "sha512-XIq8t0rJPHf6Wvmbn9nFxU6ao4c7WhghTR5WyV8SrJfUFzyxhCm4nhC+iAp3HFhbAKLfYpgzhJ6t4XCtVwqO5A==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.23.4.tgz", + "integrity": "sha512-ZU8y5zWOfjM5vZ+asjgAPwDaBjJzgufjES89Rs4Lpq63O300R/kOz30WCLo6BxxX6QVEilwSlpClnG5cZaikTA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-parameters": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.23.3.tgz", + "integrity": "sha512-09lMt6UsUb3/34BbECKVbVwrT9bO6lILWln237z7sLaWnMsTi7Yc9fhX5DLpkJzAGfaReXI22wP41SZmnAA3Vw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.23.3.tgz", + "integrity": "sha512-UzqRcRtWsDMTLrRWFvUBDwmw06tCQH9Rl1uAjfh6ijMSmGYQ+fpdB+cnqRC8EMh5tuuxSv0/TejGL+7vyj+50g==", + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.23.4.tgz", + "integrity": "sha512-9G3K1YqTq3F4Vt88Djx1UZ79PDyj+yKRnUy7cZGSMe+a7jkwD259uKKuUzQlPkGam7R+8RJwh5z4xO27fA1o2A==", + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-property-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.23.3.tgz", + "integrity": "sha512-jR3Jn3y7cZp4oEWPFAlRsSWjxKe4PZILGBSd4nis1TsC5qeSpb+nrtihJuDhNI7QHiVbUaiXa0X2RZY3/TI6Nw==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-regenerator": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.23.3.tgz", + "integrity": "sha512-KP+75h0KghBMcVpuKisx3XTu9Ncut8Q8TuvGO4IhY+9D5DFEckQefOuIsB/gQ2tG71lCke4NMrtIPS8pOj18BQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "regenerator-transform": "^0.15.2" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-reserved-words": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.23.3.tgz", + "integrity": "sha512-QnNTazY54YqgGxwIexMZva9gqbPa15t/x9VS+0fsEFWplwVpXYZivtgl43Z1vMpc1bdPP2PP8siFeVcnFvA3Cg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-runtime": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-runtime/-/plugin-transform-runtime-7.23.6.tgz", + "integrity": "sha512-kF1Zg62aPseQ11orDhFRw+aPG/eynNQtI+TyY+m33qJa2cJ5EEvza2P2BNTIA9E5MyqFABHEyY6CPHwgdy9aNg==", + "dependencies": { + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-shorthand-properties": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.23.3.tgz", + "integrity": "sha512-ED2fgqZLmexWiN+YNFX26fx4gh5qHDhn1O2gvEhreLW2iI63Sqm4llRLCXALKrCnbN4Jy0VcMQZl/SAzqug/jg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-spread": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.23.3.tgz", + "integrity": "sha512-VvfVYlrlBVu+77xVTOAoxQ6mZbnIq5FM0aGBSFEcIh03qHf+zNqA4DC/3XMUozTg7bZV3e3mZQ0i13VB6v5yUg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-sticky-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.23.3.tgz", + "integrity": "sha512-HZOyN9g+rtvnOU3Yh7kSxXrKbzgrm5X4GncPY1QOquu7epga5MxKHVpYu2hvQnry/H+JjckSYRb93iNfsioAGg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-template-literals": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.23.3.tgz", + "integrity": "sha512-Flok06AYNp7GV2oJPZZcP9vZdszev6vPBkHLwxwSpaIqx75wn6mUd3UFWsSsA0l8nXAKkyCmL/sR02m8RYGeHg==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-typeof-symbol": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.23.3.tgz", + "integrity": "sha512-4t15ViVnaFdrPC74be1gXBSMzXk3B4Us9lP7uLRQHTFpV5Dvt33pn+2MyyNxmN3VTTm3oTrZVMUmuw3oBnQ2oQ==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-escapes": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.23.3.tgz", + "integrity": "sha512-OMCUx/bU6ChE3r4+ZdylEqAjaQgHAgipgW8nsCfu5pGqDcFytVd91AwRvUJSBZDz0exPGgnjoqhgRYLRjFZc9Q==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.23.3.tgz", + "integrity": "sha512-KcLIm+pDZkWZQAFJ9pdfmh89EwVfmNovFBcXko8szpBeF8z68kWIPeKlmSOkT9BXJxs2C0uk+5LxoxIv62MROA==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.23.3.tgz", + "integrity": "sha512-wMHpNA4x2cIA32b/ci3AfwNgheiva2W0WUKWTK7vBHBhDKfPsc5cFGNWm69WBqpwd86u1qwZ9PWevKqm1A3yAw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.23.3.tgz", + "integrity": "sha512-W7lliA/v9bNR83Qc3q1ip9CQMZ09CcHDbHfbLRDNuAhn1Mvkr1ZNF7hPmztMQvtTGVLJ9m8IZqWsTkXOml8dbw==", + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/preset-env": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.23.6.tgz", + "integrity": "sha512-2XPn/BqKkZCpzYhUUNZ1ssXw7DcXfKQEjv/uXZUXgaebCMYmkEsfZ2yY+vv+xtXv50WmL5SGhyB6/xsWxIvvOQ==", + "dependencies": { + "@babel/compat-data": "^7.23.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.23.3", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.23.3", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.23.3", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-class-static-block": "^7.14.5", + "@babel/plugin-syntax-dynamic-import": "^7.8.3", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3", + "@babel/plugin-syntax-import-assertions": "^7.23.3", + "@babel/plugin-syntax-import-attributes": "^7.23.3", + "@babel/plugin-syntax-import-meta": "^7.10.4", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.10.4", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5", + "@babel/plugin-syntax-top-level-await": "^7.14.5", + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.23.3", + "@babel/plugin-transform-async-generator-functions": "^7.23.4", + "@babel/plugin-transform-async-to-generator": "^7.23.3", + "@babel/plugin-transform-block-scoped-functions": "^7.23.3", + "@babel/plugin-transform-block-scoping": "^7.23.4", + "@babel/plugin-transform-class-properties": "^7.23.3", + "@babel/plugin-transform-class-static-block": "^7.23.4", + "@babel/plugin-transform-classes": "^7.23.5", + "@babel/plugin-transform-computed-properties": "^7.23.3", + "@babel/plugin-transform-destructuring": "^7.23.3", + "@babel/plugin-transform-dotall-regex": "^7.23.3", + "@babel/plugin-transform-duplicate-keys": "^7.23.3", + "@babel/plugin-transform-dynamic-import": "^7.23.4", + "@babel/plugin-transform-exponentiation-operator": "^7.23.3", + "@babel/plugin-transform-export-namespace-from": "^7.23.4", + "@babel/plugin-transform-for-of": "^7.23.6", + "@babel/plugin-transform-function-name": "^7.23.3", + "@babel/plugin-transform-json-strings": "^7.23.4", + "@babel/plugin-transform-literals": "^7.23.3", + "@babel/plugin-transform-logical-assignment-operators": "^7.23.4", + "@babel/plugin-transform-member-expression-literals": "^7.23.3", + "@babel/plugin-transform-modules-amd": "^7.23.3", + "@babel/plugin-transform-modules-commonjs": "^7.23.3", + "@babel/plugin-transform-modules-systemjs": "^7.23.3", + "@babel/plugin-transform-modules-umd": "^7.23.3", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.23.3", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.23.4", + "@babel/plugin-transform-numeric-separator": "^7.23.4", + "@babel/plugin-transform-object-rest-spread": "^7.23.4", + "@babel/plugin-transform-object-super": "^7.23.3", + "@babel/plugin-transform-optional-catch-binding": "^7.23.4", + "@babel/plugin-transform-optional-chaining": "^7.23.4", + "@babel/plugin-transform-parameters": "^7.23.3", + "@babel/plugin-transform-private-methods": "^7.23.3", + "@babel/plugin-transform-private-property-in-object": "^7.23.4", + "@babel/plugin-transform-property-literals": "^7.23.3", + "@babel/plugin-transform-regenerator": "^7.23.3", + "@babel/plugin-transform-reserved-words": "^7.23.3", + "@babel/plugin-transform-shorthand-properties": "^7.23.3", + "@babel/plugin-transform-spread": "^7.23.3", + "@babel/plugin-transform-sticky-regex": "^7.23.3", + "@babel/plugin-transform-template-literals": "^7.23.3", + "@babel/plugin-transform-typeof-symbol": "^7.23.3", + "@babel/plugin-transform-unicode-escapes": "^7.23.3", + "@babel/plugin-transform-unicode-property-regex": "^7.23.3", + "@babel/plugin-transform-unicode-regex": "^7.23.3", + "@babel/plugin-transform-unicode-sets-regex": "^7.23.3", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.6", + "babel-plugin-polyfill-corejs3": "^0.8.5", + "babel-plugin-polyfill-regenerator": "^0.5.3", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-env/node_modules/@babel/plugin-proposal-private-property-in-object": { + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/preset-modules": { + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@babel/types": "^7.4.4", + "esutils": "^2.0.2" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/@babel/regjsgen": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/@babel/regjsgen/-/regjsgen-0.8.0.tgz", + "integrity": "sha512-x/rqGMdzj+fWZvCOYForTghzbtqPDZ5gPwaoNGHdgDfF2QA/XZbCBp4Moo5scrkAMPhB7z26XM/AaHuIJdgauA==" + }, + "node_modules/@babel/runtime": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.6.tgz", + "integrity": "sha512-zHd0eUrf5GZoOWVCXp6koAKQTfZV07eit6bGPmJgnZdnSAvvZee6zniW2XMF7Cmc4ISOOnPy3QaSiIJGJkVEDQ==", + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.6.tgz", + "integrity": "sha512-czastdK1e8YByZqezMPFiZ8ahwVMh/ESl9vPgvgdB9AmFMGP5jfpFax74AQgl5zj4XHzqeYAg2l8PuUeRS1MgQ==", + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.6", + "@babel/types": "^7.23.6", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.6.tgz", + "integrity": "sha512-+uarb83brBzPKN38NX1MkB6vb6+mwvR6amUulqAE7ccQw1pEl+bCia9TbdG1lsnFP7lZySvUn37CHyXQdfTwzg==", + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@csstools/cascade-layer-name-parser": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/@csstools/cascade-layer-name-parser/-/cascade-layer-name-parser-1.0.6.tgz", + "integrity": "sha512-HkxRNs6ZIV0VjLFw6k5G8K35vd9r+O8B1Vr+QVD8M5Y44eQxyHtc42BdF74FQatXACPnitOR1+sRx2oWdnKTQw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + } + }, + "node_modules/@csstools/color-helpers": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@csstools/color-helpers/-/color-helpers-4.0.0.tgz", + "integrity": "sha512-wjyXB22/h2OvxAr3jldPB7R7kjTUEzopvjitS8jWtyd8fN6xJ8vy1HnHu0ZNfEkqpBJgQ76Q+sBDshWcMvTa/w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/@csstools/css-calc": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/@csstools/css-calc/-/css-calc-1.1.5.tgz", + "integrity": "sha512-UhI5oSRAUtTHY3MyGahqn0ZzQOHVoPpfvUcOmYipAZ1rILAvCBoyiLSsa/clv1Xxct0SMKIq93KO5Bfl1cb6tQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + } + }, + "node_modules/@csstools/css-color-parser": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@csstools/css-color-parser/-/css-color-parser-1.5.0.tgz", + "integrity": "sha512-PUhSg1MgU2sjYhA6moOmxYesqVqYTJwcVw12boTNbDX7Af+VK02MkgvmBBY2Z2qU6UN5HOQ+wrF0qQJGsTFY7w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/color-helpers": "^4.0.0", + "@csstools/css-calc": "^1.1.5" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + } + }, + "node_modules/@csstools/css-parser-algorithms": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@csstools/css-parser-algorithms/-/css-parser-algorithms-2.4.0.tgz", + "integrity": "sha512-/PPLr2g5PAUCKAPEbfyk6/baZA+WJHQtUhPkoCQMpyRE8I0lXrG1QFRN8e5s3ZYxM8d/g5BZc6lH3s8Op7/VEg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-tokenizer": "^2.2.2" + } + }, + "node_modules/@csstools/css-tokenizer": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/@csstools/css-tokenizer/-/css-tokenizer-2.2.2.tgz", + "integrity": "sha512-wCDUe/MAw7npAHFLyW3QjSyLA66S5QFaV1jIXlNQvdJ8RzXDSgALa49eWcUO6P55ARQaz0TsDdAgdRgkXFYY8g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + } + }, + "node_modules/@csstools/media-query-list-parser": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/@csstools/media-query-list-parser/-/media-query-list-parser-2.1.6.tgz", + "integrity": "sha512-R6AKl9vaU0It7D7TR2lQn0pre5aQfdeqHRePlaRCY8rHL3l9eVlNRpsEVDKFi/zAjzv68CxH2M5kqbhPFPKjvw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + } + }, + "node_modules/@csstools/postcss-cascade-layers": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-cascade-layers/-/postcss-cascade-layers-4.0.2.tgz", + "integrity": "sha512-PqM+jvg5T2tB4FHX+akrMGNWAygLupD4FNUjcv4PSvtVuWZ6ISxuo37m4jFGU7Jg3rCfloGzKd0+xfr5Ec3vZQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/selector-specificity": "^3.0.1", + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-color-function": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-function/-/postcss-color-function-3.0.8.tgz", + "integrity": "sha512-jvbF7eCRbIcxWqby0kk2Mt85QtGzRRpFFYdlJCJ80Tuiv43PY+auS/nBl8pDQQ4Ndm4vsm4IC/wCZDcJUmpJmg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-color-mix-function": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-color-mix-function/-/postcss-color-mix-function-2.0.8.tgz", + "integrity": "sha512-sGhk+TdZ2TeXspc6LSYSYC8WgzLlxoknUaObKgB0mk+dNjRQgSSIeCU+qrCwvHmwM+uTNKtiS8mntDzyQLHTTA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-exponential-functions": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-exponential-functions/-/postcss-exponential-functions-1.0.2.tgz", + "integrity": "sha512-VRIYrwNCkZRqzsGB4jGT+XcNXsoiwyqy0Vf7C3I/5OPcf7WcWK3G1sBYFqqgWLGtpwc7m1m8TcorGY1xdh5abg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-calc": "^1.1.5", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-font-format-keywords": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-font-format-keywords/-/postcss-font-format-keywords-3.0.1.tgz", + "integrity": "sha512-D1lcG2sfotTq6yBEOMV3myFxJLT10F3DLYZJMbiny5YToqzHWodZen8WId3UTimm0mEHitXqAUNL5jdd6RzVdA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-gamut-mapping": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gamut-mapping/-/postcss-gamut-mapping-1.0.1.tgz", + "integrity": "sha512-GDVzfNbnc7x3GusFklvt0mYXIWVzxEtEtTFEW664NgZh/5V7Z89hZKBMl9piOAHXuxijfHtE+kul/ShfeLUvcA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-gradients-interpolation-method": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-gradients-interpolation-method/-/postcss-gradients-interpolation-method-4.0.8.tgz", + "integrity": "sha512-bmvCNzuUvWPPdgASh0T14ffTay/FdzXsXfp0wXT1pYoUPmkH9M6yyxwPEkHq5djjzSb2jiLl4Ta3XM1uOREQ2w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-hwb-function": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/@csstools/postcss-hwb-function/-/postcss-hwb-function-3.0.7.tgz", + "integrity": "sha512-iXs1gxKtev8YNP5bOF26TAsnMfcxnCRLpKItQ067RphYECKEK/xWm4Z0r4ChmV1U1eq+lbdH5ZIb2cju4o5akA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-ic-unit": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-ic-unit/-/postcss-ic-unit-3.0.3.tgz", + "integrity": "sha512-MpcmIL0/uMm/cFWh5V/9nbKKJ7jRr2qTYW5Q6zoE6HZ6uzOBJr2KRERv5/x8xzEBQ1MthDT7iP1EBp9luSQy7g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^3.0.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-initial": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-initial/-/postcss-initial-1.0.1.tgz", + "integrity": "sha512-wtb+IbUIrIf8CrN6MLQuFR7nlU5C7PwuebfeEXfjthUha1+XZj2RVi+5k/lukToA24sZkYAiSJfHM8uG/UZIdg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-is-pseudo-class": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-is-pseudo-class/-/postcss-is-pseudo-class-4.0.4.tgz", + "integrity": "sha512-vTVO/uZixpTVAOQt3qZRUFJ/K1L03OfNkeJ8sFNDVNdVy/zW0h1L5WT7HIPMDUkvSrxQkFaCCybTZkUP7UESlQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/selector-specificity": "^3.0.1", + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-float-and-clear": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-float-and-clear/-/postcss-logical-float-and-clear-2.0.1.tgz", + "integrity": "sha512-SsrWUNaXKr+e/Uo4R/uIsqJYt3DaggIh/jyZdhy/q8fECoJSKsSMr7nObSLdvoULB69Zb6Bs+sefEIoMG/YfOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-overflow": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overflow/-/postcss-logical-overflow-1.0.1.tgz", + "integrity": "sha512-Kl4lAbMg0iyztEzDhZuQw8Sj9r2uqFDcU1IPl+AAt2nue8K/f1i7ElvKtXkjhIAmKiy5h2EY8Gt/Cqg0pYFDCw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-overscroll-behavior": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-overscroll-behavior/-/postcss-logical-overscroll-behavior-1.0.1.tgz", + "integrity": "sha512-+kHamNxAnX8ojPCtV8WPcUP3XcqMFBSDuBuvT6MHgq7oX4IQxLIXKx64t7g9LiuJzE7vd06Q9qUYR6bh4YnGpQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-resize": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-resize/-/postcss-logical-resize-2.0.1.tgz", + "integrity": "sha512-W5Gtwz7oIuFcKa5SmBjQ2uxr8ZoL7M2bkoIf0T1WeNqljMkBrfw1DDA8/J83k57NQ1kcweJEjkJ04pUkmyee3A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-logical-viewport-units": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-logical-viewport-units/-/postcss-logical-viewport-units-2.0.4.tgz", + "integrity": "sha512-jetp/ArGAniWbjWBh5UQ07ztawfSbqCFd0QelX4R4pVIxrXahUEhz5VZHebMPVCg02J8GsQn0br6fdRpY6t7lw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-tokenizer": "^2.2.2" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-media-minmax": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-minmax/-/postcss-media-minmax-1.1.1.tgz", + "integrity": "sha512-mBY46/Hr+A8cDjoX0OoPRBOVrkANym9540dSB9rN3dllPZdM1E112i/tVxWsrR1s1yE9gfF0pk+7lf9l+qSeHA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-calc": "^1.1.5", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/media-query-list-parser": "^2.1.6" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-media-queries-aspect-ratio-number-values": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-media-queries-aspect-ratio-number-values/-/postcss-media-queries-aspect-ratio-number-values-2.0.4.tgz", + "integrity": "sha512-IaIZZhH0Qy9UDn7u+N3cuwwPG0Po3ZKOdDh+ClR7xvisSqniG+PuVrOEWYJrFKOt2//UHLhd7KHDqr2u9LKS9Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/media-query-list-parser": "^2.1.6" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-nested-calc": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-nested-calc/-/postcss-nested-calc-3.0.1.tgz", + "integrity": "sha512-bwwababZpWRm0ByHaWBxTsDGTMhZKmtUNl3Wt0Eom8AY7ORgXx5qF9SSk1vEFrCi+HOfJT6M6W5KPgzXuQNRwQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-normalize-display-values": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@csstools/postcss-normalize-display-values/-/postcss-normalize-display-values-3.0.2.tgz", + "integrity": "sha512-fCapyyT/dUdyPtrelQSIV+d5HqtTgnNP/BEG9IuhgXHt93Wc4CfC1bQ55GzKAjWrZbgakMQ7MLfCXEf3rlZJOw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-oklab-function": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-oklab-function/-/postcss-oklab-function-3.0.8.tgz", + "integrity": "sha512-L4xrwbgg+k08v+a88LDxJeIM6+kqaBJlYb/QgmEMfQpUbrfXTp87DuRc7utcRdDvY+qWK5vqz3h1xUtceB5LJQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-progressive-custom-properties": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-progressive-custom-properties/-/postcss-progressive-custom-properties-3.0.3.tgz", + "integrity": "sha512-WipTVh6JTMQfeIrzDV4wEPsV9NTzMK2jwXxyH6CGBktuWdivHnkioP/smp1x/0QDPQyx7NTS14RB+GV3zZZYEw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-relative-color-syntax": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@csstools/postcss-relative-color-syntax/-/postcss-relative-color-syntax-2.0.8.tgz", + "integrity": "sha512-wu/Oh7QKINpRXnmLMUbObVNlqwr843PSF4a3x3fMC0I+vUeoGqMfZuSPFtT+NnYYxfzUjEZ091GURPxee22VLQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-scope-pseudo-class": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-scope-pseudo-class/-/postcss-scope-pseudo-class-3.0.1.tgz", + "integrity": "sha512-3ZFonK2gfgqg29gUJ2w7xVw2wFJ1eNWVDONjbzGkm73gJHVCYK5fnCqlLr+N+KbEfv2XbWAO0AaOJCFB6Fer6A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-stepped-value-functions": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-stepped-value-functions/-/postcss-stepped-value-functions-3.0.3.tgz", + "integrity": "sha512-hzo9Wr3u7JJiM65/EyHgE/gJpBzhDwBSGOobFs2YQ0ZNTywUliYQoYJud1KKlByMRuhqvDLh9V95eIkLf/fZTQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-calc": "^1.1.5", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-text-decoration-shorthand": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@csstools/postcss-text-decoration-shorthand/-/postcss-text-decoration-shorthand-3.0.4.tgz", + "integrity": "sha512-yUZmbnUemgQmja7SpOZeU45+P49wNEgQguRdyTktFkZsHf7Gof+ZIYfvF6Cm+LsU1PwSupy4yUeEKKjX5+k6cQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/color-helpers": "^4.0.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-trigonometric-functions": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@csstools/postcss-trigonometric-functions/-/postcss-trigonometric-functions-3.0.3.tgz", + "integrity": "sha512-T/npTbDuMZ3vktEMuA05p1oeVd12Sy47qZP1vFhzNMUOdXGCK9vlm0tUSIlV5DdlbTJqKqq9FhGitZH9VTKrfQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-calc": "^1.1.5", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/postcss-unset-value": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/postcss-unset-value/-/postcss-unset-value-3.0.1.tgz", + "integrity": "sha512-dbDnZ2ja2U8mbPP0Hvmt2RMEGBiF1H7oY6HYSpjteXJGihYwgxgTr6KRbbJ/V6c+4wd51M+9980qG4gKVn5ttg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/@csstools/selector-specificity": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@csstools/selector-specificity/-/selector-specificity-3.0.1.tgz", + "integrity": "sha512-NPljRHkq4a14YzZ3YD406uaxh7s0g6eAq3L9aLOWywoqe8PkYamAvtsh7KNX6c++ihDrJ0RiU+/z7rGnhlZ5ww==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss-selector-parser": "^6.0.13" + } + }, + "node_modules/@discoveryjs/json-ext": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/@discoveryjs/json-ext/-/json-ext-0.5.7.tgz", + "integrity": "sha512-dBVuXR082gk3jsFp7Rd/JI4kytwGHecnCoTtXFb7DB6CNHp4rg5k1bhg0nWdLGLnOV71lmDzGQaLMy8iPLY0pw==", + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/@fortawesome/fontawesome-common-types": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-common-types/-/fontawesome-common-types-6.5.1.tgz", + "integrity": "sha512-GkWzv+L6d2bI5f/Vk6ikJ9xtl7dfXtoRu3YGE6nq0p/FFqA1ebMOAWg3XgRyb0I6LYyYkiAo+3/KrwuBp8xG7A==", + "hasInstallScript": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/fontawesome-svg-core": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@fortawesome/fontawesome-svg-core/-/fontawesome-svg-core-6.5.1.tgz", + "integrity": "sha512-MfRCYlQPXoLlpem+egxjfkEuP9UQswTrlCOsknus/NcMoblTH2g0jPrapbcIb04KGA7E2GZxbAccGZfWoYgsrQ==", + "hasInstallScript": true, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.5.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/free-solid-svg-icons": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/@fortawesome/free-solid-svg-icons/-/free-solid-svg-icons-6.5.1.tgz", + "integrity": "sha512-S1PPfU3mIJa59biTtXJz1oI0+KAXW6bkAb31XKhxdxtuXDiUIFsih4JR1v5BbxY7hVHsD1RKq+jRkVRaf773NQ==", + "hasInstallScript": true, + "dependencies": { + "@fortawesome/fontawesome-common-types": "6.5.1" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@fortawesome/vue-fontawesome": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@fortawesome/vue-fontawesome/-/vue-fontawesome-2.0.10.tgz", + "integrity": "sha512-OTETSXz+3ygD2OK2/vy82cmUBpuJqeOAg4gfnnv+f2Rir1tDIhQg026Q3NQxznq83ZLz8iNqGG9XJm26inpDeg==", + "peerDependencies": { + "@fortawesome/fontawesome-svg-core": "~1 || ~6", + "vue": "~2" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==" + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-28.1.3.tgz", + "integrity": "sha512-QPAkP5EwKdK/bxIr6C1I4Vs0rm2nHiANzj/Z5X2JQkrZo6IqvC4ldZ9K95tF0HdidhA8Bo6egxSzUFPYKcEXLw==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/core": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-28.1.3.tgz", + "integrity": "sha512-CIKBrlaKOzA7YG19BEqCw3SLIsEwjZkeJzf5bdooVnW4bH5cktqe3JX+G2YV1aK5vP8N9na1IGWFzYaTp6k6NA==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/reporters": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^28.1.3", + "jest-config": "^28.1.3", + "jest-haste-map": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-regex-util": "^28.0.2", + "jest-resolve": "^28.1.3", + "jest-resolve-dependencies": "^28.1.3", + "jest-runner": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "jest-watcher": "^28.1.3", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "rimraf": "^3.0.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/environment": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-28.1.3.tgz", + "integrity": "sha512-1bf40cMFTEkKyEf585R9Iz1WayDjHoHqvts0XFYEqyKM3cFWDpeMoqKKTAF9LSYQModPUlh8FKptoM2YcMWAXA==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "jest-mock": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-lzc8CpUbSoE4dqT0U+g1qODQjBRHPpCPXissXD4mS9+sWQdmmpeJ9zSH1rS1HEkrsMN0fb7nKrJ9giAR1d3wBw==", + "dev": true, + "dependencies": { + "expect": "^28.1.3", + "jest-snapshot": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-28.1.3.tgz", + "integrity": "sha512-wvbi9LUrHJLn3NlDW6wF2hvIMtd4JUl2QNVrjq+IBSHirgfrR3o9RnVtxzdEGO2n9JyIWwHnLfby5KzqBGg2YA==", + "dev": true, + "dependencies": { + "jest-get-type": "^28.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-28.1.3.tgz", + "integrity": "sha512-D/wOkL2POHv52h+ok5Oj/1gOG9HSywdoPtFsRCUmlCILXNn5eIWmcnd3DIiWlJnpGvQtmajqBP95Ei0EimxfLw==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@sinonjs/fake-timers": "^9.1.2", + "@types/node": "*", + "jest-message-util": "^28.1.3", + "jest-mock": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-28.1.3.tgz", + "integrity": "sha512-XFU4P4phyryCXu1pbcqMO0GSQcYe1IsalYCDzRNyhetyeyxMcIxa11qPNDpVNLeretItNqEmYYQn1UYz/5x1NA==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/expect": "^28.1.3", + "@jest/types": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-28.1.3.tgz", + "integrity": "sha512-JuAy7wkxQZVNU/V6g9xKzCGC5LVXx9FDcABKsSXp5MiKPEE2144a/vXTEDoyzjUpZKfVwp08Wqg5A4WfTMAzjg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@jridgewell/trace-mapping": "^0.3.13", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^5.1.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "jest-worker": "^28.1.3", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "terminal-link": "^2.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/schemas": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-28.1.3.tgz", + "integrity": "sha512-/l/VWsdt/aBXgjshLWOFyFt3IVdYypu5y2Wn2rOO1un6nkqIn8SLXzgIMYXFyYsRWDyF5EthmKJMIdJvk08grg==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.24.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "28.1.2", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-28.1.2.tgz", + "integrity": "sha512-cV8Lx3BeStJb8ipPHnqVw/IM2VCMWO3crWZzYodSIkxXnRcXJipCdx1JCK0K5MsJJouZQTH73mzf4vgxRaH9ww==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.13", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-28.1.3.tgz", + "integrity": "sha512-kZAkxnSE+FqE8YjW8gNuoVkkC9I7S1qmenl8sGcDOLropASP+BkcGKwhXoyqQuGOGeYY0y/ixjrd/iERpEXHNg==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-28.1.3.tgz", + "integrity": "sha512-NIMPEqqa59MWnDi1kvXXpYbqsfQmSJsIbnd85mdVGkiDfQ9WQQTXOLsvISUfonmnBT+w85WEgneCigEEdHDFxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^28.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-28.1.3.tgz", + "integrity": "sha512-u5dT5di+oFI6hfcLOHGTAfmUxFRrjK+vnaP0kkVow9Md/M7V/MxqQMOz/VV25UZO8pzeA9PjfTpOu6BDuwSPQA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^28.1.3", + "@jridgewell/trace-mapping": "^0.3.13", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "jest-regex-util": "^28.0.2", + "jest-util": "^28.1.3", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jest/types": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-28.1.3.tgz", + "integrity": "sha512-RyjiyMUZrKz/c+zlMFO1pm70DcIlST8AeWTkoUdZevew44wcNZQHsEVOiCVtgVnlFFD82FPaXycys58cf2muVQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==" + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.20", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.20.tgz", + "integrity": "sha512-R8LcPeWZol2zR8mmH3JeKQ6QRCFb7XgUhV9ZlGhHLGyg4wpPiPZNQOOWhFZhxKw8u//yTbNGI42Bx/3paXEQ+Q==", + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/@npmcli/fs/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/fs/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/move-file/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/babel-preset-app": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/babel-preset-app/-/babel-preset-app-2.17.2.tgz", + "integrity": "sha512-LJmL19mlzcwBOcyjiuwsgj0WSUHQglEEgZ2C0IE+5GfKblyVnzHi8PLBr4M8U78QzRkMoZXdRg7bIyW4VBANCQ==", + "dependencies": { + "@babel/compat-data": "^7.23.2", + "@babel/core": "^7.23.2", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-imports": "^7.22.15", + "@babel/plugin-proposal-class-properties": "^7.18.6", + "@babel/plugin-proposal-decorators": "^7.23.2", + "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", + "@babel/plugin-proposal-optional-chaining": "^7.21.0", + "@babel/plugin-proposal-private-methods": "^7.18.6", + "@babel/plugin-proposal-private-property-in-object": "^7.21.11", + "@babel/plugin-transform-runtime": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/runtime": "^7.23.2", + "@vue/babel-preset-jsx": "^1.4.0", + "core-js": "^3.33.1", + "core-js-compat": "^3.33.1", + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/builder": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/builder/-/builder-2.17.2.tgz", + "integrity": "sha512-6NYsLD2Ss3QjJ8vgNVhdXvn44CPVLotnNAnq3/WGpkxRloebqBxjUTzLQUjsZ/U7STH00TWCUAkhq8zpSzEogw==", + "dependencies": { + "@nuxt/devalue": "^2.0.2", + "@nuxt/utils": "2.17.2", + "@nuxt/vue-app": "2.17.2", + "@nuxt/webpack": "2.17.2", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "consola": "^3.2.3", + "fs-extra": "^10.1.0", + "glob": "^8.1.0", + "hash-sum": "^2.0.0", + "ignore": "^5.2.4", + "lodash": "^4.17.21", + "pify": "^5.0.0", + "serialize-javascript": "^6.0.1", + "upath": "^2.0.1" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/builder/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@nuxt/builder/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/builder/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nuxt/builder/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/cli": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/cli/-/cli-2.17.2.tgz", + "integrity": "sha512-jEDxBqrKINJrJunewamghqOFcR/6FhDU6kGlO10kWKvE5QzTRQUKLUgBQVag7yRqnnMjL5NcZoUC4iUeBT/63Q==", + "dependencies": { + "@nuxt/config": "2.17.2", + "@nuxt/utils": "2.17.2", + "boxen": "^5.1.2", + "chalk": "^4.1.2", + "compression": "^1.7.4", + "connect": "^3.7.0", + "consola": "^3.2.3", + "crc": "^4.3.2", + "defu": "^6.1.2", + "destr": "^2.0.1", + "execa": "^5.1.1", + "exit": "^0.1.2", + "fs-extra": "^10.1.0", + "globby": "^11.0.4", + "hable": "^3.0.0", + "lodash": "^4.17.21", + "minimist": "^1.2.8", + "opener": "1.5.2", + "pretty-bytes": "^5.6.0", + "semver": "^7.5.4", + "serve-static": "^1.15.0", + "std-env": "^3.4.3", + "upath": "^2.0.1", + "wrap-ansi": "^7.0.0" + }, + "bin": { + "nuxt-cli": "bin/nuxt-cli.js" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/cli/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/cli/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/@nuxt/cli/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/cli/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/cli/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@nuxt/components": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@nuxt/components/-/components-2.2.1.tgz", + "integrity": "sha512-r1LHUzifvheTnJtYrMuA+apgsrEJbxcgFKIimeXKb+jl8TnPWdV3egmrxBCaDJchrtY/wmHyP47tunsft7AWwg==", + "dependencies": { + "chalk": "^4.1.2", + "chokidar": "^3.5.2", + "glob": "^7.1.7", + "globby": "^11.0.4", + "scule": "^0.2.1", + "semver": "^7.3.5", + "upath": "^2.0.1", + "vue-template-compiler": "^2.6.14" + }, + "peerDependencies": { + "consola": "*" + } + }, + "node_modules/@nuxt/components/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/components/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/components/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@nuxt/config": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/config/-/config-2.17.2.tgz", + "integrity": "sha512-e40+37nwLDnf7DGOfoK1D1GkWvNh4sNkZdgKGDkJZCVBkj9a6dgKwCdBvwtxphbJHhI6X05YG/K3mB41t8cEvg==", + "dependencies": { + "@nuxt/utils": "2.17.2", + "consola": "^3.2.3", + "defu": "^6.1.2", + "destr": "^2.0.1", + "dotenv": "^16.3.1", + "lodash": "^4.17.21", + "rc9": "^2.1.1", + "std-env": "^3.4.3", + "ufo": "^1.3.1" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/config/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/config/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/@nuxt/core": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/core/-/core-2.17.2.tgz", + "integrity": "sha512-DNJZ7dsMQShdXLQZg2ruIpk10dbU1HrgEXMD4DYmSBUPN0fT1LyWp6e5xIkDmyPXcsHeQYDQPezYddM9LhQn+A==", + "dependencies": { + "@nuxt/config": "2.17.2", + "@nuxt/server": "2.17.2", + "@nuxt/utils": "2.17.2", + "consola": "^3.2.3", + "fs-extra": "^10.1.0", + "hable": "^3.0.0", + "hash-sum": "^2.0.0", + "lodash": "^4.17.21" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/core/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/devalue": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@nuxt/devalue/-/devalue-2.0.2.tgz", + "integrity": "sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==" + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/@nuxt/friendly-errors-webpack-plugin/-/friendly-errors-webpack-plugin-2.6.0.tgz", + "integrity": "sha512-3IZj6MXbzlvUxDncAxgBMLQwGPY/JlNhy2i+AGyOHCAReR5HcBxYjVRBvyaKM9R3s5k4OODYKeHAbrToZH/47w==", + "dependencies": { + "chalk": "^2.4.2", + "consola": "^3.2.3", + "error-stack-parser": "^2.1.4", + "string-width": "^4.2.3" + }, + "engines": { + "node": ">=14.18.0", + "npm": ">=5.0.0" + }, + "peerDependencies": { + "webpack": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0" + } + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/@nuxt/friendly-errors-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/@nuxt/generator": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/generator/-/generator-2.17.2.tgz", + "integrity": "sha512-nYkxUtp+geqPYH1KngE+0L9vPVS+zZ6O9cm3yzSqy/KuzPxQYYK+YAgC+cORo3pnxr4MNvRTj3vpPBvEnt2KVA==", + "dependencies": { + "@nuxt/utils": "2.17.2", + "chalk": "^4.1.2", + "consola": "^3.2.3", + "defu": "^6.1.2", + "devalue": "^2.0.1", + "fs-extra": "^10.1.0", + "html-minifier": "^4.0.0", + "node-html-parser": "^6.1.10", + "ufo": "^1.3.1" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/generator/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/generator/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/@nuxt/loading-screen": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@nuxt/loading-screen/-/loading-screen-2.0.4.tgz", + "integrity": "sha512-xpEDAoRu75tLUYCkUJCIvJkWJSuwr8pqomvQ+fkXpSrkxZ/9OzlBFjAbVdOAWTMj4aV/LVQso4vcEdircKeFIQ==", + "dependencies": { + "connect": "^3.7.0", + "defu": "^5.0.0", + "get-port-please": "^2.2.0", + "node-res": "^5.0.1", + "serve-static": "^1.14.1" + } + }, + "node_modules/@nuxt/opencollective": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@nuxt/opencollective/-/opencollective-0.3.3.tgz", + "integrity": "sha512-6IKCd+gP0HliixqZT/p8nW3tucD6Sv/u/eR2A9X4rxT/6hXlMzA4GZQzq4d2qnBAwSwGpmKyzkyTjNjrhaA25A==", + "dependencies": { + "chalk": "^4.1.0", + "consola": "^2.15.0", + "node-fetch": "^2.6.7" + }, + "bin": { + "opencollective": "bin/opencollective.js" + }, + "engines": { + "node": ">=8.0.0", + "npm": ">=5.0.0" + } + }, + "node_modules/@nuxt/server": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/server/-/server-2.17.2.tgz", + "integrity": "sha512-PjIpxC9B7heH6f+uzPTAleConC8uhfmaPZaj+A96RXwxw/zAYHbv/QKFz4Q+Pw6v4aONOYsPZFBuLoMTGov3tA==", + "dependencies": { + "@nuxt/utils": "2.17.2", + "@nuxt/vue-renderer": "2.17.2", + "@nuxtjs/youch": "^4.2.3", + "compression": "^1.7.4", + "connect": "^3.7.0", + "consola": "^3.2.3", + "etag": "^1.8.1", + "fresh": "^0.5.2", + "fs-extra": "^10.1.0", + "ip": "^1.1.8", + "launch-editor-middleware": "^2.6.1", + "on-headers": "^1.0.2", + "pify": "^5.0.0", + "serve-placeholder": "^2.0.1", + "serve-static": "^1.15.0", + "server-destroy": "^1.0.1", + "ufo": "^1.3.1" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/server/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/telemetry": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/@nuxt/telemetry/-/telemetry-1.5.0.tgz", + "integrity": "sha512-MhxiiYCFe0MayN2TvmpcsCV66zBePtrSVkFLJHwTFuneQ5Qma5x0NmCwdov7O4NSuTfgSZels9qPJh0zy0Kc4g==", + "dependencies": { + "arg": "^5.0.2", + "chalk": "^4.1.1", + "ci-info": "^3.7.1", + "consola": "^3.2.3", + "create-require": "^1.1.1", + "defu": "^6.1.3", + "destr": "^2.0.2", + "dotenv": "^9.0.2", + "fs-extra": "^8.1.0", + "git-url-parse": "^13.1.1", + "inquirer": "^7.3.3", + "jiti": "^1.21.0", + "nanoid": "^3.1.23", + "node-fetch": "^2.6.1", + "parse-git-config": "^3.0.0", + "rc9": "^2.1.1", + "std-env": "^3.5.0" + }, + "bin": { + "nuxt-telemetry": "bin/nuxt-telemetry.js" + } + }, + "node_modules/@nuxt/telemetry/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/telemetry/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/@nuxt/telemetry/node_modules/dotenv": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-9.0.2.tgz", + "integrity": "sha512-I9OvvrHp4pIARv4+x9iuewrWycX6CcZtoAu1XrzPxc5UygMJXJZYmBsynku8IkrJwgypE5DGNjDPmPRhDCptUg==", + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/telemetry/node_modules/fs-extra": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-8.1.0.tgz", + "integrity": "sha512-yhlQgA6mnOJUKOsRUFsgJdQCvkKhcz8tlZG5HBQfReYZy46OwLcY+Zia0mtdHsOo9y/hP+CxMN0TU9QxoOtG4g==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^4.0.0", + "universalify": "^0.1.0" + }, + "engines": { + "node": ">=6 <7 || >=8" + } + }, + "node_modules/@nuxt/telemetry/node_modules/jsonfile": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", + "integrity": "sha512-m6F1R3z8jjlf2imQHS2Qez5sjKWQzbuuhuJ/FKYFRZvPE3PuHcSMVZzfsLhGVOkfd20obL5SWEBew5ShlquNxg==", + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/@nuxt/telemetry/node_modules/universalify": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", + "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/@nuxt/utils": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/utils/-/utils-2.17.2.tgz", + "integrity": "sha512-vb0U/+I5omMQK6Nb3QlWYeStRhWeGJeR3tEGxc+OZw41T1OgqfRlg32tNBkMDqlNpSRjTKyWjIYGHBoNNrB2SA==", + "dependencies": { + "consola": "^3.2.3", + "create-require": "^1.1.1", + "fs-extra": "^10.1.0", + "hash-sum": "^2.0.0", + "jiti": "^1.20.0", + "lodash": "^4.17.21", + "proper-lockfile": "^4.1.2", + "semver": "^7.5.4", + "serialize-javascript": "^6.0.1", + "signal-exit": "^4.1.0", + "ua-parser-js": "^1.0.36", + "ufo": "^1.3.1" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/utils/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/utils/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/utils/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nuxt/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@nuxt/vue-app": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/vue-app/-/vue-app-2.17.2.tgz", + "integrity": "sha512-5bgothZDKBG9p1DKTvI74DfJDk+3fdRbjT6JMmiciyV55IMm7bE6eGVpcnUJ8bGjuKWSOiJbjaGG4qZ18EMd8Q==", + "dependencies": { + "node-fetch-native": "^1.4.0", + "ufo": "^1.3.1", + "unfetch": "^5.0.0", + "vue": "^2.7.10", + "vue-client-only": "^2.1.0", + "vue-meta": "^2.4.0", + "vue-no-ssr": "^1.1.1", + "vue-router": "^3.6.5", + "vue-template-compiler": "^2.7.15", + "vuex": "^3.6.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/vue-renderer": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/vue-renderer/-/vue-renderer-2.17.2.tgz", + "integrity": "sha512-08OaxLDwIqR/Wh0+CYhoMJTXz9C9hV5dBE1d4Pw39nUwWRe+eQRcFxrpeWyXMV//cvS6mwlBSYsAK3fjMF3uNA==", + "dependencies": { + "@nuxt/devalue": "^2.0.2", + "@nuxt/utils": "2.17.2", + "consola": "^3.2.3", + "defu": "^6.1.2", + "fs-extra": "^10.1.0", + "lodash": "^4.17.21", + "lru-cache": "^5.1.1", + "ufo": "^1.3.1", + "vue": "^2.7.10", + "vue-meta": "^2.4.0", + "vue-server-renderer": "^2.7.15" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/vue-renderer/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/vue-renderer/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/@nuxt/webpack": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/@nuxt/webpack/-/webpack-2.17.2.tgz", + "integrity": "sha512-QcV5Oo0ObpAG8bAiqYbIIf+SwhVJutTSOgf05NHob9VcPEXwCwDjO8zICrVgKvdjWnmlg5GFySaVMa407puE6g==", + "dependencies": { + "@babel/core": "^7.23.2", + "@nuxt/babel-preset-app": "2.17.2", + "@nuxt/friendly-errors-webpack-plugin": "^2.5.2", + "@nuxt/utils": "2.17.2", + "babel-loader": "^8.3.0", + "cache-loader": "^4.1.0", + "caniuse-lite": "^1.0.30001553", + "consola": "^3.2.3", + "css-loader": "^5.2.7", + "cssnano": "^6.0.1", + "eventsource-polyfill": "^0.9.6", + "extract-css-chunks-webpack-plugin": "^4.10.0", + "file-loader": "^6.2.0", + "glob": "^8.1.0", + "hard-source-webpack-plugin": "^0.13.1", + "hash-sum": "^2.0.0", + "html-webpack-plugin": "^4.5.1", + "lodash": "^4.17.21", + "memory-fs": "^0.5.0", + "optimize-css-assets-webpack-plugin": "^6.0.1", + "pify": "^5.0.0", + "pnp-webpack-plugin": "^1.7.0", + "postcss": "^8.4.31", + "postcss-import": "^15.1.0", + "postcss-import-resolver": "^2.0.0", + "postcss-loader": "^4.3.0", + "postcss-preset-env": "^9.2.0", + "postcss-url": "^10.1.3", + "semver": "^7.5.4", + "std-env": "^3.4.3", + "style-resources-loader": "^1.5.0", + "terser-webpack-plugin": "^4.2.3", + "thread-loader": "^3.0.4", + "time-fix-plugin": "^2.0.7", + "ufo": "^1.3.1", + "upath": "^2.0.1", + "url-loader": "^4.1.1", + "vue-loader": "^15.11.1", + "vue-style-loader": "^4.1.3", + "vue-template-compiler": "^2.7.15", + "watchpack": "^2.4.0", + "webpack": "^4.47.0", + "webpack-bundle-analyzer": "^4.9.1", + "webpack-dev-middleware": "^5.0.0", + "webpack-hot-middleware": "^2.25.4", + "webpack-node-externals": "^3.0.0", + "webpackbar": "^5.0.2" + }, + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/webpack/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/@nuxt/webpack/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "engines": { + "node": "^14.18.0 || >=16.10.0" + } + }, + "node_modules/@nuxt/webpack/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/@nuxt/webpack/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/webpack/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/webpack/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@nuxt/webpack/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/@nuxtjs/axios": { + "version": "5.13.6", + "resolved": "https://registry.npmjs.org/@nuxtjs/axios/-/axios-5.13.6.tgz", + "integrity": "sha512-XS+pOE0xsDODs1zAIbo95A0LKlilvJi8YW0NoXYuq3/jjxGgWDxizZ6Yx0AIIjZOoGsXJOPc0/BcnSEUQ2mFBA==", + "dependencies": { + "@nuxtjs/proxy": "^2.1.0", + "axios": "^0.21.1", + "axios-retry": "^3.1.9", + "consola": "^2.15.3", + "defu": "^5.0.0" + } + }, + "node_modules/@nuxtjs/google-analytics": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/@nuxtjs/google-analytics/-/google-analytics-2.4.0.tgz", + "integrity": "sha512-rDQTwHIjyjVrx8GywHPuWykJ3jRFGaHl5Iqji/y8tQWUc0yGEeHxOoR0yimzxnTS1Ph2/PubQYpgnVeEPEdL/A==", + "dependencies": { + "vue-analytics": "^5.22.1" + } + }, + "node_modules/@nuxtjs/proxy": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/@nuxtjs/proxy/-/proxy-2.1.0.tgz", + "integrity": "sha512-/qtoeqXgZ4Mg6LRg/gDUZQrFpOlOdHrol/vQYMnKu3aN3bP90UfOUB3QSDghUUK7OISAJ0xp8Ld78aHyCTcKCQ==", + "dependencies": { + "http-proxy-middleware": "^1.0.6" + } + }, + "node_modules/@nuxtjs/youch": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/@nuxtjs/youch/-/youch-4.2.3.tgz", + "integrity": "sha512-XiTWdadTwtmL/IGkNqbVe+dOlT+IMvcBu7TvKI7plWhVQeBCQ9iKhk3jgvVWFyiwL2yHJDlEwOM5v9oVES5Xmw==", + "dependencies": { + "cookie": "^0.3.1", + "mustache": "^2.3.0", + "stack-trace": "0.0.10" + } + }, + "node_modules/@polka/url": { + "version": "1.0.0-next.24", + "resolved": "https://registry.npmjs.org/@polka/url/-/url-1.0.0-next.24.tgz", + "integrity": "sha512-2LuNTFBIO0m7kKIQvvPHN6UE63VjpmL9rnEEaOOaiSPbZK+zUOYIzBAWcED+3XYzhYsd/0mD57VdxAEqqV52CQ==" + }, + "node_modules/@sinclair/typebox": { + "version": "0.24.51", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.24.51.tgz", + "integrity": "sha512-1P1OROm/rdubP5aFDSZQILU0vrLCJ4fvHt6EoqHEM+2D/G5MK3bIaymUKLit8Js9gbns5UyJnkP/TZROLw4tUA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "1.8.6", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.6.tgz", + "integrity": "sha512-Ky+XkAkqPZSm3NLBeUng77EBQl3cmeJhITaGHdYH8kjVB+aun3S4XBRti2zt17mtt0mIUDiNxYeoJm6drVvBJQ==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "9.1.2", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-9.1.2.tgz", + "integrity": "sha512-BPS4ynJW/o92PUR4wgriz2Ud5gpST5vz6GQfMixEDK0Z8ZCUv2M7SkBLykH56T++Xs+8ln9zTGbOvNGIe02/jw==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^1.7.0" + } + }, + "node_modules/@trysound/sax": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/@trysound/sax/-/sax-0.2.0.tgz", + "integrity": "sha512-L7z9BgrNEcYyUYtF+HaEfiS5ebkh9jXqbszz7pC0hRBPaatV0XjSD3+eHrpqFemQfgwiFF0QPIarnIihIDn7OA==", + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.5.tgz", + "integrity": "sha512-qoQprZvz5wQFJwMDqeseRXWv3rqMvhgpbXFfVyWhbx9X47POIA6i/+dXefEmZKoAgOaTdaIgNSMqMIU61yRyzA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.8", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.8.tgz", + "integrity": "sha512-ASsj+tpEDsEiFr1arWrlN6V3mdfjRMZt6LtK/Vp/kreFLnr5QH5+DhvD5nINYZXzwJvXeGq+05iUXcAzVrqWtw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.4", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.4.tgz", + "integrity": "sha512-h/NUaSyG5EyxBIp8YRxo4RMe2/qQgvyowRwVMzhYhBCONbW8PUsg4lkFMrhgZhUe5z3L3MiLDuvyJ/CaPa2A8A==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.4", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.4.tgz", + "integrity": "sha512-mSM/iKUk5fDDrEV/e83qY+Cr3I1+Q3qqTuEn++HAWYjEa1+NxZr6CNrcJGf2ZTnq4HoFGC3zaTPZTobCzCFukA==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.9", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.9.tgz", + "integrity": "sha512-olP3sd1qOEe5dXTSaFvQG+02VdRXcdytWLAZsAq1PecU8uqQAhkrnbli7DagjtXKW/Bl7YJbUsa8MPcuc8LHEQ==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/html-minifier-terser": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-5.1.2.tgz", + "integrity": "sha512-h4lTMgMJctJybDp8CQrxTUiiYmedihHWkjnF/8Pxseu2S6Nlfcy8kwboQ8yejh456rP2yWoEVm1sS/FVsfM48w==" + }, + "node_modules/@types/http-proxy": { + "version": "1.17.14", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.14.tgz", + "integrity": "sha512-SSrD0c1OQzlFX7pGu1eXxSEjemej64aaNPRhhVYUGqXh0BtldAAx37MG8btcumvpgKyZp1F5Gn3JkktdxiFv6w==", + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.6.tgz", + "integrity": "sha512-2QF/t/auWm0lsy8XtKVPG19v3sSOQlJe/YHZgfjb/KBBHOGSV+J2q/S671rcq9uTBrLAXmZpqJiaQbMT+zNU1w==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.3.tgz", + "integrity": "sha512-NQn7AHQnk/RSLOxrBbGyJM/aVQ+pjj5HCgasFxc0K/KhoATfQ/47AyUl15I2yBUpihjmas+a+VJBOqecrFH+uA==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.4.tgz", + "integrity": "sha512-pk2B1NWalF9toCRu6gjBzR69syFjP4Od8WRAX+0mmf9lAjCRicLOWc+ZrxZHx/0XRjotgkF9t6iaMJ+aXcOdZQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==" + }, + "node_modules/@types/node": { + "version": "20.10.4", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.10.4.tgz", + "integrity": "sha512-D08YG6rr8X90YB56tSIuBaddy/UXAA9RKJoFvrsnogAum/0pmjkgi4+2nx96A330FmioegBWmEYQ+syqCFaveg==", + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==" + }, + "node_modules/@types/prettier": { + "version": "2.7.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.7.3.tgz", + "integrity": "sha512-+68kP9yzs4LMp7VNh8gdzMSPZFL44MLGqiHWvttYJe+6qnuVr4Ek9wSBQoveqY/r+LwjCcU29kNVkidwim+kYA==", + "dev": true + }, + "node_modules/@types/source-list-map": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@types/source-list-map/-/source-list-map-0.1.6.tgz", + "integrity": "sha512-5JcVt1u5HDmlXkwOD2nslZVllBBc7HDuOICfiZah2Z0is8M8g+ddAEawbmd3VjedfDHBzxCaXLs07QEmb7y54g==" + }, + "node_modules/@types/stack-utils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.3.tgz", + "integrity": "sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==", + "dev": true + }, + "node_modules/@types/tapable": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/@types/tapable/-/tapable-1.0.12.tgz", + "integrity": "sha512-bTHG8fcxEqv1M9+TD14P8ok8hjxoOCkfKc8XXLaaD05kI7ohpeI956jtDOD3XHKBQrlyPughUtzm1jtVhHpA5Q==" + }, + "node_modules/@types/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/@types/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-Hm/T0kV3ywpJyMGNbsItdivRhYNCQQf1IIsYsXnoVPES4t+FMLyDe0/K+Ea7ahWtMtSNb22ZdY7MIyoD9rqARg==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/@types/webpack": { + "version": "4.41.38", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-4.41.38.tgz", + "integrity": "sha512-oOW7E931XJU1mVfCnxCVgv8GLFL768pDO5u2Gzk82i8yTIgX6i7cntyZOkZYb/JtYM8252SN9bQp9tgkVDSsRw==", + "dependencies": { + "@types/node": "*", + "@types/tapable": "^1", + "@types/uglify-js": "*", + "@types/webpack-sources": "*", + "anymatch": "^3.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/@types/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/@types/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-4nZOdMwSPHZ4pTEZzSp0AsTM4K7Qmu40UKW4tJDiOVs20UzYF9l+qUe4s0ftfN0pin06n+5cWWDJXH+sbhAiDw==", + "dependencies": { + "@types/node": "*", + "@types/source-list-map": "*", + "source-map": "^0.7.3" + } + }, + "node_modules/@types/webpack-sources/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.3", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.3.tgz", + "integrity": "sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==", + "dev": true + }, + "node_modules/@vue/babel-helper-vue-jsx-merge-props": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-helper-vue-jsx-merge-props/-/babel-helper-vue-jsx-merge-props-1.4.0.tgz", + "integrity": "sha512-JkqXfCkUDp4PIlFdDQ0TdXoIejMtTHP67/pvxlgeY+u5k3LEdKuWZ3LK6xkxo52uDoABIVyRwqVkfLQJhk7VBA==" + }, + "node_modules/@vue/babel-plugin-transform-vue-jsx": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-plugin-transform-vue-jsx/-/babel-plugin-transform-vue-jsx-1.4.0.tgz", + "integrity": "sha512-Fmastxw4MMx0vlgLS4XBX0XiBbUFzoMGeVXuMV08wyOfXdikAFqBTuYPR0tlk+XskL19EzHc39SgjrPGY23JnA==", + "dependencies": { + "@babel/helper-module-imports": "^7.0.0", + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", + "html-tags": "^2.0.0", + "lodash.kebabcase": "^4.1.1", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-preset-jsx": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-preset-jsx/-/babel-preset-jsx-1.4.0.tgz", + "integrity": "sha512-QmfRpssBOPZWL5xw7fOuHNifCQcNQC1PrOo/4fu6xlhlKJJKSA3HqX92Nvgyx8fqHZTUGMPHmFA+IDqwXlqkSA==", + "dependencies": { + "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.4.0", + "@vue/babel-sugar-composition-api-inject-h": "^1.4.0", + "@vue/babel-sugar-composition-api-render-instance": "^1.4.0", + "@vue/babel-sugar-functional-vue": "^1.4.0", + "@vue/babel-sugar-inject-h": "^1.4.0", + "@vue/babel-sugar-v-model": "^1.4.0", + "@vue/babel-sugar-v-on": "^1.4.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0", + "vue": "*" + }, + "peerDependenciesMeta": { + "vue": { + "optional": true + } + } + }, + "node_modules/@vue/babel-sugar-composition-api-inject-h": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-inject-h/-/babel-sugar-composition-api-inject-h-1.4.0.tgz", + "integrity": "sha512-VQq6zEddJHctnG4w3TfmlVp5FzDavUSut/DwR0xVoe/mJKXyMcsIibL42wPntozITEoY90aBV0/1d2KjxHU52g==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-composition-api-render-instance": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-composition-api-render-instance/-/babel-sugar-composition-api-render-instance-1.4.0.tgz", + "integrity": "sha512-6ZDAzcxvy7VcnCjNdHJ59mwK02ZFuP5CnucloidqlZwVQv5CQLijc3lGpR7MD3TWFi78J7+a8J56YxbCtHgT9Q==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-functional-vue": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-functional-vue/-/babel-sugar-functional-vue-1.4.0.tgz", + "integrity": "sha512-lTEB4WUFNzYt2In6JsoF9sAYVTo84wC4e+PoZWSgM6FUtqRJz7wMylaEhSRgG71YF+wfLD6cc9nqVeXN2rwBvw==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-inject-h": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-inject-h/-/babel-sugar-inject-h-1.4.0.tgz", + "integrity": "sha512-muwWrPKli77uO2fFM7eA3G1lAGnERuSz2NgAxuOLzrsTlQl8W4G+wwbM4nB6iewlKbwKRae3nL03UaF5ffAPMA==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-v-model": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-model/-/babel-sugar-v-model-1.4.0.tgz", + "integrity": "sha512-0t4HGgXb7WHYLBciZzN5s0Hzqan4Ue+p/3FdQdcaHAb7s5D9WZFGoSxEZHrR1TFVZlAPu1bejTKGeAzaaG3NCQ==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-helper-vue-jsx-merge-props": "^1.4.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.4.0", + "camelcase": "^5.0.0", + "html-tags": "^2.0.0", + "svg-tags": "^1.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/babel-sugar-v-on": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/@vue/babel-sugar-v-on/-/babel-sugar-v-on-1.4.0.tgz", + "integrity": "sha512-m+zud4wKLzSKgQrWwhqRObWzmTuyzl6vOP7024lrpeJM4x2UhQtRDLgYjXAw9xBXjCwS0pP9kXjg91F9ZNo9JA==", + "dependencies": { + "@babel/plugin-syntax-jsx": "^7.2.0", + "@vue/babel-plugin-transform-vue-jsx": "^1.4.0", + "camelcase": "^5.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@vue/compiler-sfc": { + "version": "2.7.15", + "resolved": "https://registry.npmjs.org/@vue/compiler-sfc/-/compiler-sfc-2.7.15.tgz", + "integrity": "sha512-FCvIEevPmgCgqFBH7wD+3B97y7u7oj/Wr69zADBf403Tui377bThTjBvekaZvlRr4IwUAu3M6hYZeULZFJbdYg==", + "dependencies": { + "@babel/parser": "^7.18.4", + "postcss": "^8.4.14", + "source-map": "^0.6.1" + } + }, + "node_modules/@vue/component-compiler-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/@vue/component-compiler-utils/-/component-compiler-utils-3.3.0.tgz", + "integrity": "sha512-97sfH2mYNU+2PzGrmK2haqffDpVASuib9/w2/noxiFi31Z54hW+q3izKQXXQZSNhtiUpAI36uSuYepeBe4wpHQ==", + "dependencies": { + "consolidate": "^0.15.1", + "hash-sum": "^1.0.2", + "lru-cache": "^4.1.2", + "merge-source-map": "^1.1.0", + "postcss": "^7.0.36", + "postcss-selector-parser": "^6.0.2", + "source-map": "~0.6.1", + "vue-template-es2015-compiler": "^1.9.0" + }, + "optionalDependencies": { + "prettier": "^1.18.2 || ^2.0.0" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==" + }, + "node_modules/@vue/component-compiler-utils/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/picocolors": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-0.2.1.tgz", + "integrity": "sha512-cMlDqaLEqfSaW8Z7N5Jw+lyIW869EzT73/F5lhtY9cLGoVxSXznfgfXMO0Z5K0o0Q2TkTXq+0KFsdnSe3jDViA==" + }, + "node_modules/@vue/component-compiler-utils/node_modules/postcss": { + "version": "7.0.39", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-7.0.39.tgz", + "integrity": "sha512-yioayjNbHn6z1/Bywyb2Y4s3yvDAeXGOyxqD+LnVOinq6Mdmd++SW2wUNVzavyyHxd6+DxzWGIuosg6P1Rj8uA==", + "dependencies": { + "picocolors": "^0.2.1", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=6.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/prettier": { + "version": "2.8.8", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.8.tgz", + "integrity": "sha512-tdN8qQGvNjw4CHbY+XXk0JgCXn9QiF21a55rBe5LJAU+kDyC4WQn4+awm2Xfk2lQMk5fKup9XgzTZtGkjBdP9Q==", + "optional": true, + "bin": { + "prettier": "bin-prettier.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/@vue/component-compiler-utils/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha512-ncTzHV7NvsQZkYe1DW7cbDLm0YpzHmZF5r/iyP3ZnQtMiJ+pjzisCiMNI+Sj+xQF5pXhSHxSB3uDbsBTzY/c2A==" + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.9.0.tgz", + "integrity": "sha512-C6wW5L+b7ogSDVqymbkkvuW9kruN//YisMED04xzeBBqjHa2FYnmvOlS6Xj68xWQRgWvI9cIglsjFowH/RJyEA==", + "dependencies": { + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.9.0.tgz", + "integrity": "sha512-TG5qcFsS8QB4g4MhrxK5TqfdNe7Ey/7YL/xN+36rRjl/BlGE/NcBvJcqsRgCP6Z92mRE+7N50pRIi8SmKUbcQA==" + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.9.0.tgz", + "integrity": "sha512-NcMLjoFMXpsASZFxJ5h2HZRcEhDkvnNFOAKneP5RbKRzaWJN36NC4jqQHKwStIhGXu5mUWlUUk7ygdtrO8lbmw==" + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.9.0.tgz", + "integrity": "sha512-qZol43oqhq6yBPx7YM3m9Bv7WMV9Eevj6kMi6InKOuZxhw+q9hOkvq5e/PpKSiLfyetpaBnogSbNCfBwyB00CA==" + }, + "node_modules/@webassemblyjs/helper-code-frame": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-code-frame/-/helper-code-frame-1.9.0.tgz", + "integrity": "sha512-ERCYdJBkD9Vu4vtjUYe8LZruWuNIToYq/ME22igL+2vj2dQ2OOujIZr3MEFvfEaqKoVqpsFKAGsRdBSBjrIvZA==", + "dependencies": { + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-fsm": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-fsm/-/helper-fsm-1.9.0.tgz", + "integrity": "sha512-OPRowhGbshCb5PxJ8LocpdX9Kl0uB4XsAjl6jH/dWKlk/mzsANvhwbiULsaiqT5GZGT9qinTICdj6PLuM5gslw==" + }, + "node_modules/@webassemblyjs/helper-module-context": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-module-context/-/helper-module-context-1.9.0.tgz", + "integrity": "sha512-MJCW8iGC08tMk2enck1aPW+BE5Cw8/7ph/VGZxwyvGbJwjktKkDK7vy7gAmMDx88D7mhDTCNKAW5tED+gZ0W8g==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.9.0.tgz", + "integrity": "sha512-R7FStIzyNcd7xKxCZH5lE0Bqy+hGTwS3LJjuv1ZVxd9O7eHCedSdrId/hMOd20I+v8wDXEn+bjfKDLzTepoaUw==" + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.9.0.tgz", + "integrity": "sha512-XnMB8l3ek4tvrKUUku+IVaXNHz2YsJyOOmz+MMkZvh8h1uSJpSen6vYnw3IoQ7WwEuAhL8Efjms1ZWjqh2agvw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.9.0.tgz", + "integrity": "sha512-dcX8JuYU/gvymzIHc9DgxTzUUTLexWwt8uCTWP3otys596io0L5aW02Gb1RjYpx2+0Jus1h4ZFqjla7umFniTg==", + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.9.0.tgz", + "integrity": "sha512-ENVzM5VwV1ojs9jam6vPys97B/S65YQtv/aanqnU7D8aSoHFX8GyhGg0CMfyKNIHBuAVjy3tlzd5QMMINa7wpw==", + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.9.0.tgz", + "integrity": "sha512-GZbQlWtopBTP0u7cHrEx+73yZKrQoBMpwkGEIqlacljhXCkVM1kMQge/Mf+csMJAjEdSwhOyLAS0AoR3AG5P8w==" + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.9.0.tgz", + "integrity": "sha512-FgHzBm80uwz5M8WKnMTn6j/sVbqilPdQXTWraSjBwFXSYGirpkSWE2R9Qvz9tNiTKQvoKILpCuTjBKzOIm0nxw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/helper-wasm-section": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-opt": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "@webassemblyjs/wast-printer": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.9.0.tgz", + "integrity": "sha512-cPE3o44YzOOHvlsb4+E9qSqjc9Qf9Na1OO/BHFy4OI91XDE14MjFN4lTMezzaIWdPqHnsTodGGNP+iRSYfGkjA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.9.0.tgz", + "integrity": "sha512-Qkjgm6Anhm+OMbIL0iokO7meajkzQD71ioelnfPEj6r4eOFuqm4YC3VBPqXjFyyNwowzbMD+hizmprP/Fwkl2A==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-buffer": "1.9.0", + "@webassemblyjs/wasm-gen": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.9.0.tgz", + "integrity": "sha512-9+wkMowR2AmdSWQzsPEjFU7njh8HTO5MqO8vjwEHuM+AMHioNqSBONRdr0NQQ3dVQrzp0s8lTcYqzUdb7YgELA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-wasm-bytecode": "1.9.0", + "@webassemblyjs/ieee754": "1.9.0", + "@webassemblyjs/leb128": "1.9.0", + "@webassemblyjs/utf8": "1.9.0" + } + }, + "node_modules/@webassemblyjs/wast-parser": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-parser/-/wast-parser-1.9.0.tgz", + "integrity": "sha512-qsqSAP3QQ3LyZjNC/0jBJ/ToSxfYJ8kYyuiGvtn/8MK89VrNEfwj7BPQzJVHi0jGTRK2dGdJ5PRqhtjzoww+bw==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/floating-point-hex-parser": "1.9.0", + "@webassemblyjs/helper-api-error": "1.9.0", + "@webassemblyjs/helper-code-frame": "1.9.0", + "@webassemblyjs/helper-fsm": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.9.0.tgz", + "integrity": "sha512-2J0nE95rHXHyQ24cWjMKJ1tqB/ds8z/cyeOZxJhcb+rW+SQASVjuznUSmdz5GpVJTzU8JkhYut0D3siFDD6wsA==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/wast-parser": "1.9.0", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==" + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==" + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/acorn": { + "version": "6.4.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-6.4.2.tgz", + "integrity": "sha512-XtGIhXwF8YM8bJhGxG5kXgjkEuNGLTkoYqVE+KMR+aspr4KGYmKYg7yUe3KghyQ9yheNwLnjmzh/7+gfDBmHCQ==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-walk": { + "version": "8.3.1", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-8.3.1.tgz", + "integrity": "sha512-TgUZgYvqZprrl7YldZNoa9OciCAyZR+Ejm9eXzKCmjsF5IKp/wgQ7Z/ZpjpGTIUPwrHQIcYeI8qDh4PsEwxMbw==", + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-errors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/ajv-errors/-/ajv-errors-1.0.1.tgz", + "integrity": "sha512-DCRfO/4nQ+89p/RK43i8Ezd41EqdGIU4ld7nGF8OQ14oc/we5rEntLCUa7+jrn3nn83BosfwZA0wb4pon2o8iQ==", + "peerDependencies": { + "ajv": ">=5.0.0" + } + }, + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "dependencies": { + "ajv": "^8.0.0" + }, + "peerDependencies": { + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } + } + }, + "node_modules/ajv-formats/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-formats/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "dependencies": { + "string-width": "^4.1.0" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", + "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==" + }, + "node_modules/arg": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/arg/-/arg-5.0.2.tgz", + "integrity": "sha512-PYjyFOLKQ9y57JvQ6QLo8dAgNqswh8M1RMJYdQduT6xbWSgK36P/Z/v+p888pM69jMMfS8Xd8F6I1kQ/I9HUGg==" + }, + "node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/arr-diff": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", + "integrity": "sha512-YVIQ82gZPGBebQV/a8dar4AitzCQs0jjXwMPZllpXMaGjXPYVUawSxQrRsjhjupyVxEvbHgUmIhKVlND+j02kA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-flatten": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", + "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/arr-union": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", + "integrity": "sha512-sKpyeERZ02v1FeCZT8lrfJq5u6goHCtpTAzPwJYe7c8SPFOboNjNg1vz2L4VTn9T4PQxEx13TbXLmYUcS6Ug7Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/array-unique": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", + "integrity": "sha512-SleRWjh9JUud2wH1hPs9rZBZ33H6T9HOiL0uwGnGx9FpE6wKGyfWugmbkEOIs6qWrZhg0LWeLziLrEwQJhs5mQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/array.prototype.reduce": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.reduce/-/array.prototype.reduce-1.0.6.tgz", + "integrity": "sha512-UW+Mz8LG/sPSU8jRDCjVr6J/ZKAGpHfwrZ6kWTG5qCxIEiXdVshqGnu5vEZA8S1y6X4aCSbQZ0/EEsfvEvBiSg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/asn1.js": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-5.4.1.tgz", + "integrity": "sha512-+I//4cYPccV8LdmBLiX8CYvf9Sp3vQsrqu2QNXRcrbiWvcx/UdlFiqUJJzxRQxgsZmvhXhn4cSKeSmoFjVdupA==", + "dependencies": { + "bn.js": "^4.0.0", + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0", + "safer-buffer": "^2.1.0" + } + }, + "node_modules/asn1.js/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/assert": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.1.tgz", + "integrity": "sha512-zzw1uCAgLbsKwBfFc8CX78DDg+xZeBksSO3vwVIDDN5i94eOrPsSSyiVhmsSABFDM/OcpE2aagCat9dnWQLG1A==", + "dependencies": { + "object.assign": "^4.1.4", + "util": "^0.10.4" + } + }, + "node_modules/assert/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/assert/node_modules/util": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/util/-/util-0.10.4.tgz", + "integrity": "sha512-0Pm9hTQ3se5ll1XihRic3FDIku70C+iHUdT/W926rSgHV5QgXsYbKZN8MSC3tJtSkhuROzvsQjAaFENRXr+19A==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/assign-symbols": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", + "integrity": "sha512-Q+JC7Whu8HhmTdBph/Tq59IoRtoy6KAm5zzPv00WdujX82lbAL8K7WVjne7vdCsAmbF4AYaDOPyO3k0kl8qIrw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/async-each": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.6.tgz", + "integrity": "sha512-c646jH1avxr+aVpndVMeAfYw7wAa6idufrlN3LPA4PmKS0QEGp6PIC9nwz0WQkkvBGAMEki3pFdtxaF39J9vvg==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "optional": true + }, + "node_modules/atob": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", + "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", + "bin": { + "atob": "bin/atob.js" + }, + "engines": { + "node": ">= 4.5.0" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/axios": { + "version": "0.21.4", + "resolved": "https://registry.npmjs.org/axios/-/axios-0.21.4.tgz", + "integrity": "sha512-ut5vewkiu8jjGBdqpM44XxjuCjq9LAKeHVmoVfHVzy8eHgxxq8SbAVQNovDA8mVi05kP0Ea/n/UzcSHcTJQfNg==", + "dependencies": { + "follow-redirects": "^1.14.0" + } + }, + "node_modules/axios-retry": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/axios-retry/-/axios-retry-3.9.1.tgz", + "integrity": "sha512-8PJDLJv7qTTMMwdnbMvrLYuvB47M81wRtxQmEdV5w4rgbTXTt+vtPkXwajOfOdSyv/wZICJOC+/UhXH4aQ/R+w==", + "dependencies": { + "@babel/runtime": "^7.15.4", + "is-retry-allowed": "^2.2.0" + } + }, + "node_modules/babel-jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-28.1.3.tgz", + "integrity": "sha512-epUaPOEWMk3cWX0M/sPvCHHCe9fMFAa/9hXEgKP8nFfNl/jlGkE9ucq9NqkZGXLDduCJYS0UvSlPUwC0S+rH6Q==", + "dev": true, + "dependencies": { + "@jest/transform": "^28.1.3", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^28.1.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "dependencies": { + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" + }, + "engines": { + "node": ">= 8.9" + }, + "peerDependencies": { + "@babel/core": "^7.0.0", + "webpack": ">=2" + } + }, + "node_modules/babel-loader/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-28.1.3.tgz", + "integrity": "sha512-Ys3tUKAmfnkRUpPdpa98eYrAR0nV+sSFUZZEGuQ2EbFd1y4SOLtD5QDNHAq+bb9a+bbXvYQC4b+ID/THIMcU6Q==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.7.tgz", + "integrity": "sha512-LidDk/tEGDfuHW2DWh/Hgo4rmnw3cduK6ZkOI1NPFceSK3n/yAGeOsNT7FLnSGHkXj3RHGSEVkN3FsCTY6w2CQ==", + "dependencies": { + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.4.4", + "semver": "^6.3.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.8.7", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.8.7.tgz", + "integrity": "sha512-KyDvZYxAzkC0Aj2dAPyDzi2Ym15e5JKZSK+maI7NAwSqofvuFglbSsxE7wUOvTg9oFVnHMzVzBKcqEb4PJgtOA==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.4", + "core-js-compat": "^3.33.1" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.5.4.tgz", + "integrity": "sha512-S/x2iOCvDaCASLYsOOgWOq4bCfKYVqvO/uxjkaYyZ3rVsVE3CeAI/c84NpyuBBymEgNvHgjEot3a9/Z/kXvqsg==", + "dependencies": { + "@babel/helper-define-polyfill-provider": "^0.4.4" + }, + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-28.1.3.tgz", + "integrity": "sha512-L+fupJvlWAHbQfn74coNX3zf60LXMJsezNvvx8eIh7iOR1luJ1poxYgQk1F8PYtNq/6QODDHCqsSnTFSWC491A==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^28.1.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==" + }, + "node_modules/base": { + "version": "0.11.2", + "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", + "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", + "dependencies": { + "cache-base": "^1.0.1", + "class-utils": "^0.3.5", + "component-emitter": "^1.2.1", + "define-property": "^1.0.0", + "isobject": "^3.0.1", + "mixin-deep": "^1.2.0", + "pascalcase": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "engines": { + "node": "*" + } + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "engines": { + "node": ">=8" + } + }, + "node_modules/bindings": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/bindings/-/bindings-1.5.0.tgz", + "integrity": "sha512-p2q/t/mhvuOj/UeLlV6566GD/guowlr0hHxClI0W9m7MWYkL1F0hLo+0Aexs9HSPCtR1SXQ0TD3MMKrXZajbiQ==", + "optional": true, + "dependencies": { + "file-uri-to-path": "1.0.0" + } + }, + "node_modules/bluebird": { + "version": "3.7.2", + "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.2.tgz", + "integrity": "sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==" + }, + "node_modules/bn.js": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-5.2.1.tgz", + "integrity": "sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==" + }, + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==" + }, + "node_modules/bootstrap": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz", + "integrity": "sha512-51Bbp/Uxr9aTuy6ca/8FbFloBUJZLHwnhTcnjIeRn2suQWsWzcuJhGjKDB5eppVte/8oCdOL3VuwxvZDUggwGQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "jquery": "1.9.1 - 3", + "popper.js": "^1.16.1" + } + }, + "node_modules/bootstrap-vue": { + "version": "2.23.1", + "resolved": "https://registry.npmjs.org/bootstrap-vue/-/bootstrap-vue-2.23.1.tgz", + "integrity": "sha512-SEWkG4LzmMuWjQdSYmAQk1G/oOKm37dtNfjB5kxq0YafnL2W6qUAmeDTcIZVbPiQd2OQlIkWOMPBRGySk/zGsg==", + "hasInstallScript": true, + "dependencies": { + "@nuxt/opencollective": "^0.3.2", + "bootstrap": "^4.6.1", + "popper.js": "^1.16.1", + "portal-vue": "^2.1.7", + "vue-functional-data-merge": "^3.1.0" + } + }, + "node_modules/boxen": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", + "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "dependencies": { + "ansi-align": "^3.0.0", + "camelcase": "^6.2.0", + "chalk": "^4.1.0", + "cli-boxes": "^2.2.1", + "string-width": "^4.2.2", + "type-fest": "^0.20.2", + "widest-line": "^3.1.0", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/boxen/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/brorand": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", + "integrity": "sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==" + }, + "node_modules/browserify-aes": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", + "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", + "dependencies": { + "buffer-xor": "^1.0.3", + "cipher-base": "^1.0.0", + "create-hash": "^1.1.0", + "evp_bytestokey": "^1.0.3", + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/browserify-cipher": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", + "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", + "dependencies": { + "browserify-aes": "^1.0.4", + "browserify-des": "^1.0.0", + "evp_bytestokey": "^1.0.0" + } + }, + "node_modules/browserify-des": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", + "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", + "dependencies": { + "cipher-base": "^1.0.1", + "des.js": "^1.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/browserify-rsa": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.1.0.tgz", + "integrity": "sha512-AdEER0Hkspgno2aR97SAf6vi0y0k8NuOpGnVH3O99rcA5Q6sh8QxcngtHuJ6uXwnfAXNM4Gn1Gb7/MV1+Ymbog==", + "dependencies": { + "bn.js": "^5.0.0", + "randombytes": "^2.0.1" + } + }, + "node_modules/browserify-sign": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.2.2.tgz", + "integrity": "sha512-1rudGyeYY42Dk6texmv7c4VcQ0EsvVbLwZkA+AQB7SxvXxmcD93jcHie8bzecJ+ChDlmAm2Qyu0+Ccg5uhZXCg==", + "dependencies": { + "bn.js": "^5.2.1", + "browserify-rsa": "^4.1.0", + "create-hash": "^1.2.0", + "create-hmac": "^1.1.7", + "elliptic": "^6.5.4", + "inherits": "^2.0.4", + "parse-asn1": "^5.1.6", + "readable-stream": "^3.6.2", + "safe-buffer": "^5.2.1" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/browserify-sign/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/browserify-sign/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/browserify-zlib": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", + "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", + "dependencies": { + "pako": "~1.0.5" + } + }, + "node_modules/browserslist": { + "version": "4.22.2", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.2.tgz", + "integrity": "sha512-0UgcrvQmBDvZHFGdYUehrCNIazki7/lUP3kkoi/r3YB2amZbFM9J43ZRkJTXBUZK4gmx56+Sqk9+Vs9mwZx9+A==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001565", + "electron-to-chromium": "^1.4.601", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz", + "integrity": "sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "optional": true, + "peer": true, + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.2.1" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==" + }, + "node_modules/buffer-json": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/buffer-json/-/buffer-json-2.0.0.tgz", + "integrity": "sha512-+jjPFVqyfF1esi9fvfUs3NqM0pH1ziZ36VP4hmA/y/Ssfo/5w5xHKfTw9BwQjoJ1w/oVtpLomqwUHKdefGyuHw==" + }, + "node_modules/buffer-xor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", + "integrity": "sha512-571s0T7nZWK6vB67HI5dyUF7wXiNcfaPPPTl6zYCNApANjIvYJTg7hlud/+cJpdAhS7dVzqMLmfhfHR3rAcOjQ==" + }, + "node_modules/builtin-status-codes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", + "integrity": "sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==" + }, + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacache/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/cache-base": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", + "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", + "dependencies": { + "collection-visit": "^1.0.0", + "component-emitter": "^1.2.1", + "get-value": "^2.0.6", + "has-value": "^1.0.0", + "isobject": "^3.0.1", + "set-value": "^2.0.0", + "to-object-path": "^0.3.0", + "union-value": "^1.0.0", + "unset-value": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/cache-loader": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-4.1.0.tgz", + "integrity": "sha512-ftOayxve0PwKzBF/GLsZNC9fJBXl8lkZE3TOsjkboHfVHVkL39iUEs1FO07A33mizmci5Dudt38UZrrYXDtbhw==", + "dependencies": { + "buffer-json": "^2.0.0", + "find-cache-dir": "^3.0.0", + "loader-utils": "^1.2.3", + "mkdirp": "^0.5.1", + "neo-async": "^2.6.1", + "schema-utils": "^2.0.0" + }, + "engines": { + "node": ">= 8.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/cache-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/cache-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/call-bind": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.5.tgz", + "integrity": "sha512-C3nQxfFZxFRVoJoGKKI8y3MOEo129NQ+FgQ08iye+Mk4zNZZGdjfs06bVTr+DBSlA66Q2VEcMki/cUCP4SercQ==", + "dependencies": { + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.1", + "set-function-length": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/caniuse-api": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-3.0.0.tgz", + "integrity": "sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==", + "dependencies": { + "browserslist": "^4.0.0", + "caniuse-lite": "^1.0.0", + "lodash.memoize": "^4.1.2", + "lodash.uniq": "^4.5.0" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001570", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001570.tgz", + "integrity": "sha512-+3e0ASu4sw1SWaoCtvPeyXp+5PsjigkSt8OXZbF9StH5pQWbxEjLAZE3n8Aup5udop1uRiKA7a4utUk/uoSpUw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==" + }, + "node_modules/chart.js": { + "version": "3.9.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-3.9.1.tgz", + "integrity": "sha512-Ro2JbLmvg83gXF5F4sniaQ+lTbSv18E+TIf2cOeiH1Iqd2PGFOtem+DUufMZsCJwFE7ywPOpfXFBwRTGq7dh6w==" + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.9.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.9.0.tgz", + "integrity": "sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cipher-base": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", + "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/class-utils": { + "version": "0.3.6", + "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", + "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", + "dependencies": { + "arr-union": "^3.1.0", + "define-property": "^0.2.5", + "isobject": "^3.0.0", + "static-extend": "^0.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/class-utils/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/clean-css": { + "version": "4.2.4", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.4.tgz", + "integrity": "sha512-EJUDT7nDVFDvaQgAo2G/PJvxmp1o/c6iXLbswsBbUFXi1Nr+AjA2cKmfbKDMjMvzEe75g3P6JkaDDAKk96A85A==", + "dependencies": { + "source-map": "~0.6.0" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "engines": { + "node": ">=6" + } + }, + "node_modules/cli-boxes": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", + "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "dependencies": { + "restore-cursor": "^3.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cli-width": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-3.0.0.tgz", + "integrity": "sha512-FxqpkPPwu1HjuN93Omfm4h8uIanXofW0RxVEW3k5RKx+mJJYSthzNhp32Kzxxy3YAEZ/Dc/EWN1vZRY0+kOhbw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/collection-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", + "integrity": "sha512-lNkKvzEeMBBjUGHZ+q6z9pSJla0KWAQPvtzhEV9+iGyQYG+pBpl7xKDhxoNSOZH2hhv0v5k0y2yAM4o4SjoSkw==", + "dependencies": { + "map-visit": "^1.0.0", + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.20", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.20.tgz", + "integrity": "sha512-IfEDxwoWIjkeXL1eXcDiow4UbKjhLdq6/EuSVR9GMN7KVH3r9gQ83e73hsz1Nd1T3ijd5xv1wcWRYO+D6kCI2w==" + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" + }, + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==" + }, + "node_modules/component-emitter": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.1.tgz", + "integrity": "sha512-T0+barUSQRTUQASh8bx02dl+DhF54GtIDY13Y3m9oWTklKbb3Wv974meRpeZ3lp1JpLVECWWNHC4vaG2XHXouQ==", + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "dependencies": { + "mime-db": ">= 1.43.0 < 2" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "dependencies": { + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==" + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "engines": [ + "node >= 0.8" + ], + "dependencies": { + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" + } + }, + "node_modules/connect": { + "version": "3.7.0", + "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", + "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", + "dependencies": { + "debug": "2.6.9", + "finalhandler": "1.1.2", + "parseurl": "~1.3.3", + "utils-merge": "1.0.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/connect/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/connect/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==" + }, + "node_modules/console-browserify": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.2.0.tgz", + "integrity": "sha512-ZMkYO/LkF17QvCPqM0gxw8yUzigAOZOSWSHg91FH6orS7vcEj5dVZTidN2fQ14yBSdg97RqhSNwLUXInd52OTA==" + }, + "node_modules/consolidate": { + "version": "0.15.1", + "resolved": "https://registry.npmjs.org/consolidate/-/consolidate-0.15.1.tgz", + "integrity": "sha512-DW46nrsMJgy9kqAbPt5rKaCr7uFtpo4mSUvLHIUbJEjm0vo+aY5QLwBUq3FK4tRnJr/X0Psc0C4jf/h+HtXSMw==", + "deprecated": "Please upgrade to consolidate v1.0.0+ as it has been modernized with several long-awaited fixes implemented. Maintenance is supported by Forward Email at https://forwardemail.net ; follow/watch https://github.com/ladjs/consolidate for updates and release changelog", + "dependencies": { + "bluebird": "^3.1.1" + }, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==" + }, + "node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/cookie": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", + "integrity": "sha512-+IJOX0OqlHCszo2mBUq+SrEbCj6w7Kpffqx60zYbPTFaO4+yYgRjHwcZNpWvaTylDHaV7PPmBHzSecZiMhtPgw==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/copy-concurrently": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/copy-concurrently/-/copy-concurrently-1.0.5.tgz", + "integrity": "sha512-f2domd9fsVDFtaFcbaRZuYXwtdmnzqbADSwhSWYxYB/Q8zsdUUFMXVRwXGDMWmbEzAn1kdRrtI1T/KTFOL4X2A==", + "dependencies": { + "aproba": "^1.1.1", + "fs-write-stream-atomic": "^1.0.8", + "iferr": "^0.1.5", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.0" + } + }, + "node_modules/copy-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/copy-descriptor": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", + "integrity": "sha512-XgZ0pFcakEUlbwQEVNg3+QAis1FyTL3Qel9FYy8pSkQqoG3PNoT0bOCQtOXcOkur21r2Eq2kI+IE+gsmAEVlYw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/core-js": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.34.0.tgz", + "integrity": "sha512-aDdvlDder8QmY91H88GzNi9EtQi2TjvQhpCX6B1v/dAZHU1AuLgHvRh54RiOerpEhEW46Tkf+vgAViB/CWC0ag==", + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-js-compat": { + "version": "3.34.0", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.34.0.tgz", + "integrity": "sha512-4ZIyeNbW/Cn1wkMMDy+mvrRUxrwFNjKwbhCfQpDd+eLgYipDqp8oGFGtLmhh18EDPKA0g3VUBYOxQGGwvWLVpA==", + "dependencies": { + "browserslist": "^4.22.2" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/crc": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/crc/-/crc-4.3.2.tgz", + "integrity": "sha512-uGDHf4KLLh2zsHa8D8hIQ1H/HtFQhyHrc0uhHBcoKGol/Xnb+MPYfUMw7cvON6ze/GUESTudKayDcJC5HnJv1A==", + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "buffer": ">=6.0.3" + }, + "peerDependenciesMeta": { + "buffer": { + "optional": true + } + } + }, + "node_modules/create-ecdh": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.4.tgz", + "integrity": "sha512-mf+TCx8wWc9VpuxfP2ht0iSISLZnt0JgWlrOKZiNqyUZWnjIaCIVNQArMHnCZKfEYRg6IM7A+NeJoN8gf/Ws0A==", + "dependencies": { + "bn.js": "^4.1.0", + "elliptic": "^6.5.3" + } + }, + "node_modules/create-ecdh/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/create-hash": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", + "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", + "dependencies": { + "cipher-base": "^1.0.1", + "inherits": "^2.0.1", + "md5.js": "^1.3.4", + "ripemd160": "^2.0.1", + "sha.js": "^2.4.0" + } + }, + "node_modules/create-hmac": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", + "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", + "dependencies": { + "cipher-base": "^1.0.3", + "create-hash": "^1.1.0", + "inherits": "^2.0.1", + "ripemd160": "^2.0.0", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + } + }, + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==" + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/crypto-browserify": { + "version": "3.12.0", + "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", + "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", + "dependencies": { + "browserify-cipher": "^1.0.0", + "browserify-sign": "^4.0.0", + "create-ecdh": "^4.0.0", + "create-hash": "^1.1.0", + "create-hmac": "^1.1.0", + "diffie-hellman": "^5.0.0", + "inherits": "^2.0.1", + "pbkdf2": "^3.0.3", + "public-encrypt": "^4.0.0", + "randombytes": "^2.0.0", + "randomfill": "^1.0.3" + }, + "engines": { + "node": "*" + } + }, + "node_modules/css-blank-pseudo": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/css-blank-pseudo/-/css-blank-pseudo-6.0.1.tgz", + "integrity": "sha512-goSnEITByxTzU4Oh5oJZrEWudxTqk7L6IXj1UW69pO6Hv0UdX+Vsrt02FFu5DweRh2bLu6WpX/+zsQCu5O1gKw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-declaration-sorter": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-7.1.1.tgz", + "integrity": "sha512-dZ3bVTEEc1vxr3Bek9vGwfB5Z6ESPULhcRvO472mfjVnj8jRcTnKO8/JTczlvxM10Myb+wBM++1MtdO76eWcaQ==", + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/css-has-pseudo": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/css-has-pseudo/-/css-has-pseudo-6.0.1.tgz", + "integrity": "sha512-WwoVKqNxApfEI7dWFyaHoeFCcUPD+lPyjL6lNpRUNX7IyIUuVpawOTwwA5D0ZR6V2xQZonNPVj8kEcxzEaAQfQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/selector-specificity": "^3.0.1", + "postcss-selector-parser": "^6.0.13", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-loader": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-5.2.7.tgz", + "integrity": "sha512-Q7mOvpBNBG7YrVGMxRxcBJZFL75o+cH2abNASdibkj/fffYD8qWbInZrD0S9ccI6vZclF3DsHE7njGlLtaHbhg==", + "dependencies": { + "icss-utils": "^5.1.0", + "loader-utils": "^2.0.0", + "postcss": "^8.2.15", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.1.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/css-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/css-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/css-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/css-prefers-color-scheme": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/css-prefers-color-scheme/-/css-prefers-color-scheme-9.0.1.tgz", + "integrity": "sha512-iFit06ochwCKPRiWagbTa1OAWCvWWVdEnIFd8BaRrgO8YrrNh4RAWUQTFcYX5tdFZgFl1DJ3iiULchZyEbnF4g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/css-select": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-5.1.0.tgz", + "integrity": "sha512-nwoRF1rvRRnnCqqY7updORDsuqKzqYJ28+oSMaJMMgOauh3fvwHqMS7EZpIPqK8GL+g9mKxF1vP/ZjSeNjEVHg==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.1.0", + "domhandler": "^5.0.2", + "domutils": "^3.0.1", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/css-tree": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.3.1.tgz", + "integrity": "sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==", + "dependencies": { + "mdn-data": "2.0.30", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0" + } + }, + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/cssdb": { + "version": "7.9.1", + "resolved": "https://registry.npmjs.org/cssdb/-/cssdb-7.9.1.tgz", + "integrity": "sha512-fqy6ZnNfpb8qAvTT0qijWyTsUmYThsDX2F2ctMG4ceI7mI4DtsMILSiMBiuuDnVIYTyWvCctdp9Nb08p/6m2SQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + } + ] + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/cssnano": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-6.0.2.tgz", + "integrity": "sha512-Tu9wv8UdN6CoiQnIVkCNvi+0rw/BwFWOJBlg2bVfEyKaadSuE3Gq/DD8tniVvggTJGwK88UjqZp7zL5sv6t1aA==", + "dependencies": { + "cssnano-preset-default": "^6.0.2", + "lilconfig": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-preset-default": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-6.0.2.tgz", + "integrity": "sha512-VnZybFeZ63AiVqIUNlxqMxpj9VU8B5j0oKgP7WyVt/7mkyf97KsYkNzsPTV/RVmy54Pg7cBhOK4WATbdCB44gw==", + "dependencies": { + "css-declaration-sorter": "^7.0.0", + "cssnano-utils": "^4.0.1", + "postcss-calc": "^9.0.1", + "postcss-colormin": "^6.0.1", + "postcss-convert-values": "^6.0.1", + "postcss-discard-comments": "^6.0.1", + "postcss-discard-duplicates": "^6.0.1", + "postcss-discard-empty": "^6.0.1", + "postcss-discard-overridden": "^6.0.1", + "postcss-merge-longhand": "^6.0.1", + "postcss-merge-rules": "^6.0.2", + "postcss-minify-font-values": "^6.0.1", + "postcss-minify-gradients": "^6.0.1", + "postcss-minify-params": "^6.0.1", + "postcss-minify-selectors": "^6.0.1", + "postcss-normalize-charset": "^6.0.1", + "postcss-normalize-display-values": "^6.0.1", + "postcss-normalize-positions": "^6.0.1", + "postcss-normalize-repeat-style": "^6.0.1", + "postcss-normalize-string": "^6.0.1", + "postcss-normalize-timing-functions": "^6.0.1", + "postcss-normalize-unicode": "^6.0.1", + "postcss-normalize-url": "^6.0.1", + "postcss-normalize-whitespace": "^6.0.1", + "postcss-ordered-values": "^6.0.1", + "postcss-reduce-initial": "^6.0.1", + "postcss-reduce-transforms": "^6.0.1", + "postcss-svgo": "^6.0.1", + "postcss-unique-selectors": "^6.0.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/cssnano-utils": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-4.0.1.tgz", + "integrity": "sha512-6qQuYDqsGoiXssZ3zct6dcMxiqfT6epy7x4R0TQJadd4LWO3sPR6JH6ZByOvVLoZ6EdwPGgd7+DR1EmX3tiXQQ==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/csso": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/csso/-/csso-5.0.5.tgz", + "integrity": "sha512-0LrrStPOdJj+SPCCrGhzryycLjwcgUSHBtxNA8aIDxf0GLsRh1cKYhB00Gd1lDOS4yGH69+SNn13+TWbVHETFQ==", + "dependencies": { + "css-tree": "~2.2.0" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/css-tree": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-2.2.1.tgz", + "integrity": "sha512-OA0mILzGc1kCOCSJerOeqDxDQ4HOh+G8NbOJFOTgOCzpw7fCBubk0fEyxp8AgOL/jvLgYA/uV0cMbe43ElF1JA==", + "dependencies": { + "mdn-data": "2.0.28", + "source-map-js": "^1.0.1" + }, + "engines": { + "node": "^10 || ^12.20.0 || ^14.13.0 || >=15.0.0", + "npm": ">=7.0.0" + } + }, + "node_modules/csso/node_modules/mdn-data": { + "version": "2.0.28", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.28.tgz", + "integrity": "sha512-aylIc7Z9y4yzHYAJNuESG3hfhC+0Ibp/MAMiaOZgNv4pmEdFyfZhhhny4MNiAfWdBQ1RQ2mfDWmM1x8SvGyp8g==" + }, + "node_modules/csstype": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz", + "integrity": "sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==" + }, + "node_modules/csv-parse": { + "version": "5.5.3", + "resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-5.5.3.tgz", + "integrity": "sha512-v0KW6C0qlZzoGjk6u5tLmVfyZxNgPGXZsWTXshpAgKVGmGXzaVWGdlCFxNx5iuzcXT/oJN1HHM9DZKwtAtYa+A==", + "dev": true + }, + "node_modules/cuint": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/cuint/-/cuint-0.2.2.tgz", + "integrity": "sha512-d4ZVpCW31eWwCMe1YT3ur7mUDnTXbgwyzaL320DrcRT45rfjYxkt5QWLrmOJ+/UEAI2+fQgKe/fCjR8l4TpRgw==" + }, + "node_modules/cyclist": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/cyclist/-/cyclist-1.0.2.tgz", + "integrity": "sha512-0sVXIohTfLqVIW3kb/0n6IiWF3Ifj5nm2XaSrLq2DI6fKIGa2fYAZdk917rUneaeLVpYfFcyXE2ft0fe3remsA==" + }, + "node_modules/de-indent": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/de-indent/-/de-indent-1.0.2.tgz", + "integrity": "sha512-e/1zu3xH5MQryN2zdVaF0OrdNLUbvWxzMbi+iNA6Bky7l1RoP8a2fIbRocyHclXt/arDrrR6lL3TqFD9pMQTsg==" + }, + "node_modules/debounce": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz", + "integrity": "sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==" + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decode-uri-component": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.2.tgz", + "integrity": "sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.1.tgz", + "integrity": "sha512-E7uGkTzkk1d0ByLeSc6ZsFS79Axg+m1P/VsgYsxHgiuc3tFSj+MjMIwe90FC4lOAZzNBdY7kkO2P2wKdsQ1vgQ==", + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/define-property": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", + "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", + "dependencies": { + "is-descriptor": "^1.0.2", + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/defu": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/defu/-/defu-5.0.1.tgz", + "integrity": "sha512-EPS1carKg+dkEVy3qNTqIdp2qV7mUP08nIsupfwQpz++slCVRw7qbQyWvSTig+kFPwz2XXp5/kIIkH+CwrJKkQ==" + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/des.js": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.1.0.tgz", + "integrity": "sha512-r17GxjhUCjSRy8aiJpr8/UadFIzMzJGexI3Nmz4ADi9LYSFx4gTBp80+NaX/YsXWWLhpZ7v/v/ubEc/bCNfKwg==", + "dependencies": { + "inherits": "^2.0.1", + "minimalistic-assert": "^1.0.0" + } + }, + "node_modules/destr": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/destr/-/destr-2.0.2.tgz", + "integrity": "sha512-65AlobnZMiCET00KaFFjUefxDX0khFA/E4myqZ7a6Sq1yZtR8+FVIvilVX66vF2uobSumxooYZChiRPCKNqhmg==" + }, + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" + } + }, + "node_modules/detect-indent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-5.0.0.tgz", + "integrity": "sha512-rlpvsxUtM0PQvy9iZe640/IWwWYyBsTApREbA1pHOpmOUIl9MkP/U4z7vTtg4Oaojvqhxt7sdufnT0EzGaR31g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/devalue": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/devalue/-/devalue-2.0.1.tgz", + "integrity": "sha512-I2TiqT5iWBEyB8GRfTDP0hiLZ0YeDJZ+upDxjBfOC2lebO5LezQMv7QvIUTzdb64jQyAKLf1AHADtGN+jw6v8Q==" + }, + "node_modules/diff-sequences": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-28.1.1.tgz", + "integrity": "sha512-FU0iFaH/E23a+a718l8Qa/19bF9p06kgE0KipMOMadwa3SjnaElKzPaUC0vnibs6/B/9ni97s61mcejk8W1fQw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/diffie-hellman": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", + "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", + "dependencies": { + "bn.js": "^4.1.0", + "miller-rabin": "^4.0.0", + "randombytes": "^2.0.0" + } + }, + "node_modules/diffie-hellman/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-2.0.0.tgz", + "integrity": "sha512-wIkAryiqt/nV5EQKqQpo3SToSOV9J0DnbJqwK7Wv/Trc92zIAYZ4FlMu+JPFW1DfGFt81ZTCGgDEabffXeLyJg==", + "dependencies": { + "domelementtype": "^2.3.0", + "domhandler": "^5.0.2", + "entities": "^4.2.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/domain-browser": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", + "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", + "engines": { + "node": ">=0.4", + "npm": ">=1.2" + } + }, + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domhandler": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-5.0.3.tgz", + "integrity": "sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==", + "dependencies": { + "domelementtype": "^2.3.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/domutils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-3.1.0.tgz", + "integrity": "sha512-H78uMmQtI2AhgDJjWeQmHwJJ2bLPD3GMmO7Zja/ZZh84wkm+4ut+IUnUdRa8uCGX88DiVx1j6FRe1XfxEgjEZA==", + "dependencies": { + "dom-serializer": "^2.0.0", + "domelementtype": "^2.3.0", + "domhandler": "^5.0.3" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/dot-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/dotenv": { + "version": "16.3.1", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.3.1.tgz", + "integrity": "sha512-IPzF4w4/Rd94bA9imS68tZBaYyBWSCE47V1RGuMrB94iyTOIEwRmVL2x/4An+6mETpLrKJ5hQkB8W4kFAadeIQ==", + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/motdotla/dotenv?sponsor=1" + } + }, + "node_modules/duplexer": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/duplexer/-/duplexer-0.1.2.tgz", + "integrity": "sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==" + }, + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dependencies": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==" + }, + "node_modules/electron-to-chromium": { + "version": "1.4.614", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.614.tgz", + "integrity": "sha512-X4ze/9Sc3QWs6h92yerwqv7aB/uU8vCjZcrMjA8N9R1pjMFRe44dLsck5FzLilOYvcXuDn93B+bpGYyufc70gQ==" + }, + "node_modules/elliptic": { + "version": "6.5.4", + "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.4.tgz", + "integrity": "sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==", + "dependencies": { + "bn.js": "^4.11.9", + "brorand": "^1.1.0", + "hash.js": "^1.0.0", + "hmac-drbg": "^1.0.1", + "inherits": "^2.0.4", + "minimalistic-assert": "^1.0.1", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/elliptic/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/emittery": { + "version": "0.10.2", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.10.2.tgz", + "integrity": "sha512-aITqOwnLanpHLNXZJENbOgjUBeHocD+xsSJmNrjovKBW5HbSpW3d1pEls7GFQPUWXiwG9+0P4GtHfEqC/4M0Iw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==" + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", + "dependencies": { + "once": "^1.4.0" + } + }, + "node_modules/enhanced-resolve": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.5.0.tgz", + "integrity": "sha512-Nv9m36S/vxpsI+Hc4/ZGRs0n9mXqSWGGq49zxb/cJfPAQMbUtttJAlNPS4AQzaBdw/pKskw5bMbekT/Y7W/Wlg==", + "dependencies": { + "graceful-fs": "^4.1.2", + "memory-fs": "^0.5.0", + "tapable": "^1.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/entities": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-4.5.0.tgz", + "integrity": "sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==", + "engines": { + "node": ">=0.12" + }, + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } + }, + "node_modules/es-abstract": { + "version": "1.22.3", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.3.tgz", + "integrity": "sha512-eiiY8HQeYfYH2Con2berK+To6GrK2RxbPawDkGq4UiCQQfZHb6wX9qQqkbpPqaxQFcl8d9QzZqo0tGE0VcrdwA==", + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.5", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.2", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.13" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==" + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.2.tgz", + "integrity": "sha512-BuDyupZt65P9D2D2vA/zqcI3G5xRsklm5N3xCwuiy+/vKy8i0ifdsQP1sLgO4tZDSCaQUSnmC48khknGMV3D2Q==", + "dependencies": { + "get-intrinsic": "^1.2.2", + "has-tostringtag": "^1.0.0", + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint-scope": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-4.0.3.tgz", + "integrity": "sha512-p7VutNr1O/QrxysMo3E45FjYDTeXBy0iTltPFNSqKAIfjDSXC+4dj+qfyuD8bfAXrW/y6lW3O76VaYNPKfpKrg==", + "dependencies": { + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esrecurse/node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "engines": { + "node": ">=4.0" + } + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/eventsource-polyfill": { + "version": "0.9.6", + "resolved": "https://registry.npmjs.org/eventsource-polyfill/-/eventsource-polyfill-0.9.6.tgz", + "integrity": "sha512-LyMFp2oPDGhum2lMvkjqKZEwWd2/AoXyt8aoyftTBMWwPHNgU+2tdxhTHPluDxoz+z4gNj0uHAPR9nqevATMbg==" + }, + "node_modules/evp_bytestokey": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", + "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", + "dependencies": { + "md5.js": "^1.3.4", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expand-brackets": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", + "integrity": "sha512-w/ozOKR9Obk3qoWeY/WDi6MFta9AoMR+zud60mdnbniMcBxRuFJyDt2LdX/14A1UABeqk+Uk+LDfUpvoGKppZA==", + "dependencies": { + "debug": "^2.3.3", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "posix-character-classes": "^0.1.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/expand-brackets/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/expand-brackets/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/expand-brackets/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/expect": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/expect/-/expect-28.1.3.tgz", + "integrity": "sha512-eEh0xn8HlsuOBxFgIss+2mX85VAS4Qy3OSkjV7rlBWljtA4oWH37glVGyOZSZvErDT/yBywZdPGwCXuTvSG85g==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/extend-shallow": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", + "integrity": "sha512-BwY5b5Ql4+qZoefgMj2NUmx+tehVTH/Kf4k1ZEtOHNFcm2wSxMRo992l6X3TIgni2eZVTZ85xMOjF31fwZAj6Q==", + "dependencies": { + "assign-symbols": "^1.0.0", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "dependencies": { + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/extglob": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", + "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", + "dependencies": { + "array-unique": "^0.3.2", + "define-property": "^1.0.0", + "expand-brackets": "^2.1.4", + "extend-shallow": "^2.0.1", + "fragment-cache": "^0.2.1", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extglob/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/extract-css-chunks-webpack-plugin": { + "version": "4.10.0", + "resolved": "https://registry.npmjs.org/extract-css-chunks-webpack-plugin/-/extract-css-chunks-webpack-plugin-4.10.0.tgz", + "integrity": "sha512-D/wb/Tbexq8XMBl4uhthto25WBaHI9P8vucDdzwPtLTyVi4Rdw/aiRLSL2rHaF6jZfPAjThWXepFU9PXsdtIbA==", + "dependencies": { + "loader-utils": "^2.0.4", + "normalize-url": "1.9.1", + "schema-utils": "^1.0.0", + "webpack-sources": "^1.1.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.4.0 || ^5.0.0" + } + }, + "node_modules/extract-css-chunks-webpack-plugin/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/figgy-pudding": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/figgy-pudding/-/figgy-pudding-3.5.2.tgz", + "integrity": "sha512-0btnI/H8f2pavGMN8w40mlSKOfTK2SVJmBfBeVIj3kNw0swwgzyRq0d5TJVOwodFmtvpPeWPN/MCcfuWF0Ezbw==", + "deprecated": "This module is no longer supported." + }, + "node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/file-loader": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-6.2.0.tgz", + "integrity": "sha512-qo3glqyTa61Ytg4u73GultjHGjdRyig3tG6lPtyX/jOEJvHif9uB0/OCI2Kif6ctF3caQTW2G5gym21oAsI4pw==", + "dependencies": { + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/file-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/file-uri-to-path": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/file-uri-to-path/-/file-uri-to-path-1.0.0.tgz", + "integrity": "sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==", + "optional": true + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/finalhandler": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", + "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "~2.3.0", + "parseurl": "~1.3.3", + "statuses": "~1.5.0", + "unpipe": "~1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + } + }, + "node_modules/find-cache-dir/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/flat": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/flat/-/flat-5.0.2.tgz", + "integrity": "sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==", + "bin": { + "flat": "cli.js" + } + }, + "node_modules/flush-write-stream": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/flush-write-stream/-/flush-write-stream-1.1.1.tgz", + "integrity": "sha512-3Z4XhFZ3992uIq0XOqb9AreonueSYphE6oYbpt5+3u06JWklbsPkNv3ZKkP9Bz/r+1MWCaMoSQ28P85+1Yc77w==", + "dependencies": { + "inherits": "^2.0.3", + "readable-stream": "^2.3.6" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.3", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.3.tgz", + "integrity": "sha512-1VzOtuEM8pC9SFU1E+8KfTjZyMztRsgEfwQl44z8A25uy13jSzTj6dyK2Df52iV0vgHCfBwLhDWevLn95w5v6Q==", + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" + }, + "peerDependenciesMeta": { + "debug": { + "optional": true + } + } + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/for-in": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", + "integrity": "sha512-7EwmXrOjyL+ChxMhmG5lnW9MPt1aIeZEwKhQzoBUdTV0N3zuwWDZYVJatDvZ2OyzPUvdIAZDsCetk3coyMfcnQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fraction.js": { + "version": "4.3.7", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.7.tgz", + "integrity": "sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==", + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fragment-cache": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", + "integrity": "sha512-GMBAbW9antB8iZRHLoGw0b3HANt57diZYFO/HL1JGIC1MjKrdmhxvrJbupnVvpys0zsz7yBApXdQyfepKly2kA==", + "dependencies": { + "map-cache": "^0.2.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/from2": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/from2/-/from2-2.3.0.tgz", + "integrity": "sha512-OMcX/4IC/uqEPVgGeyfN22LJk6AZrMkRZHxcHBMBvHScDGgwTm2GT2Wkgtocyd3JfZffjj2kYUDXXII0Fk9W0g==", + "dependencies": { + "inherits": "^2.0.1", + "readable-stream": "^2.0.0" + } + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/fs-memo": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fs-memo/-/fs-memo-1.2.0.tgz", + "integrity": "sha512-YEexkCpL4j03jn5SxaMHqcO6IuWuqm8JFUYhyCep7Ao89JIYmB8xoKhK7zXXJ9cCaNXpyNH5L3QtAmoxjoHW2w==" + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==" + }, + "node_modules/fs-write-stream-atomic": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/fs-write-stream-atomic/-/fs-write-stream-atomic-1.0.10.tgz", + "integrity": "sha512-gehEzmPn2nAwr39eay+x3X34Ra+M2QlVUTLhkXPjWdeO8RF9kszk116avgBJM3ZyNHgHXBNx+VmPaFC36k0PzA==", + "dependencies": { + "graceful-fs": "^4.1.2", + "iferr": "^0.1.5", + "imurmurhash": "^0.1.4", + "readable-stream": "1 || 2" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==" + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.2.tgz", + "integrity": "sha512-0gSo4ml/0j98Y3lngkFEot/zhiCeWsbYIlZ+uZOVgzLyLaUw7wxUL+nCTP0XJvJg1AXulJRI3UJi8GsbDuxdGA==", + "dependencies": { + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-port-please": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/get-port-please/-/get-port-please-2.6.1.tgz", + "integrity": "sha512-4PDSrL6+cuMM1xs6w36ZIkaKzzE0xzfVBCfebHIJ3FE8iB9oic/ECwPw3iNiD4h1AoJ5XLLBhEviFAVrZsDC5A==", + "dependencies": { + "fs-memo": "^1.2.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-value": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", + "integrity": "sha512-Ln0UQDlxH1BapMu3GPtf7CuYNwRZf2gwCuPqbyG6pB8WfmFpzqcy4xtAaAMUhnNqjMKTiCPZG2oMT3YSx8U2NA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/git-config-path": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/git-config-path/-/git-config-path-2.0.0.tgz", + "integrity": "sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", + "dependencies": { + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" + } + }, + "node_modules/git-url-parse": { + "version": "13.1.1", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-13.1.1.tgz", + "integrity": "sha512-PCFJyeSSdtnbfhSNRw9Wk96dDCNx+sogTe4YNXeXSJxt7xz5hvXekuRn9JX7m+Mf4OscCu8h+mtAl3+h5Fo8lQ==", + "dependencies": { + "git-up": "^7.0.0" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==" + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==" + }, + "node_modules/gzip-size": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/gzip-size/-/gzip-size-6.0.0.tgz", + "integrity": "sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==", + "dependencies": { + "duplexer": "^0.1.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/hable/-/hable-3.0.0.tgz", + "integrity": "sha512-7+G0/2/COR8pwteYFqHIVYfQpuEiO2HXwJrhCBJVgrNrl9O5eaUoJVDGXUJX+0RpGncNVTuestexjk1afj01wQ==" + }, + "node_modules/hard-source-webpack-plugin": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/hard-source-webpack-plugin/-/hard-source-webpack-plugin-0.13.1.tgz", + "integrity": "sha512-r9zf5Wq7IqJHdVAQsZ4OP+dcUSvoHqDMxJlIzaE2J0TZWn3UjMMrHqwDHR8Jr/pzPfG7XxSe36E7Y8QGNdtuAw==", + "dependencies": { + "chalk": "^2.4.1", + "find-cache-dir": "^2.0.0", + "graceful-fs": "^4.1.11", + "lodash": "^4.15.0", + "mkdirp": "^0.5.1", + "node-object-hash": "^1.2.0", + "parse-json": "^4.0.0", + "pkg-dir": "^3.0.0", + "rimraf": "^2.6.2", + "semver": "^5.6.0", + "tapable": "^1.0.0-beta.5", + "webpack-sources": "^1.0.1", + "write-json-file": "^2.3.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "webpack": "*" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==" + }, + "node_modules/hard-source-webpack-plugin/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/hard-source-webpack-plugin/node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.1.tgz", + "integrity": "sha512-VsX8eaIewvas0xnvinAe9bw4WfIeODpGYikiWYLH+dma0Jw6KHYqWiWfhQlgOVK8D6PvjubK5Uc4P0iIhIcNVg==", + "dependencies": { + "get-intrinsic": "^1.2.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", + "integrity": "sha512-IBXk4GTsLYdQ7Rvt+GRBrFSVEkmuOUy4re0Xjd9kJSUQpnTrWR4/y9RpfexN9vkAPMFuQoeWKwqzPozRTlasGw==", + "dependencies": { + "get-value": "^2.0.6", + "has-values": "^1.0.0", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", + "integrity": "sha512-ODYZC64uqzmtfGMEAX/FvZiRyWLpAC3vYnNunURUnkGVTS+mI0smVsWaPydRBsE3g+ok7h960jChO8mFcWlHaQ==", + "dependencies": { + "is-number": "^3.0.0", + "kind-of": "^4.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/has-values/node_modules/kind-of": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", + "integrity": "sha512-24XsCxmEbRwEDbz/qz3stgin8TTzZ1ESR56OMCN0ujYg+vRutNSiOj9bHH9u85DKgXguraugV5sFuvbD4FW/hw==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/hash-base": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.1.0.tgz", + "integrity": "sha512-1nmYp/rhMDiE7AYkDw+lLwlAzz0AntGIe51F3RfFfEqyQ3feY2eI/NcwC6umIQVOASPMsWJLJScWKSSvzL9IVA==", + "dependencies": { + "inherits": "^2.0.4", + "readable-stream": "^3.6.0", + "safe-buffer": "^5.2.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/hash-base/node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/hash-base/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/hash-sum": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-2.0.0.tgz", + "integrity": "sha512-WdZTbAByD+pHfl/g9QSsBIIwy8IT+EsPiKDs0KNX+zSHhdDLFKdZu0BQHljvO+0QI/BasbMSUa8wYNCZTvhslg==" + }, + "node_modules/hash.js": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", + "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", + "dependencies": { + "inherits": "^2.0.3", + "minimalistic-assert": "^1.0.1" + } + }, + "node_modules/hasown": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.0.tgz", + "integrity": "sha512-vUptKVTpIJhcczKBbgnS+RtcuYMB8+oNzPK2/Hp3hanz8JmpATdmmgLgSaadVREkDm+e2giHwY3ZRkyjSIDDFA==", + "dependencies": { + "function-bind": "^1.1.2" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "bin": { + "he": "bin/he" + } + }, + "node_modules/hmac-drbg": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", + "integrity": "sha512-Tti3gMqLdZfhOQY1Mzf/AanLiqh1WTiJgEj26ZuYQ9fbkLomzGchCws4FyrSd4VkpBfiNhaE1On+lOz894jvXg==", + "dependencies": { + "hash.js": "^1.0.3", + "minimalistic-assert": "^1.0.0", + "minimalistic-crypto-utils": "^1.0.1" + } + }, + "node_modules/html-entities": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.4.0.tgz", + "integrity": "sha512-igBTJcNNNhvZFRtm8uA6xMY6xYleeDwn3PeBCkDz7tHttv4F2hsDI2aPgNERWzvRcNYHNT3ymRaQzllmXj4YsQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/mdevils" + }, + { + "type": "patreon", + "url": "https://patreon.com/mdevils" + } + ] + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==" + }, + "node_modules/html-minifier": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-4.0.0.tgz", + "integrity": "sha512-aoGxanpFPLg7MkIl/DDFYtb0iWz7jMFGqFhvEDZga6/4QTjneiD8I/NXL1x5aaoCp7FSIT6h/OhykDdPsbtMig==", + "dependencies": { + "camel-case": "^3.0.0", + "clean-css": "^4.2.1", + "commander": "^2.19.0", + "he": "^1.2.0", + "param-case": "^2.1.1", + "relateurl": "^0.2.7", + "uglify-js": "^3.5.1" + }, + "bin": { + "html-minifier": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-5.1.1.tgz", + "integrity": "sha512-ZPr5MNObqnV/T9akshPKbVgyOqLmy+Bxo7juKCfTfnjNniTAMdy4hz21YQqoofMBJD2kdREaqPPdThoR78Tgxg==", + "dependencies": { + "camel-case": "^4.1.1", + "clean-css": "^4.2.3", + "commander": "^4.1.1", + "he": "^1.2.0", + "param-case": "^3.0.3", + "relateurl": "^0.2.7", + "terser": "^4.6.3" + }, + "bin": { + "html-minifier-terser": "cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/html-minifier-terser/node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "dependencies": { + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" + } + }, + "node_modules/html-minifier-terser/node_modules/commander": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-4.1.1.tgz", + "integrity": "sha512-NOKm8xhkzAjzFx8B2v5OAHT+u5pRQc2UCa2Vq9jYL/31o2wi9mxBA7LIFs3sV5VSC49z6pEhfbMULvShKj26WA==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/html-minifier-terser/node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dependencies": { + "dot-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/html-minifier-terser/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/html-tags": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-2.0.0.tgz", + "integrity": "sha512-+Il6N8cCo2wB/Vd3gqy/8TZhTD3QvcVeQLCnZiGkGCH3JP28IgGAY41giccp2W4R3jfyJPAP318FQTa1yU7K7g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/html-webpack-plugin": { + "version": "4.5.2", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-4.5.2.tgz", + "integrity": "sha512-q5oYdzjKUIPQVjOosjgvCHQOv9Ett9CYYHlgvJeXG0qQvdSojnBq4vAdQBwn1+yGveAwHCoe/rMR86ozX3+c2A==", + "dependencies": { + "@types/html-minifier-terser": "^5.0.0", + "@types/tapable": "^1.0.5", + "@types/webpack": "^4.41.8", + "html-minifier-terser": "^5.0.1", + "loader-utils": "^1.2.3", + "lodash": "^4.17.20", + "pretty-error": "^2.1.1", + "tapable": "^1.1.3", + "util.promisify": "1.0.0" + }, + "engines": { + "node": ">=6.9" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/html-webpack-plugin/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/html-webpack-plugin/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ], + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" + } + }, + "node_modules/htmlparser2/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/htmlparser2/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/htmlparser2/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/htmlparser2/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-errors/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "dependencies": { + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/http-proxy-middleware": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-1.3.1.tgz", + "integrity": "sha512-13eVVDYS4z79w7f1+NPllJtOQFx/FdUW4btIvVRMaRlUY9VGstAbo5MOhLEuUgZFRHn3x50ufn25zkj/boZnEg==", + "dependencies": { + "@types/http-proxy": "^1.17.5", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/https-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", + "integrity": "sha512-J+FkSdyD+0mA0N+81tMotaRMfSL9SGi+xpD3T6YApKsc3bGSXJlfXri3VyFOeYkfLRQisDk1W+jIFFKBeUBbBg==" + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/iferr": { + "version": "0.1.5", + "resolved": "https://registry.npmjs.org/iferr/-/iferr-0.1.5.tgz", + "integrity": "sha512-DUNFN5j7Tln0D+TxzloUjKB+CtVu6myn0JEFak6dG18mNt9YkQ6lzGCdafwofISZ1lLF3xRHJ98VKy9ynkcFaA==" + }, + "node_modules/ignore": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.0.tgz", + "integrity": "sha512-g7dmpshy+gD7mh88OC9NwSGTKoc3kyLAZQRU1mt53Aw/vnvfXnbC+F/7F7QoYVKbV+KNvJx8wArewKy1vXMtlg==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "engines": { + "node": ">=4" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==" + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inquirer": { + "version": "7.3.3", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-7.3.3.tgz", + "integrity": "sha512-JG3eIAj5V9CwcGvuOmoo6LB9kbAYT8HXffUl6memuszlwDC/qvFAJw49XJ5NROSFNPxp3iQg1GqkFhaY/CR0IA==", + "dependencies": { + "ansi-escapes": "^4.2.1", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-width": "^3.0.0", + "external-editor": "^3.0.3", + "figures": "^3.0.0", + "lodash": "^4.17.19", + "mute-stream": "0.0.8", + "run-async": "^2.4.0", + "rxjs": "^6.6.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0", + "through": "^2.3.6" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/internal-slot": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.6.tgz", + "integrity": "sha512-Xj6dv+PsbtwyPpEflsejS+oIZxmMlV44zAhG479uYu89MsjcYOhCFnNyKrkJrihbsiasQyY0afoCl/9BLR65bg==", + "dependencies": { + "get-intrinsic": "^1.2.2", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ip": { + "version": "1.1.8", + "resolved": "https://registry.npmjs.org/ip/-/ip-1.1.8.tgz", + "integrity": "sha512-PuExPYUiu6qMBQb4l06ecm6T6ujzhmh+MeJcW9wa89PoAz5pvd4zPgN5WJV104mb6S2T1AwNIAaB70JNrLQWhg==" + }, + "node_modules/is-accessor-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.1.tgz", + "integrity": "sha512-YBUanLI8Yoihw923YeFUS5fs0fF2f5TSFTNiYAAzhhDscDa3lEqYuz1pDOEP5KvX94I9ey3vsqjJcLVFVU+3QA==", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==" + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.1", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.1.tgz", + "integrity": "sha512-hHrIjvZsftOsvKSn2TRYl63zvxsgE0K+0mYMoH6gD4omR5IWB2KynivBQczo3+wF1cCkjzvptnI9Q0sPU66ilw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-data-descriptor": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.1.tgz", + "integrity": "sha512-bc4NlCDiCr28U4aEsQ3Qs2491gVq4V8G7MQyws968ImqjKuYtTJXrl7Vq7jsN7Ly/C3xj5KWFrY7sHNeDkAzXw==", + "dependencies": { + "hasown": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-descriptor": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.3.tgz", + "integrity": "sha512-JCNNGbwWZEVaSPtS45mdtrneRWJFp07LLmykxeFV5F6oBvNF8vHSfJuJgoT472pSfk+Mf8VnlrspaFBHWM8JAw==", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/is-extendable": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", + "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", + "dependencies": { + "is-plain-object": "^2.0.4" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extendable/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-retry-allowed": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-retry-allowed/-/is-retry-allowed-2.2.0.tgz", + "integrity": "sha512-XVm7LOeLpTW4jV19QSH38vkswxoLud8sQ57YwJVTPWdiaI9I8keEhGFpBlslyVsgdQy4Opg8QOLb8YRgsyZiQg==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", + "dependencies": { + "protocols": "^2.0.1" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-windows": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", + "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-wsl": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-1.1.0.tgz", + "integrity": "sha512-gfygJYZ2gLTDlmbWMI0CE2MwnFzSN/2SZfkMlItC4K/JBlsWVDB0bO6XhqcY13YXE7iMcAJnzTCJjPiTeJJ0Mw==", + "engines": { + "node": ">=4" + } + }, + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.2.tgz", + "integrity": "sha512-O8dpsF+r0WV/8MNRKfnmrtCWhuKjxrq2w+jpzBL5UZKTi2LeVWnWOmWRxFlesJONmc+wLAGvKQZEOanko0LFTg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest/-/jest-28.1.3.tgz", + "integrity": "sha512-N4GT5on8UkZgH0O5LUavMRV1EDEhNTL0KEfRmDIeZHSV7p2XgLoY9t9VDUgL6o+yfdgYHVxuz81G8oB9VG5uyA==", + "dev": true, + "dependencies": { + "@jest/core": "^28.1.3", + "@jest/types": "^28.1.3", + "import-local": "^3.0.2", + "jest-cli": "^28.1.3" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-28.1.3.tgz", + "integrity": "sha512-esaOfUWJXk2nfZt9SPyC8gA1kNfdKLkQWyzsMlqq8msYSlNKfmZxfRgZn4Cd4MGVUF+7v6dBs0d5TOAKa7iIiA==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-circus": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-28.1.3.tgz", + "integrity": "sha512-cZ+eS5zc79MBwt+IhQhiEp0OeBddpc1n8MBo1nMB8A7oPMKEO+Sre+wHaLJexQUj9Ya/8NOBY0RESUgYjB6fow==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/expect": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^28.1.3", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "p-limit": "^3.1.0", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-cli": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-28.1.3.tgz", + "integrity": "sha512-roY3kvrv57Azn1yPgdTebPAXvdR2xfezaKKYzVxZ6It/5NCxzJym6tUI5P1zkdWhfUYkxEI9uZWcQdaFLo8mJQ==", + "dev": true, + "dependencies": { + "@jest/core": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^28.1.3", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "prompts": "^2.0.1", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-config": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-28.1.3.tgz", + "integrity": "sha512-MG3INjByJ0J4AsNBm7T3hsuxKQqFIiRo/AUqb1q9LRKI5UU6Aar9JHbr9Ivn1TVwfUD9KirRoM/T6u8XlcQPHQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^28.1.3", + "@jest/types": "^28.1.3", + "babel-jest": "^28.1.3", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^28.1.3", + "jest-environment-node": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-regex-util": "^28.0.2", + "jest-resolve": "^28.1.3", + "jest-runner": "^28.1.3", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-diff": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-28.1.3.tgz", + "integrity": "sha512-8RqP1B/OXzjjTWkqMX67iqgwBVJRgCyKD3L9nq+6ZqJMdvjE8RgHktqZ6jNrkdMT+dJuYNI3rhQpxaz7drJHfw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^28.1.1", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-docblock": { + "version": "28.1.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-28.1.1.tgz", + "integrity": "sha512-3wayBVNiOYx0cwAbl9rwm5kKFP8yHH3d/fkEaL02NPTkDojPtheGB7HZSFY4wzX+DxyrvhXz0KSCVksmCknCuA==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-each": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-28.1.3.tgz", + "integrity": "sha512-arT1z4sg2yABU5uogObVPvSlSMQlDA48owx07BDPAiasW0yYpYHYOo4HHLz9q0BVzDVU4hILFjzJw0So9aCL/g==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "chalk": "^4.0.0", + "jest-get-type": "^28.0.2", + "jest-util": "^28.1.3", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-environment-node": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-28.1.3.tgz", + "integrity": "sha512-ugP6XOhEpjAEhGYvp5Xj989ns5cB1K6ZdjBYuS30umT4CQEETaxSiPcZ/E1kFktX4GkrcM4qu07IIlDYX1gp+A==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/fake-timers": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "jest-mock": "^28.1.3", + "jest-util": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-28.0.2.tgz", + "integrity": "sha512-ioj2w9/DxSYHfOm5lJKCdcAmPJzQXmbM/Url3rhlghrPvT3tt+7a/+oXc9azkKmLvoiXjtV83bEWqi+vs5nlPA==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-28.1.3.tgz", + "integrity": "sha512-3S+RQWDXccXDKSWnkHa/dPwt+2qwA8CJzR61w3FoYCvoo3Pn8tvGcysmMF0Bj0EX5RYvAI2EIvC57OmotfdtKA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^28.0.2", + "jest-util": "^28.1.3", + "jest-worker": "^28.1.3", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-28.1.3.tgz", + "integrity": "sha512-WFVJhnQsiKtDEo5lG2mM0v40QWnBM+zMdHHyJs8AWZ7J0QZJS59MsyKeJHWhpBZBH32S48FOVvGyOFT1h0DlqA==", + "dev": true, + "dependencies": { + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-matcher-utils": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-28.1.3.tgz", + "integrity": "sha512-kQeJ7qHemKfbzKoGjHHrRKH6atgxMk8Enkk2iPQ3XwO6oE/KYD8lMYOziCkeSB9G4adPM4nR1DE8Tf5JeWH6Bw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-message-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-28.1.3.tgz", + "integrity": "sha512-PFdn9Iewbt575zKPf1286Ht9EPoJmYT7P0kY+RibeYZ2XtOr53pDLEFoTWXbd1h4JiGiWpTBC84fc8xMXQMb7g==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^28.1.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^28.1.3", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-mock": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-28.1.3.tgz", + "integrity": "sha512-o3J2jr6dMMWYVH4Lh/NKmDXdosrsJgi4AviS8oXLujcjpCMBb1FMsblDnOXKZKfSiHLxYub1eS0IHuRXsio9eA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "28.0.2", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-28.0.2.tgz", + "integrity": "sha512-4s0IgyNIy0y9FK+cjoVYoxamT7Zeo7MhzqRGx7YDYmaQn1wucY9rotiGkBzzcMXTtjrCAP/f7f+E0F7+fxPNdw==", + "dev": true, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-28.1.3.tgz", + "integrity": "sha512-Z1W3tTjE6QaNI90qo/BJpfnvpxtaFTFw5CDgwpyE/Kz8U/06N1Hjf4ia9quUhCh39qIGWF1ZuxFiBiJQwSEYKQ==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^28.1.3", + "jest-validate": "^28.1.3", + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-28.1.3.tgz", + "integrity": "sha512-qa0QO2Q0XzQoNPouMbCc7Bvtsem8eQgVPNkwn9LnS+R2n8DaVDPL/U1gngC0LTl1RYXJU0uJa2BMC2DbTfFrHA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^28.0.2", + "jest-snapshot": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-runner": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-28.1.3.tgz", + "integrity": "sha512-GkMw4D/0USd62OVO0oEgjn23TM+YJa2U2Wu5zz9xsQB1MxWKDOlrnykPxnMsN0tnJllfLPinHTka61u0QhaxBA==", + "dev": true, + "dependencies": { + "@jest/console": "^28.1.3", + "@jest/environment": "^28.1.3", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "graceful-fs": "^4.2.9", + "jest-docblock": "^28.1.1", + "jest-environment-node": "^28.1.3", + "jest-haste-map": "^28.1.3", + "jest-leak-detector": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-resolve": "^28.1.3", + "jest-runtime": "^28.1.3", + "jest-util": "^28.1.3", + "jest-watcher": "^28.1.3", + "jest-worker": "^28.1.3", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-runtime": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-28.1.3.tgz", + "integrity": "sha512-NU+881ScBQQLc1JHG5eJGU7Ui3kLKrmwCPPtYsJtBykixrM2OhVQlpMmFWJjMyDfdkGgBMNjXCGB/ebzsgNGQw==", + "dev": true, + "dependencies": { + "@jest/environment": "^28.1.3", + "@jest/fake-timers": "^28.1.3", + "@jest/globals": "^28.1.3", + "@jest/source-map": "^28.1.2", + "@jest/test-result": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-mock": "^28.1.3", + "jest-regex-util": "^28.0.2", + "jest-resolve": "^28.1.3", + "jest-snapshot": "^28.1.3", + "jest-util": "^28.1.3", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-28.1.3.tgz", + "integrity": "sha512-4lzMgtiNlc3DU/8lZfmqxN3AYD6GGLbl+72rdBpXvcV+whX7mDrREzkPdp2RnmfIiWBg1YbuFSkXduF2JcafJg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^28.1.3", + "@jest/transform": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/babel__traverse": "^7.0.6", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^28.1.3", + "graceful-fs": "^4.2.9", + "jest-diff": "^28.1.3", + "jest-get-type": "^28.0.2", + "jest-haste-map": "^28.1.3", + "jest-matcher-utils": "^28.1.3", + "jest-message-util": "^28.1.3", + "jest-util": "^28.1.3", + "natural-compare": "^1.4.0", + "pretty-format": "^28.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-28.1.3.tgz", + "integrity": "sha512-XdqfpHwpcSRko/C35uLYFM2emRAltIIKZiJ9eAmhjsj0CqZMa0p1ib0R5fWIqGhn1a103DebTbpqIaP1qCQ6tQ==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-validate": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-28.1.3.tgz", + "integrity": "sha512-SZbOGBWEsaTxBGCOpsRWlXlvNkvTkY0XxRfh7zYmvd8uL5Qzyg0CHAXiXKROflh801quA6+/DsT4ODDthOC/OA==", + "dev": true, + "dependencies": { + "@jest/types": "^28.1.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^28.0.2", + "leven": "^3.1.0", + "pretty-format": "^28.1.3" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-watcher": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-28.1.3.tgz", + "integrity": "sha512-t4qcqj9hze+jviFPUN3YAtAEeFnr/azITXQEMARf5cMwKY2SMBRnCQTXLixTl20OR6mLh9KLMrgVJgJISym+1g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^28.1.3", + "@jest/types": "^28.1.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.10.2", + "jest-util": "^28.1.3", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-worker": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-28.1.3.tgz", + "integrity": "sha512-CqRA220YV/6jCo8VWvAt1KKx6eek1VIHMPeLEbpcfSfkEeWyBNppynM/o6q+Wmw+sOhos2ml34wZbSX3G13//g==", + "dev": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/jiti": { + "version": "1.21.0", + "resolved": "https://registry.npmjs.org/jiti/-/jiti-1.21.0.tgz", + "integrity": "sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==", + "bin": { + "jiti": "bin/jiti.js" + } + }, + "node_modules/jquery": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.7.1.tgz", + "integrity": "sha512-m4avr8yL8kmFN8psrbFFFmB/If14iN5o9nw/NgnnM+kybDJpRsAynV2BsfpTYrTRysYUdADVD7CkUUizgkpLfg==", + "peer": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==" + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==" + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/klona": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.6.tgz", + "integrity": "sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/last-call-webpack-plugin": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/last-call-webpack-plugin/-/last-call-webpack-plugin-3.0.0.tgz", + "integrity": "sha512-7KI2l2GIZa9p2spzPIVZBYyNKkN+e/SQPpnjlTiPhdbDW3F86tdKKELxKpzJ5sgU19wQWsACULZmpTPYHeWO5w==", + "dependencies": { + "lodash": "^4.17.5", + "webpack-sources": "^1.1.0" + } + }, + "node_modules/launch-editor": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor/-/launch-editor-2.6.1.tgz", + "integrity": "sha512-eB/uXmFVpY4zezmGp5XtU21kwo7GBbKB+EQ+UZeWtGb9yAM5xt/Evk+lYH3eRNAtId+ej4u7TYPFZ07w4s7rRw==", + "dependencies": { + "picocolors": "^1.0.0", + "shell-quote": "^1.8.1" + } + }, + "node_modules/launch-editor-middleware": { + "version": "2.6.1", + "resolved": "https://registry.npmjs.org/launch-editor-middleware/-/launch-editor-middleware-2.6.1.tgz", + "integrity": "sha512-Fg/xYhf7ARmRp40n18wIfJyuAMEjXo67Yull7uF7d0OJ3qA4EYJISt1XfPPn69IIJ5jKgQwzcg6DqHYo95LL/g==", + "dependencies": { + "launch-editor": "^2.6.1" + } + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/lilconfig": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-3.0.0.tgz", + "integrity": "sha512-K2U4W2Ff5ibV7j7ydLr+zLAkIg5JJ4lPn1Ltsdt+Tz/IjQ8buJ55pZAxoP34lqIiwtF9iAvtLv3JGv7CAyAg+g==", + "engines": { + "node": ">=14" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==" + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" + }, + "engines": { + "node": ">=8.9.0" + } + }, + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash._reinterpolate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lodash._reinterpolate/-/lodash._reinterpolate-3.0.0.tgz", + "integrity": "sha512-xYHt68QRoYGjeeM/XOE1uJtvXQAgvszfBhjV4yvsQH0u2i9I6cI6c6/eG4Hh3UAOVn0y/xAXwmTzEay49Q//HA==" + }, + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==" + }, + "node_modules/lodash.kebabcase": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/lodash.kebabcase/-/lodash.kebabcase-4.1.1.tgz", + "integrity": "sha512-N8XRTIMMqqDgSy4VLKPnJ/+hpGZN+PHQiJnSenYqPaVV/NCqEogTnAdZLQiGKhxX+JCs8waWq2t1XHWKOmlY8g==" + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==" + }, + "node_modules/lodash.template": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.template/-/lodash.template-4.5.0.tgz", + "integrity": "sha512-84vYFxIkmidUiFxidA/KjjH9pAycqW+h980j7Fuz5qxRtO9pgB7MDFTdys1N7A5mcucRiDyEq4fusljItR1T/A==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0", + "lodash.templatesettings": "^4.0.0" + } + }, + "node_modules/lodash.templatesettings": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/lodash.templatesettings/-/lodash.templatesettings-4.2.0.tgz", + "integrity": "sha512-stgLz+i3Aa9mZgnjr/O+v9ruKZsPsndy7qPZOchbqk2cnTU1ZaldKK+v7m54WoKIyxiuMZTKT2H81F8BeAc3ZQ==", + "dependencies": { + "lodash._reinterpolate": "^3.0.0" + } + }, + "node_modules/lodash.uniq": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", + "integrity": "sha512-xfBaXQd9ryd9dlSDvnvI0lvxfLJlYAZzXomUYzLKtUeOQvOP5piqAWuGtrhWeqaXK9hhoM/iyJc5AV+XfsX3HQ==" + }, + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==" + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-cache": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", + "integrity": "sha512-8y/eV9QQZCiyn1SprXSrCmqJN0yNRATe+PO8ztwqrvrbdRLA3eYJF0yaR0YayLWkMbsQSKWS9N2gPcGEc4UsZg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/map-visit": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", + "integrity": "sha512-4y7uGv8bd2WdM9vpQsiQNo41Ln1NvhvDRuVt0k2JZQ+ezN2uaQes7lZeZ+QQUHOLQAtDaBJ+7wCbi+ab/KFs+w==", + "dependencies": { + "object-visit": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/md5.js": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", + "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/mdn-data": { + "version": "2.0.30", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.30.tgz", + "integrity": "sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==" + }, + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", + "dependencies": { + "fs-monkey": "^1.0.4" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/memory-fs": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", + "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + }, + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/merge-source-map": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/merge-source-map/-/merge-source-map-1.1.0.tgz", + "integrity": "sha512-Qkcp7P2ygktpMPh2mCQZaf3jhN6D3Z/qVZHSdWvQ+2Ef5HgRAPBO57A77+ENm0CPx2+1Ce/MYKi3ymqdfuqibw==", + "dependencies": { + "source-map": "^0.6.1" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==" + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/miller-rabin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", + "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", + "dependencies": { + "bn.js": "^4.0.0", + "brorand": "^1.0.1" + }, + "bin": { + "miller-rabin": "bin/miller-rabin" + } + }, + "node_modules/miller-rabin/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/mime": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.5.2.tgz", + "integrity": "sha512-tqkh47FzKeCPD2PUiPB6pkbMzsCasjxAfC62/Wap5qrUWcb+sFasXUC5I3gYM5iBM8v/Qpn4UK0x+j0iHyFPDg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==" + }, + "node_modules/minimalistic-crypto-utils": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", + "integrity": "sha512-JIYlbt6g8i5jKfJ3xz7rF0LXmv2TkDxBLUkiBeZ7bAx4GnnNMr8xFpGnOxn6GhTEHx3SjRrZEoU+j04prX1ktg==" + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/mississippi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/mississippi/-/mississippi-3.0.0.tgz", + "integrity": "sha512-x471SsVjUtBRtcvd4BzKE9kFC+/2TeWgKCgw0bZcw1b9l2X3QX5vCWgF+KaZaYm87Ss//rHnWryupDrgLvmSkA==", + "dependencies": { + "concat-stream": "^1.5.0", + "duplexify": "^3.4.2", + "end-of-stream": "^1.1.0", + "flush-write-stream": "^1.0.0", + "from2": "^2.1.0", + "parallel-transform": "^1.1.0", + "pump": "^3.0.0", + "pumpify": "^1.3.3", + "stream-each": "^1.1.0", + "through2": "^2.0.0" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/mixin-deep": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", + "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", + "dependencies": { + "for-in": "^1.0.2", + "is-extendable": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", + "dependencies": { + "minimist": "^1.2.6" + }, + "bin": { + "mkdirp": "bin/cmd.js" + } + }, + "node_modules/move-concurrently": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/move-concurrently/-/move-concurrently-1.0.1.tgz", + "integrity": "sha512-hdrFxZOycD/g6A6SoI2bB5NA/5NEqD0569+S47WZhPvm46sD50ZHdYaFmnua5lndde9rCHGjmfK7Z8BuCt/PcQ==", + "dependencies": { + "aproba": "^1.1.1", + "copy-concurrently": "^1.0.0", + "fs-write-stream-atomic": "^1.0.8", + "mkdirp": "^0.5.1", + "rimraf": "^2.5.4", + "run-queue": "^1.0.3" + } + }, + "node_modules/move-concurrently/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/mrmime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/mrmime/-/mrmime-1.0.1.tgz", + "integrity": "sha512-hzzEagAgDyoU1Q6yg5uI+AorQgdvMCur3FcKf7NhMKWsaYg+RnbTyHRa/9IlLF9rf455MOCtcqqrQQ83pPP7Uw==", + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==" + }, + "node_modules/mustache": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-2.3.2.tgz", + "integrity": "sha512-KpMNwdQsYz3O/SBS1qJ/o3sqUJ5wSb8gb0pul8CO0S56b9Y2ALm8zCfsjPXsqGFfoNBkDwZuZIAjhsZI03gYVQ==", + "bin": { + "mustache": "bin/mustache" + }, + "engines": { + "npm": ">=1.4.0" + } + }, + "node_modules/mute-stream": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz", + "integrity": "sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==" + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "optional": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/nanomatch": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", + "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "fragment-cache": "^0.2.1", + "is-windows": "^1.0.2", + "kind-of": "^6.0.2", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==" + }, + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", + "dependencies": { + "lower-case": "^1.1.1" + } + }, + "node_modules/node-fetch": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.7.0.tgz", + "integrity": "sha512-c4FRfUm/dbcWZ7U+1Wq0AwCyFL+3nt2bEw05wfxSz+DWpWsitgmSgYmy2dQdWyKC1694ELPqMs/YzUSNozLt8A==", + "dependencies": { + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } + } + }, + "node_modules/node-fetch-native": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.4.1.tgz", + "integrity": "sha512-NsXBU0UgBxo2rQLOeWNZqS3fvflWePMECr8CoSWoSTqCqGbVVsvl9vZu1HfQicYN0g5piV9Gh8RTEvo/uP752w==" + }, + "node_modules/node-html-parser": { + "version": "6.1.11", + "resolved": "https://registry.npmjs.org/node-html-parser/-/node-html-parser-6.1.11.tgz", + "integrity": "sha512-FAgwwZ6h0DSDWxfD0Iq1tsDcBCxdJB1nXpLPPxX8YyVWzbfCjKWEzaynF4gZZ/8hziUmp7ZSaKylcn0iKhufUQ==", + "dependencies": { + "css-select": "^5.1.0", + "he": "1.2.0" + } + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-libs-browser": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", + "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", + "dependencies": { + "assert": "^1.1.1", + "browserify-zlib": "^0.2.0", + "buffer": "^4.3.0", + "console-browserify": "^1.1.0", + "constants-browserify": "^1.0.0", + "crypto-browserify": "^3.11.0", + "domain-browser": "^1.1.1", + "events": "^3.0.0", + "https-browserify": "^1.0.0", + "os-browserify": "^0.3.0", + "path-browserify": "0.0.1", + "process": "^0.11.10", + "punycode": "^1.2.4", + "querystring-es3": "^0.2.0", + "readable-stream": "^2.3.3", + "stream-browserify": "^2.0.1", + "stream-http": "^2.7.2", + "string_decoder": "^1.0.0", + "timers-browserify": "^2.0.4", + "tty-browserify": "0.0.0", + "url": "^0.11.0", + "util": "^0.11.0", + "vm-browserify": "^1.0.1" + } + }, + "node_modules/node-libs-browser/node_modules/buffer": { + "version": "4.9.2", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.2.tgz", + "integrity": "sha512-xq+q3SRMOxGivLhBNaUdC64hDTQwejJ+H0T/NB1XMtTVEwNTrfFF3gAxiyW0Bu/xWEGhjVKgUcMhCrUy2+uCWg==", + "dependencies": { + "base64-js": "^1.0.2", + "ieee754": "^1.1.4", + "isarray": "^1.0.0" + } + }, + "node_modules/node-libs-browser/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "node_modules/node-object-hash": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/node-object-hash/-/node-object-hash-1.4.2.tgz", + "integrity": "sha512-UdS4swXs85fCGWWf6t6DMGgpN/vnlKeSGEQ7hJcrs7PBFoxoKLmibc3QRb7fwiYsjdL7PX8iI/TMSlZ90dgHhQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==" + }, + "node_modules/node-res": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/node-res/-/node-res-5.0.1.tgz", + "integrity": "sha512-YOleO9c7MAqoHC+Ccu2vzvV1fL6Ku49gShq3PIMKWHRgrMSih3XcwL05NbLBi6oU2J471gTBfdpVVxwT6Pfhxg==", + "dependencies": { + "destroy": "^1.0.4", + "etag": "^1.8.1", + "mime-types": "^2.1.19", + "on-finished": "^2.3.0", + "vary": "^1.1.2" + } + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-url": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", + "integrity": "sha512-A48My/mtCklowHBlI8Fq2jFWK4tX4lJ5E6ytFsSOq1fzpvT0SQSgKhSg7lN5c2uYFOrUAOQp6zhhJnpp1eMloQ==", + "dependencies": { + "object-assign": "^4.0.1", + "prepend-http": "^1.0.0", + "query-string": "^4.1.0", + "sort-keys": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dependencies": { + "boolbase": "^1.0.0" + }, + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" + } + }, + "node_modules/nuxt": { + "version": "2.17.2", + "resolved": "https://registry.npmjs.org/nuxt/-/nuxt-2.17.2.tgz", + "integrity": "sha512-7m/ViWSGAY6ffTxsgaSzWnFUc7LXxoAzSkGaK7qbBTcQSC9TlHhkgM9KIZMq6j4tjLvXadvb9Ks2JUBw69RJgA==", + "hasInstallScript": true, + "dependencies": { + "@nuxt/babel-preset-app": "2.17.2", + "@nuxt/builder": "2.17.2", + "@nuxt/cli": "2.17.2", + "@nuxt/components": "^2.2.1", + "@nuxt/config": "2.17.2", + "@nuxt/core": "2.17.2", + "@nuxt/generator": "2.17.2", + "@nuxt/loading-screen": "^2.0.4", + "@nuxt/opencollective": "^0.3.3", + "@nuxt/server": "2.17.2", + "@nuxt/telemetry": "^1.4.1", + "@nuxt/utils": "2.17.2", + "@nuxt/vue-app": "2.17.2", + "@nuxt/vue-renderer": "2.17.2", + "@nuxt/webpack": "2.17.2" + }, + "bin": { + "nuxt": "bin/nuxt.js" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", + "integrity": "sha512-79LYn6VAb63zgtmAteVOWo9Vdj71ZVBy3Pbse+VqxDpEP83XuujMrGqHIwAXJ5I/aM0zU7dIyIAhifVTPrNItQ==", + "dependencies": { + "copy-descriptor": "^0.1.0", + "define-property": "^0.2.5", + "kind-of": "^3.0.3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-copy/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-copy/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object-visit": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", + "integrity": "sha512-GBaMwwAVK9qbQN3Scdo0OyvgPW7l3lnaVMj84uTOZlswkX0KpF6fyDBJhtTthf7pymztoN36/KEr1DyhF96zEA==", + "dependencies": { + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dependencies": { + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.getownpropertydescriptors": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/object.getownpropertydescriptors/-/object.getownpropertydescriptors-2.1.7.tgz", + "integrity": "sha512-PrJz0C2xJ58FNn11XV2lr4Jt5Gzl94qpy9Lu0JlfEj14z88sqbSBJCBEzdlNUCzY2gburhbrwOZ5BHCmuNUy0g==", + "dependencies": { + "array.prototype.reduce": "^1.0.6", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "safe-array-concat": "^1.0.0" + }, + "engines": { + "node": ">= 0.8" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.pick": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", + "integrity": "sha512-tqa/UMy/CCoYmj+H5qc07qvSL9dqcs/WZENZ1JbtWBlATP+iVOe778gE6MSijnyCnORzDuX6hU+LA4SZ09YjFQ==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/on-finished": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", + "integrity": "sha512-ikqdkGAAyf/X/gPhXGvfgAytDZtDbr+bkNUJ0N9h5MI/dmdgCs3l6hoHrcUv41sRKew3jIwrp4qQDXiK99Utww==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/opener": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/opener/-/opener-1.5.2.tgz", + "integrity": "sha512-ur5UIdyw5Y7yEj9wLzhqXiy6GZ3Mwx0yGI+5sMn2r0N0v3cKJvUmFH5yPP+WXh9e0xfyzyJX95D8l088DNFj7A==", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/optimize-css-assets-webpack-plugin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/optimize-css-assets-webpack-plugin/-/optimize-css-assets-webpack-plugin-6.0.1.tgz", + "integrity": "sha512-BshV2UZPfggZLdUfN3zFBbG4sl/DynUI+YCB6fRRDWaqO2OiWN8GPcp4Y0/fEV6B3k9Hzyk3czve3V/8B/SzKQ==", + "dependencies": { + "cssnano": "^5.0.2", + "last-call-webpack-plugin": "^3.0.0", + "postcss": "^8.2.1" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/css-declaration-sorter": { + "version": "6.4.1", + "resolved": "https://registry.npmjs.org/css-declaration-sorter/-/css-declaration-sorter-6.4.1.tgz", + "integrity": "sha512-rtdthzxKuyq6IzqX6jEcIzQF/YqccluefyCYheovBOLhFT/drQA9zj/UbRAa9J7C0o6EG6u3E6g+vKkay7/k3g==", + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.0.9" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/css-tree": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/css-tree/-/css-tree-1.1.3.tgz", + "integrity": "sha512-tRpdppF7TRazZrjJ6v3stzv93qxRcSsFmW6cX0Zm2NVKpxE1WV1HblnghVv9TreireHkqI/VDEsfolRF1p6y7Q==", + "dependencies": { + "mdn-data": "2.0.14", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/cssnano": { + "version": "5.1.15", + "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-5.1.15.tgz", + "integrity": "sha512-j+BKgDcLDQA+eDifLx0EO4XSA56b7uut3BQFH+wbSaSTuGLuiyTa/wbRYthUXX8LC9mLg+WWKe8h+qJuwTAbHw==", + "dependencies": { + "cssnano-preset-default": "^5.2.14", + "lilconfig": "^2.0.3", + "yaml": "^1.10.2" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/cssnano" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/cssnano-preset-default": { + "version": "5.2.14", + "resolved": "https://registry.npmjs.org/cssnano-preset-default/-/cssnano-preset-default-5.2.14.tgz", + "integrity": "sha512-t0SFesj/ZV2OTylqQVOrFgEh5uanxbO6ZAdeCrNsUQ6fVuXwYTxJPNAGvGTxHbD68ldIJNec7PyYZDBrfDQ+6A==", + "dependencies": { + "css-declaration-sorter": "^6.3.1", + "cssnano-utils": "^3.1.0", + "postcss-calc": "^8.2.3", + "postcss-colormin": "^5.3.1", + "postcss-convert-values": "^5.1.3", + "postcss-discard-comments": "^5.1.2", + "postcss-discard-duplicates": "^5.1.0", + "postcss-discard-empty": "^5.1.1", + "postcss-discard-overridden": "^5.1.0", + "postcss-merge-longhand": "^5.1.7", + "postcss-merge-rules": "^5.1.4", + "postcss-minify-font-values": "^5.1.0", + "postcss-minify-gradients": "^5.1.1", + "postcss-minify-params": "^5.1.4", + "postcss-minify-selectors": "^5.2.1", + "postcss-normalize-charset": "^5.1.0", + "postcss-normalize-display-values": "^5.1.0", + "postcss-normalize-positions": "^5.1.1", + "postcss-normalize-repeat-style": "^5.1.1", + "postcss-normalize-string": "^5.1.0", + "postcss-normalize-timing-functions": "^5.1.0", + "postcss-normalize-unicode": "^5.1.1", + "postcss-normalize-url": "^5.1.0", + "postcss-normalize-whitespace": "^5.1.1", + "postcss-ordered-values": "^5.1.3", + "postcss-reduce-initial": "^5.1.2", + "postcss-reduce-transforms": "^5.1.0", + "postcss-svgo": "^5.1.0", + "postcss-unique-selectors": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/cssnano-utils": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cssnano-utils/-/cssnano-utils-3.1.0.tgz", + "integrity": "sha512-JQNR19/YZhz4psLX/rQ9M83e3z2Wf/HdJbryzte4a3NSuafyp9w/I4U+hx5C2S9g41qlstH7DEWnZaaj83OuEA==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/csso": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/csso/-/csso-4.2.0.tgz", + "integrity": "sha512-wvlcdIbf6pwKEk7vHj8/Bkc0B4ylXZruLvOgs9doS5eOsOpuodOV2zJChSpkp+pRpYQLQMeF04nr3Z68Sta9jA==", + "dependencies": { + "css-tree": "^1.1.2" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "engines": { + "node": ">=10" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/mdn-data": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/mdn-data/-/mdn-data-2.0.14.tgz", + "integrity": "sha512-dn6wd0uw5GsdswPFfsgMp5NSB0/aDe6fK94YJV/AJDYXL6HVLWBsxeq7js7Ad+mU2K9LAlwpk6kN2D5mwCPVow==" + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/normalize-url": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-6.1.0.tgz", + "integrity": "sha512-DlL+XwOy3NxAQ8xuC0okPgK46iuVNAK01YN7RueYBqqFeGsBjV9XmCAzAdgt+667bCl5kPh9EqKKDwnaPG1I7A==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-calc": { + "version": "8.2.4", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-8.2.4.tgz", + "integrity": "sha512-SmWMSJmB8MRnnULldx0lQIyhSNvuDl9HfrZkaqqE/WHAhToYsAvDq+yAsA/kIyINDszOp3Rh0GFoNuH5Ypsm3Q==", + "dependencies": { + "postcss-selector-parser": "^6.0.9", + "postcss-value-parser": "^4.2.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-colormin": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-5.3.1.tgz", + "integrity": "sha512-UsWQG0AqTFQmpBegeLLc1+c3jIqBNB0zlDGRWR+dQ3pRKJL1oeMzyqmH3o2PIfn9MBdNrVPWhDbT769LxCTLJQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-convert-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-5.1.3.tgz", + "integrity": "sha512-82pC1xkJZtcJEfiLw6UXnXVXScgtBrjlO5CBmuDQc+dlb88ZYheFsjTn40+zBVi3DkfF7iezO0nJUPLcJK3pvA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-comments": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-5.1.2.tgz", + "integrity": "sha512-+L8208OVbHVF2UQf1iDmRcbdjJkuBF6IS29yBDSiWUIzpYaAhtNl6JYnYm12FnkeCwQqF5LeklOu6rAqgfBZqQ==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-duplicates": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-5.1.0.tgz", + "integrity": "sha512-zmX3IoSI2aoenxHV6C7plngHWWhUOV3sP1T8y2ifzxzbtnuhk1EdPwm0S1bIUNaJ2eNbWeGLEwzw8huPD67aQw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-empty": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-5.1.1.tgz", + "integrity": "sha512-zPz4WljiSuLWsI0ir4Mcnr4qQQ5e1Ukc3i7UfE2XcrwKK2LIPIqE5jxMRxO6GbI3cv//ztXDsXwEWT3BHOGh3A==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-discard-overridden": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-5.1.0.tgz", + "integrity": "sha512-21nOL7RqWR1kasIVdKs8HNqQJhFxLsyRfAnUDm4Fe4t4mCWL9OJiHvlHPjcd8zc5Myu89b/7wZDnOSjFgeWRtw==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-merge-longhand": { + "version": "5.1.7", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-5.1.7.tgz", + "integrity": "sha512-YCI9gZB+PLNskrK0BB3/2OzPnGhPkBEwmwhfYk1ilBHYVAZB7/tkTHFBAnCrvBBOmeYyMYw3DMjT55SyxMBzjQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^5.1.1" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-merge-rules": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-5.1.4.tgz", + "integrity": "sha512-0R2IuYpgU93y9lhVbO/OylTtKMVcHb67zjWIfCiKR9rWL3GUk1677LAqD/BcHizukdZEjT8Ru3oHRoAYoJy44g==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^3.1.0", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-font-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-5.1.0.tgz", + "integrity": "sha512-el3mYTgx13ZAPPirSVsHqFzl+BBBDrXvbySvPGFnQcTI4iNslrPaFq4muTkLZmKlGk4gyFAYUBMH30+HurREyA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-gradients": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-5.1.1.tgz", + "integrity": "sha512-VGvXMTpCEo4qHTNSa9A0a3D+dxGFZCYwR6Jokk+/3oB6flu2/PnPXAh2x7x52EkY5xlIHLm+Le8tJxe/7TNhzw==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-params": { + "version": "5.1.4", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-5.1.4.tgz", + "integrity": "sha512-+mePA3MgdmVmv6g+30rn57USjOGSAyuxUmkfiWpzalZ8aiBkdPYjXWtHuwJGm1v5Ojy0Z0LaSYhHaLJQB0P8Jw==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-minify-selectors": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-5.2.1.tgz", + "integrity": "sha512-nPJu7OjZJTsVUmPdm2TcaiohIwxP+v8ha9NehQ2ye9szv4orirRU3SDdtUmKH+10nzn0bAyOXZ0UEr7OpvLehg==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-charset": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-5.1.0.tgz", + "integrity": "sha512-mSgUJ+pd/ldRGVx26p2wz9dNZ7ji6Pn8VWBajMXFf8jk7vUoSrZ2lt/wZR7DtlZYKesmZI680qjr2CeFF2fbUg==", + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-display-values": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-5.1.0.tgz", + "integrity": "sha512-WP4KIM4o2dazQXWmFaqMmcvsKmhdINFblgSeRgn8BJ6vxaMyaJkwAzpPpuvSIoG/rmX3M+IrRZEz2H0glrQNEA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-positions": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-5.1.1.tgz", + "integrity": "sha512-6UpCb0G4eofTCQLFVuI3EVNZzBNPiIKcA1AKVka+31fTVySphr3VUgAIULBhxZkKgwLImhzMR2Bw1ORK+37INg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-repeat-style": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-5.1.1.tgz", + "integrity": "sha512-mFpLspGWkQtBcWIRFLmewo8aC3ImN2i/J3v8YCFUwDnPu3Xz4rLohDO26lGjwNsQxB3YF0KKRwspGzE2JEuS0g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-string": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-5.1.0.tgz", + "integrity": "sha512-oYiIJOf4T9T1N4i+abeIc7Vgm/xPCGih4bZz5Nm0/ARVJ7K6xrDlLwvwqOydvyL3RHNf8qZk6vo3aatiw/go3w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-timing-functions": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-5.1.0.tgz", + "integrity": "sha512-DOEkzJ4SAXv5xkHl0Wa9cZLF3WCBhF3o1SKVxKQAa+0pYKlueTpCgvkFAHfk+Y64ezX9+nITGrDZeVGgITJXjg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-unicode": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-5.1.1.tgz", + "integrity": "sha512-qnCL5jzkNUmKVhZoENp1mJiGNPcsJCs1aaRmURmeJGES23Z/ajaln+EPTD+rBeNkSryI+2WTdW+lwcVdOikrpA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-url": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-5.1.0.tgz", + "integrity": "sha512-5upGeDO+PVthOxSmds43ZeMeZfKH+/DKgGRD7TElkkyS46JXAUhMzIKiCa7BabPeIy3AQcTkXwVVN7DbqsiCew==", + "dependencies": { + "normalize-url": "^6.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-normalize-whitespace": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-5.1.1.tgz", + "integrity": "sha512-83ZJ4t3NUDETIHTa3uEg6asWjSBYL5EdkVB0sDncx9ERzOKBVJIUeDO9RyA9Zwtig8El1d79HBp0JEi8wvGQnA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-ordered-values": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-5.1.3.tgz", + "integrity": "sha512-9UO79VUhPwEkzbb3RNpqqghc6lcYej1aveQteWY+4POIwlqkYE21HKWaLDF6lWNuqCobEAyTovVhtI32Rbv2RQ==", + "dependencies": { + "cssnano-utils": "^3.1.0", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-reduce-initial": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-5.1.2.tgz", + "integrity": "sha512-dE/y2XRaqAi6OvjzD22pjTUQ8eOfc6m/natGHgKFBK9DxFmIm69YmaRVQrGgFlEfc1HePIurY0TmDeROK05rIg==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-reduce-transforms": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-5.1.0.tgz", + "integrity": "sha512-2fbdbmgir5AvpW9RLtdONx1QoYG2/EtqpNQbFASDlixBbAYuTcJ0dECwlqNqH7VbaUnEnh8SrxOe2sRIn24XyQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-svgo": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-5.1.0.tgz", + "integrity": "sha512-D75KsH1zm5ZrHyxPakAxJWtkyXew5qwS70v56exwvw542d9CRtTo78K0WeFxZB4G7JXKKMbEZtZayTGdIky/eA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^2.7.0" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/postcss-unique-selectors": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-5.1.1.tgz", + "integrity": "sha512-5JiODlELrz8L2HwxfPnhOWZYWDxVHWL83ufOv84NrcgipI7TaeRsatAhK4Tr2/ZiYldpK/wBvw5BD3qfaK96GA==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/stylehacks": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-5.1.1.tgz", + "integrity": "sha512-sBpcd5Hx7G6seo7b1LkpttvTz7ikD0LlH5RmdcBNb6fFR0Fl7LQwHDFr300q4cwUqi+IYrFGmsIHieMBfnN/Bw==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >=14.0" + }, + "peerDependencies": { + "postcss": "^8.2.15" + } + }, + "node_modules/optimize-css-assets-webpack-plugin/node_modules/svgo": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-2.8.0.tgz", + "integrity": "sha512-+N/Q9kV1+F+UeWYoSiULYo4xYSDQlTgb+ayMobAXPwMnLvop7oxKMo9OzIrX5x3eS4L4f2UHhc9axXwY8DpChg==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^4.1.3", + "css-tree": "^1.1.3", + "csso": "^4.2.0", + "picocolors": "^1.0.0", + "stable": "^0.1.8" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/os-browserify": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", + "integrity": "sha512-gjcpUc3clBf9+210TRaDWbf+rZZZEshZ+DlXMRCeAjp0xhTrnQsKHypIy1J3d5hKdUzj69t708EHtU8P6bUn0A==" + }, + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/p-locate/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/pako": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.11.tgz", + "integrity": "sha512-4hLB8Py4zZce5s4yd9XzopqwVv/yGNhV1Bl8NTmCq1763HeK2+EwVTv+leGeL13Dnh2wfbqowVPXCIO0z4taYw==" + }, + "node_modules/papaparse": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/papaparse/-/papaparse-5.4.1.tgz", + "integrity": "sha512-HipMsgJkZu8br23pW15uvo6sib6wne/4woLZPlFf3rpDyMe9ywEXUsuD7+6K9PRkJlVT51j/sCOYDKGGS3ZJrw==" + }, + "node_modules/parallel-transform": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/parallel-transform/-/parallel-transform-1.2.0.tgz", + "integrity": "sha512-P2vSmIu38uIlvdcU7fDkyrxj33gTUy/ABO5ZUbGowxNCopBq/OoD42bP4UmMrJoPyk4Uqf0mu3mtWBhHCZD8yg==", + "dependencies": { + "cyclist": "^1.0.1", + "inherits": "^2.0.3", + "readable-stream": "^2.1.5" + } + }, + "node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "dependencies": { + "no-case": "^2.2.0" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-asn1": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.6.tgz", + "integrity": "sha512-RnZRo1EPU6JBnra2vGHj0yhp6ebyjBZpmUCLHWiFhxlzvBCCpAuZ7elsBp1PVAbQN0/04VD/19rfzlBSwLstMw==", + "dependencies": { + "asn1.js": "^5.2.0", + "browserify-aes": "^1.0.0", + "evp_bytestokey": "^1.0.0", + "pbkdf2": "^3.0.3", + "safe-buffer": "^5.1.1" + } + }, + "node_modules/parse-git-config": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/parse-git-config/-/parse-git-config-3.0.0.tgz", + "integrity": "sha512-wXoQGL1D+2COYWCD35/xbiKma1Z15xvZL8cI25wvxzled58V51SJM04Urt/uznS900iQor7QO04SgdfT/XlbuA==", + "dependencies": { + "git-config-path": "^2.0.0", + "ini": "^1.3.5" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "dependencies": { + "protocols": "^2.0.0" + } + }, + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dependencies": { + "parse-path": "^7.0.0" + } + }, + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dependencies": { + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dependencies": { + "lower-case": "^2.0.2", + "tslib": "^2.0.3" + } + }, + "node_modules/pascal-case/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/pascalcase": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", + "integrity": "sha512-XHXfu/yOQRy9vYOtUDVMN60OEJjW013GoObG1o+xwQTpB9eYJX/BjXMsdW13ZDPruFhYYn0AG22w0xgQMwl3Nw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-browserify": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", + "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==" + }, + "node_modules/path-dirname": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", + "integrity": "sha512-ALzNPpyNq9AqXMBjeymIjFDAkAFH06mHJH/cSBHAgU0s4vfpBn6b2nf8tiRLvagKD8RbTpq2FKTBg7cl9l3c7Q==", + "optional": true + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==" + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "engines": { + "node": ">=8" + } + }, + "node_modules/pbkdf2": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.1.2.tgz", + "integrity": "sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==", + "dependencies": { + "create-hash": "^1.1.2", + "create-hmac": "^1.1.4", + "ripemd160": "^2.0.1", + "safe-buffer": "^5.0.1", + "sha.js": "^2.4.8" + }, + "engines": { + "node": ">=0.12" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==" + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pify": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-5.0.0.tgz", + "integrity": "sha512-eW/gHNMlxdSP6dmG6uJip6FXN0EQBwm2clYYd8Wul42Cwu/DK8HEftzsapcNdYe2MfLiIwZqsDk2RDEsTE79hA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pnp-webpack-plugin": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/pnp-webpack-plugin/-/pnp-webpack-plugin-1.7.0.tgz", + "integrity": "sha512-2Rb3vm+EXble/sMXNSu6eoBx8e79gKqhNq9F5ZWW6ERNCTE/Q0wQNne5541tE5vKjfM8hpNCYL+LGc1YTfI0dg==", + "dependencies": { + "ts-pnp": "^1.1.6" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/popper.js": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/popper.js/-/popper.js-1.16.1.tgz", + "integrity": "sha512-Wb4p1J4zyFTbM+u6WuO4XstYx4Ky9Cewe4DWrel7B0w6VVICvPwdOpotjzcf6eD8TsckVnIMNONQyPIUFOUbCQ==", + "deprecated": "You can find the new Popper v2 at @popperjs/core, this package is dedicated to the legacy v1", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/portal-vue": { + "version": "2.1.7", + "resolved": "https://registry.npmjs.org/portal-vue/-/portal-vue-2.1.7.tgz", + "integrity": "sha512-+yCno2oB3xA7irTt0EU5Ezw22L2J51uKAacE/6hMPMoO/mx3h4rXFkkBkT4GFsMDv/vEe8TNKC3ujJJ0PTwb6g==", + "peerDependencies": { + "vue": "^2.5.18" + } + }, + "node_modules/posix-character-classes": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", + "integrity": "sha512-xTgYBc3fuo7Yt7JbiuFxSYGToMoz8fLoE6TC9Wx1P/u+LfeThMOAqmuyECnlBaaJb+u1m9hHiXUEtwW4OzfUJg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/postcss": { + "version": "8.4.32", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.32.tgz", + "integrity": "sha512-D/kj5JNu6oo2EIy+XL/26JEDTlIbB8hw85G8StOE6L74RQAVVP5rej6wxCNqyMbR4RkPfqvezVbPw81Ngd6Kcw==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-attribute-case-insensitive": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-6.0.2.tgz", + "integrity": "sha512-IRuCwwAAQbgaLhxQdQcIIK0dCVXg3XDUnzgKD8iwdiYdwU4rMWRWyl/W9/0nA4ihVpq5pyALiHB2veBJ0292pw==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-calc": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-9.0.1.tgz", + "integrity": "sha512-TipgjGyzP5QzEhsOZUaIkeO5mKeMFpebWzRogWG/ysonUlnHcq5aJe0jOjpfzUU8PeSaBQnrE8ehR0QA5vs8PQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.11", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.2.2" + } + }, + "node_modules/postcss-clamp": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/postcss-clamp/-/postcss-clamp-4.1.0.tgz", + "integrity": "sha512-ry4b1Llo/9zz+PKC+030KUnPITTJAHeOwjfAyyB60eT0AorGLdzp52s31OsPRHRf8NchkgFoG2y6fCfn1IV1Ow==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": ">=7.6.0" + }, + "peerDependencies": { + "postcss": "^8.4.6" + } + }, + "node_modules/postcss-color-functional-notation": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-functional-notation/-/postcss-color-functional-notation-6.0.3.tgz", + "integrity": "sha512-2jBr3H0sk3qGh/3BkmLsOKcYyVfSlM1K2QQYVU7eW5mkg7ZOQ4aU/Rtbh7vJ9FxAfgf8iHRwXBsQkHqUxzTkXw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-hex-alpha": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/postcss-color-hex-alpha/-/postcss-color-hex-alpha-9.0.3.tgz", + "integrity": "sha512-7sEHU4tAS6htlxun8AB9LDrCXoljxaC34tFVRlYKcvO+18r5fvGiXgv5bQzN40+4gXLCyWSMRK5FK31244WcCA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-color-rebeccapurple": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/postcss-color-rebeccapurple/-/postcss-color-rebeccapurple-9.0.2.tgz", + "integrity": "sha512-f+RDEAPW2m8UbJWkSpRfV+QxhSaQhDMihI75DVGJJh4oRIoegjheeRtINFJum9D8BqGJcvD4GLjggTvCwZ4zuA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-colormin": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-6.0.1.tgz", + "integrity": "sha512-Tb9aR2wCJCzKuNjIeMzVNd0nXjQy25HDgFmmaRsHnP0eP/k8uQWE4S8voX5S2coO5CeKrp+USFs1Ayv9Tpxx6w==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "colord": "^2.9.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-convert-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-6.0.1.tgz", + "integrity": "sha512-zTd4Vh0HxGkhg5aHtfCogcRHzGkvblfdWlQ53lIh1cJhYcGyIxh2hgtKoVh40AMktRERet+JKdB04nNG19kjmA==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-custom-media": { + "version": "10.0.2", + "resolved": "https://registry.npmjs.org/postcss-custom-media/-/postcss-custom-media-10.0.2.tgz", + "integrity": "sha512-zcEFNRmDm2fZvTPdI1pIW3W//UruMcLosmMiCdpQnrCsTRzWlKQPYMa1ud9auL0BmrryKK1+JjIGn19K0UjO/w==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/cascade-layer-name-parser": "^1.0.5", + "@csstools/css-parser-algorithms": "^2.3.2", + "@csstools/css-tokenizer": "^2.2.1", + "@csstools/media-query-list-parser": "^2.1.5" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-custom-properties": { + "version": "13.3.3", + "resolved": "https://registry.npmjs.org/postcss-custom-properties/-/postcss-custom-properties-13.3.3.tgz", + "integrity": "sha512-xLmILb2R83aG4X++iVFg8TWadOlc45xiyFHRZD6Yhhu2igrTHXL6C75AEWqx6k9lxrr9sK5rcfUI9JvTCxBTvA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/cascade-layer-name-parser": "^1.0.6", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-custom-selectors": { + "version": "7.1.6", + "resolved": "https://registry.npmjs.org/postcss-custom-selectors/-/postcss-custom-selectors-7.1.6.tgz", + "integrity": "sha512-svsjWRaxqL3vAzv71dV0/65P24/FB8TbPX+lWyyf9SZ7aZm4S4NhCn7N3Bg+Z5sZunG3FS8xQ80LrCU9hb37cw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/cascade-layer-name-parser": "^1.0.5", + "@csstools/css-parser-algorithms": "^2.3.2", + "@csstools/css-tokenizer": "^2.2.1", + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-dir-pseudo-class": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-dir-pseudo-class/-/postcss-dir-pseudo-class-8.0.1.tgz", + "integrity": "sha512-uULohfWBBVoFiZXgsQA24JV6FdKIidQ+ZqxOouhWwdE+qJlALbkS5ScB43ZTjPK+xUZZhlaO/NjfCt5h4IKUfw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-discard-comments": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-6.0.1.tgz", + "integrity": "sha512-f1KYNPtqYLUeZGCHQPKzzFtsHaRuECe6jLakf/RjSRqvF5XHLZnM2+fXLhb8Qh/HBFHs3M4cSLb1k3B899RYIg==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-duplicates": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-6.0.1.tgz", + "integrity": "sha512-1hvUs76HLYR8zkScbwyJ8oJEugfPV+WchpnA+26fpJ7Smzs51CzGBHC32RS03psuX/2l0l0UKh2StzNxOrKCYg==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-empty": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-6.0.1.tgz", + "integrity": "sha512-yitcmKwmVWtNsrrRqGJ7/C0YRy53i0mjexBDQ9zYxDwTWVBgbU4+C9jIZLmQlTDT9zhml+u0OMFJh8+31krmOg==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-discard-overridden": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-6.0.1.tgz", + "integrity": "sha512-qs0ehZMMZpSESbRkw1+inkf51kak6OOzNRaoLd/U7Fatp0aN2HQ1rxGOrJvYcRAN9VpX8kUF13R2ofn8OlvFVA==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-double-position-gradients": { + "version": "5.0.3", + "resolved": "https://registry.npmjs.org/postcss-double-position-gradients/-/postcss-double-position-gradients-5.0.3.tgz", + "integrity": "sha512-QKYpwmaSm6HcdS0ndAuWSNNMv78R1oSySoh3mYBmctHWr2KWcwPJVakdOyU4lvFVW0GRu9wfIQwGeM4p3xU9ow==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/postcss-progressive-custom-properties": "^3.0.3", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-visible": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-focus-visible/-/postcss-focus-visible-9.0.1.tgz", + "integrity": "sha512-N2VQ5uPz3Z9ZcqI5tmeholn4d+1H14fKXszpjogZIrFbhaq0zNAtq8sAnw6VLiqGbL8YBzsnu7K9bBkTqaRimQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-focus-within": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/postcss-focus-within/-/postcss-focus-within-8.0.1.tgz", + "integrity": "sha512-NFU3xcY/xwNaapVb+1uJ4n23XImoC86JNwkY/uduytSl2s9Ekc2EpzmRR63+ExitnW3Mab3Fba/wRPCT5oDILA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-font-variant": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/postcss-font-variant/-/postcss-font-variant-5.0.0.tgz", + "integrity": "sha512-1fmkBaCALD72CK2a9i468mA/+tr9/1cBxRRMXOUaZqO43oWPR5imcyPjXwuv7PXbCid4ndlP5zWhidQVVa3hmA==", + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-gap-properties": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-gap-properties/-/postcss-gap-properties-5.0.1.tgz", + "integrity": "sha512-k2z9Cnngc24c0KF4MtMuDdToROYqGMMUQGcE6V0odwjHyOHtaDBlLeRBV70y9/vF7KIbShrTRZ70JjsI1BZyWw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-image-set-function": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-image-set-function/-/postcss-image-set-function-6.0.2.tgz", + "integrity": "sha512-/O1xwqpJiz/apxGQi7UUfv1xUcorvkHZfvCYHPpRxxZj2WvjD0rg0+/+c+u5/Do5CpUg3XvfYxMrhcnjW1ArDQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-import": { + "version": "15.1.0", + "resolved": "https://registry.npmjs.org/postcss-import/-/postcss-import-15.1.0.tgz", + "integrity": "sha512-hpr+J05B2FVYUAXHeK1YyI267J/dDDhMU6B6civm8hSY1jYJnBXxzKDKDswzJmtLHryrjhnDjqqp/49t8FALew==", + "dependencies": { + "postcss-value-parser": "^4.0.0", + "read-cache": "^1.0.0", + "resolve": "^1.1.7" + }, + "engines": { + "node": ">=14.0.0" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-import-resolver": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-import-resolver/-/postcss-import-resolver-2.0.0.tgz", + "integrity": "sha512-y001XYgGvVwgxyxw9J1a5kqM/vtmIQGzx34g0A0Oy44MFcy/ZboZw1hu/iN3VYFjSTRzbvd7zZJJz0Kh0AGkTw==", + "dependencies": { + "enhanced-resolve": "^4.1.1" + } + }, + "node_modules/postcss-lab-function": { + "version": "6.0.8", + "resolved": "https://registry.npmjs.org/postcss-lab-function/-/postcss-lab-function-6.0.8.tgz", + "integrity": "sha512-agYs7R9Z5gnX837fCkH8TEQIHdhyDsMPPnpuuENt/dxoDVAykBaqbdxIN4DagOj+ZQo20iRNNJeY3MsFcdI6Sg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/css-color-parser": "^1.5.0", + "@csstools/css-parser-algorithms": "^2.4.0", + "@csstools/css-tokenizer": "^2.2.2", + "@csstools/postcss-progressive-custom-properties": "^3.0.3" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-loader": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/postcss-loader/-/postcss-loader-4.3.0.tgz", + "integrity": "sha512-M/dSoIiNDOo8Rk0mUqoj4kpGq91gcxCfb9PoyZVdZ76/AuhxylHDYZblNE8o+EQ9AMSASeMFEKxZf5aU6wlx1Q==", + "dependencies": { + "cosmiconfig": "^7.0.0", + "klona": "^2.0.4", + "loader-utils": "^2.0.0", + "schema-utils": "^3.0.0", + "semver": "^7.3.4" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "postcss": "^7.0.0 || ^8.0.1", + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/postcss-loader/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/postcss-loader/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/postcss-loader/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/postcss-logical": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-logical/-/postcss-logical-7.0.1.tgz", + "integrity": "sha512-8GwUQZE0ri0K0HJHkDv87XOLC8DE0msc+HoWLeKdtjDZEwpZ5xuK3QdV6FhmHSQW40LPkg43QzvATRAI3LsRkg==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-merge-longhand": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-6.0.1.tgz", + "integrity": "sha512-vmr/HZQzaPXc45FRvSctqFTF05UaDnTn5ABX+UtQPJznDWT/QaFbVc/pJ5C2YPxx2J2XcfmWowlKwtCDwiQ5hA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "stylehacks": "^6.0.1" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-merge-rules": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-6.0.2.tgz", + "integrity": "sha512-6lm8bl0UfriSfxI+F/cezrebqqP8w702UC6SjZlUlBYwuRVNbmgcJuQU7yePIvD4MNT53r/acQCUAyulrpgmeQ==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0", + "cssnano-utils": "^4.0.1", + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-font-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-6.0.1.tgz", + "integrity": "sha512-tIwmF1zUPoN6xOtA/2FgVk1ZKrLcCvE0dpZLtzyyte0j9zUeB8RTbCqrHZGjJlxOvNWKMYtunLrrl7HPOiR46w==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-gradients": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-6.0.1.tgz", + "integrity": "sha512-M1RJWVjd6IOLPl1hYiOd5HQHgpp6cvJVLrieQYS9y07Yo8itAr6jaekzJphaJFR0tcg4kRewCk3kna9uHBxn/w==", + "dependencies": { + "colord": "^2.9.1", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-params": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-6.0.1.tgz", + "integrity": "sha512-eFvGWArqh4khPIgPDu6SZNcaLctx97nO7c59OXnRtGntAp5/VS4gjMhhW9qUFsK6mQ27pEZGt2kR+mPizI+Z9g==", + "dependencies": { + "browserslist": "^4.21.4", + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-minify-selectors": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-6.0.1.tgz", + "integrity": "sha512-mfReq5wrS6vkunxvJp6GDuOk+Ak6JV7134gp8L+ANRnV9VwqzTvBtX6lpohooVU750AR0D3pVx2Zn6uCCwOAfQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-modules-extract-imports": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.3.tgz", + "integrity": "sha512-2/u2zraspoACtrbFRnTijMiQtb4GW4BvatjaG/bCjYQo8kLTdevCUlwuBHx2sCnSyrI3x3qj4ZK1j5LQBgzmwA==", + "dependencies": { + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "dependencies": { + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-modules-values": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "dependencies": { + "icss-utils": "^5.0.0" + }, + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-nesting": { + "version": "12.0.2", + "resolved": "https://registry.npmjs.org/postcss-nesting/-/postcss-nesting-12.0.2.tgz", + "integrity": "sha512-63PpJHSeNs93S3ZUIyi+7kKx4JqOIEJ6QYtG3x+0qA4J03+4n0iwsyA1GAHyWxsHYljQS4/4ZK1o2sMi70b5wQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/selector-specificity": "^3.0.1", + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-normalize-charset": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-6.0.1.tgz", + "integrity": "sha512-aW5LbMNRZ+oDV57PF9K+WI1Z8MPnF+A8qbajg/T8PP126YrGX1f9IQx21GI2OlGz7XFJi/fNi0GTbY948XJtXg==", + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-display-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-display-values/-/postcss-normalize-display-values-6.0.1.tgz", + "integrity": "sha512-mc3vxp2bEuCb4LgCcmG1y6lKJu1Co8T+rKHrcbShJwUmKJiEl761qb/QQCfFwlrvSeET3jksolCR/RZuMURudw==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-positions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-positions/-/postcss-normalize-positions-6.0.1.tgz", + "integrity": "sha512-HRsq8u/0unKNvm0cvwxcOUEcakFXqZ41fv3FOdPn916XFUrympjr+03oaLkuZENz3HE9RrQE9yU0Xv43ThWjQg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-repeat-style": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-repeat-style/-/postcss-normalize-repeat-style-6.0.1.tgz", + "integrity": "sha512-Gbb2nmCy6tTiA7Sh2MBs3fj9W8swonk6lw+dFFeQT68B0Pzwp1kvisJQkdV6rbbMSd9brMlS8I8ts52tAGWmGQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-string": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-string/-/postcss-normalize-string-6.0.1.tgz", + "integrity": "sha512-5Fhx/+xzALJD9EI26Aq23hXwmv97Zfy2VFrt5PLT8lAhnBIZvmaT5pQk+NuJ/GWj/QWaKSKbnoKDGLbV6qnhXg==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-timing-functions": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-timing-functions/-/postcss-normalize-timing-functions-6.0.1.tgz", + "integrity": "sha512-4zcczzHqmCU7L5dqTB9rzeqPWRMc0K2HoR+Bfl+FSMbqGBUcP5LRfgcH4BdRtLuzVQK1/FHdFoGT3F7rkEnY+g==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-unicode": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-unicode/-/postcss-normalize-unicode-6.0.1.tgz", + "integrity": "sha512-ok9DsI94nEF79MkvmLfHfn8ddnKXA7w+8YuUoz5m7b6TOdoaRCpvu/QMHXQs9+DwUbvp+ytzz04J55CPy77PuQ==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-6.0.1.tgz", + "integrity": "sha512-jEXL15tXSvbjm0yzUV7FBiEXwhIa9H88JOXDGQzmcWoB4mSjZIsmtto066s2iW9FYuIrIF4k04HA2BKAOpbsaQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-normalize-whitespace": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-normalize-whitespace/-/postcss-normalize-whitespace-6.0.1.tgz", + "integrity": "sha512-76i3NpWf6bB8UHlVuLRxG4zW2YykF9CTEcq/9LGAiz2qBuX5cBStadkk0jSkg9a9TCIXbMQz7yzrygKoCW9JuA==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-opacity-percentage": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/postcss-opacity-percentage/-/postcss-opacity-percentage-2.0.0.tgz", + "integrity": "sha512-lyDrCOtntq5Y1JZpBFzIWm2wG9kbEdujpNt4NLannF+J9c8CgFIzPa80YQfdza+Y+yFfzbYj/rfoOsYsooUWTQ==", + "funding": [ + { + "type": "kofi", + "url": "https://ko-fi.com/mrcgrtz" + }, + { + "type": "liberapay", + "url": "https://liberapay.com/mrcgrtz" + } + ], + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.2" + } + }, + "node_modules/postcss-ordered-values": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-6.0.1.tgz", + "integrity": "sha512-XXbb1O/MW9HdEhnBxitZpPFbIvDgbo9NK4c/5bOfiKpnIGZDoL2xd7/e6jW5DYLsWxBbs+1nZEnVgnjnlFViaA==", + "dependencies": { + "cssnano-utils": "^4.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-overflow-shorthand": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/postcss-overflow-shorthand/-/postcss-overflow-shorthand-5.0.1.tgz", + "integrity": "sha512-XzjBYKLd1t6vHsaokMV9URBt2EwC9a7nDhpQpjoPk2HRTSQfokPfyAS/Q7AOrzUu6q+vp/GnrDBGuj/FCaRqrQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-page-break": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/postcss-page-break/-/postcss-page-break-3.0.4.tgz", + "integrity": "sha512-1JGu8oCjVXLa9q9rFTo4MbeeA5FMe00/9C7lN4va606Rdb+HkxXtXsmEDrIraQ11fGz/WvKWa8gMuCKkrXpTsQ==", + "peerDependencies": { + "postcss": "^8" + } + }, + "node_modules/postcss-place": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-place/-/postcss-place-9.0.1.tgz", + "integrity": "sha512-JfL+paQOgRQRMoYFc2f73pGuG/Aw3tt4vYMR6UA3cWVMxivviPTnMFnFTczUJOA4K2Zga6xgQVE+PcLs64WC8Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-preset-env": { + "version": "9.3.0", + "resolved": "https://registry.npmjs.org/postcss-preset-env/-/postcss-preset-env-9.3.0.tgz", + "integrity": "sha512-ycw6doPrqV6QxDCtgiyGDef61bEfiSc59HGM4gOw/wxQxmKnhuEery61oOC/5ViENz/ycpRsuhTexs1kUBTvVw==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "@csstools/postcss-cascade-layers": "^4.0.1", + "@csstools/postcss-color-function": "^3.0.7", + "@csstools/postcss-color-mix-function": "^2.0.7", + "@csstools/postcss-exponential-functions": "^1.0.1", + "@csstools/postcss-font-format-keywords": "^3.0.0", + "@csstools/postcss-gamut-mapping": "^1.0.0", + "@csstools/postcss-gradients-interpolation-method": "^4.0.7", + "@csstools/postcss-hwb-function": "^3.0.6", + "@csstools/postcss-ic-unit": "^3.0.2", + "@csstools/postcss-initial": "^1.0.0", + "@csstools/postcss-is-pseudo-class": "^4.0.3", + "@csstools/postcss-logical-float-and-clear": "^2.0.0", + "@csstools/postcss-logical-overflow": "^1.0.0", + "@csstools/postcss-logical-overscroll-behavior": "^1.0.0", + "@csstools/postcss-logical-resize": "^2.0.0", + "@csstools/postcss-logical-viewport-units": "^2.0.3", + "@csstools/postcss-media-minmax": "^1.1.0", + "@csstools/postcss-media-queries-aspect-ratio-number-values": "^2.0.3", + "@csstools/postcss-nested-calc": "^3.0.0", + "@csstools/postcss-normalize-display-values": "^3.0.1", + "@csstools/postcss-oklab-function": "^3.0.7", + "@csstools/postcss-progressive-custom-properties": "^3.0.2", + "@csstools/postcss-relative-color-syntax": "^2.0.7", + "@csstools/postcss-scope-pseudo-class": "^3.0.0", + "@csstools/postcss-stepped-value-functions": "^3.0.2", + "@csstools/postcss-text-decoration-shorthand": "^3.0.3", + "@csstools/postcss-trigonometric-functions": "^3.0.2", + "@csstools/postcss-unset-value": "^3.0.0", + "autoprefixer": "^10.4.16", + "browserslist": "^4.22.1", + "css-blank-pseudo": "^6.0.0", + "css-has-pseudo": "^6.0.0", + "css-prefers-color-scheme": "^9.0.0", + "cssdb": "^7.9.0", + "postcss-attribute-case-insensitive": "^6.0.2", + "postcss-clamp": "^4.1.0", + "postcss-color-functional-notation": "^6.0.2", + "postcss-color-hex-alpha": "^9.0.2", + "postcss-color-rebeccapurple": "^9.0.1", + "postcss-custom-media": "^10.0.2", + "postcss-custom-properties": "^13.3.2", + "postcss-custom-selectors": "^7.1.6", + "postcss-dir-pseudo-class": "^8.0.0", + "postcss-double-position-gradients": "^5.0.2", + "postcss-focus-visible": "^9.0.0", + "postcss-focus-within": "^8.0.0", + "postcss-font-variant": "^5.0.0", + "postcss-gap-properties": "^5.0.0", + "postcss-image-set-function": "^6.0.1", + "postcss-lab-function": "^6.0.7", + "postcss-logical": "^7.0.0", + "postcss-nesting": "^12.0.1", + "postcss-opacity-percentage": "^2.0.0", + "postcss-overflow-shorthand": "^5.0.0", + "postcss-page-break": "^3.0.4", + "postcss-place": "^9.0.0", + "postcss-pseudo-class-any-link": "^9.0.0", + "postcss-replace-overflow-wrap": "^4.0.0", + "postcss-selector-not": "^7.0.1", + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-pseudo-class-any-link": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/postcss-pseudo-class-any-link/-/postcss-pseudo-class-any-link-9.0.1.tgz", + "integrity": "sha512-cKYGGZ9yzUZi+dZd7XT2M8iSDfo+T2Ctbpiizf89uBTBfIpZpjvTavzIJXpCReMVXSKROqzpxClNu6fz4DHM0Q==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/csstools" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + } + ], + "dependencies": { + "postcss-selector-parser": "^6.0.13" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-reduce-initial": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-6.0.1.tgz", + "integrity": "sha512-cgzsI2ThG1PMSdSyM9A+bVxiiVgPIVz9f5c6H+TqEv0CA89iCOO81mwLWRWLgOKFtQkKob9nNpnkxG/1RlgFcA==", + "dependencies": { + "browserslist": "^4.21.4", + "caniuse-api": "^3.0.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-reduce-transforms": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-6.0.1.tgz", + "integrity": "sha512-fUbV81OkUe75JM+VYO1gr/IoA2b/dRiH6HvMwhrIBSUrxq3jNZQZitSnugcTLDi1KkQh1eR/zi+iyxviUNBkcQ==", + "dependencies": { + "postcss-value-parser": "^4.2.0" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-replace-overflow-wrap": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-replace-overflow-wrap/-/postcss-replace-overflow-wrap-4.0.0.tgz", + "integrity": "sha512-KmF7SBPphT4gPPcKZc7aDkweHiKEEO8cla/GjcBK+ckKxiZslIu3C4GCRW3DNfL0o7yW7kMQu9xlZ1kXRXLXtw==", + "peerDependencies": { + "postcss": "^8.0.3" + } + }, + "node_modules/postcss-selector-not": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/postcss-selector-not/-/postcss-selector-not-7.0.1.tgz", + "integrity": "sha512-1zT5C27b/zeJhchN7fP0kBr16Cc61mu7Si9uWWLoA3Px/D9tIJPKchJCkUH3tPO5D0pCFmGeApAv8XpXBQJ8SQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.10" + }, + "engines": { + "node": "^14 || ^16 || >=18" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/csstools" + }, + "peerDependencies": { + "postcss": "^8.4" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-svgo": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-6.0.1.tgz", + "integrity": "sha512-eWV4Rrqa06LzTgqirOv5Ln6WTGyU7Pbeqj9WEyKo9tpnWixNATVJMeaEcOHOW1ZYyjcG8wSJwX/28DvU3oy3HA==", + "dependencies": { + "postcss-value-parser": "^4.2.0", + "svgo": "^3.0.5" + }, + "engines": { + "node": "^14 || ^16 || >= 18" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-unique-selectors": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-6.0.1.tgz", + "integrity": "sha512-/KCCEpNNR7oXVJ38/Id7GC9Nt0zxO1T3zVbhVaq6F6LSG+3gU3B7+QuTHfD0v8NPEHlzewAout29S0InmB78EQ==", + "dependencies": { + "postcss-selector-parser": "^6.0.5" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/postcss-url": { + "version": "10.1.3", + "resolved": "https://registry.npmjs.org/postcss-url/-/postcss-url-10.1.3.tgz", + "integrity": "sha512-FUzyxfI5l2tKmXdYc6VTu3TWZsInayEKPbiyW+P6vmmIrrb4I6CGX0BFoewgYHLK+oIL5FECEK02REYRpBvUCw==", + "dependencies": { + "make-dir": "~3.1.0", + "mime": "~2.5.2", + "minimatch": "~3.0.4", + "xxhashjs": "~0.2.2" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-url/node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "dependencies": { + "semver": "^6.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss-url/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==" + }, + "node_modules/prepend-http": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", + "integrity": "sha512-PhmXi5XmoyKw1Un4E+opM2KcsJInDvKyuOumcjjw3waw86ZNjHwVUOOWLc4bCzLdcKNaWBH9e99sbWzDQsVaYg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/prettier": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.1.1.tgz", + "integrity": "sha512-22UbSzg8luF4UuZtzgiUOfcGM8s4tjBv6dJRT7j275NXsy2jb4aJa4NNveul5x4eqlF1wuhuR2RElK71RvmVaw==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/pretty-bytes": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/pretty-bytes/-/pretty-bytes-5.6.0.tgz", + "integrity": "sha512-FFw039TmrBqFK8ma/7OL3sDz/VytdtJr044/QUJtH0wK9lb9jLq9tJyIxUwtQJHwar2BqtiA4iCWSwo9JLkzFg==", + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pretty-error": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-2.1.2.tgz", + "integrity": "sha512-EY5oDzmsX5wvuynAByrmY0P0hcp+QpnAKbJng2A2MPjVKXCxrDSUkzghVJ4ZGPIv+JC4gX8fPUWscC0RtjsWGw==", + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^2.0.4" + } + }, + "node_modules/pretty-format": { + "version": "28.1.3", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-28.1.3.tgz", + "integrity": "sha512-8gFb/To0OmxHR9+ZTb14Df2vNxdGCX8g1xWGUTqUw5TiZvcQf5sHKObd5UcPyLLyowNwDAMTF3XWOG1B6mxl1Q==", + "dev": true, + "dependencies": { + "@jest/schemas": "^28.1.3", + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || ^16.10.0 || >=17.0.0" + } + }, + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/pretty-time": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/pretty-time/-/pretty-time-1.1.0.tgz", + "integrity": "sha512-28iF6xPQrP8Oa6uxE6a1biz+lWeTOAPKggvjB8HAs6nVMKZwf5bG++632Dx614hIWgUPkgivRfG+a8uAXGTIbA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==" + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/proper-lockfile": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/proper-lockfile/-/proper-lockfile-4.1.2.tgz", + "integrity": "sha512-TjNPblN4BwAWMXU8s9AEz4JmQxnD1NNL7bNOY/AKUzyamc379FWASUhc/K1pL2noVb+XmZKLL68cjzLsiOAMaA==", + "dependencies": { + "graceful-fs": "^4.2.4", + "retry": "^0.12.0", + "signal-exit": "^3.0.2" + } + }, + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==" + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==" + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==" + }, + "node_modules/public-encrypt": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", + "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", + "dependencies": { + "bn.js": "^4.1.0", + "browserify-rsa": "^4.0.0", + "create-hash": "^1.1.0", + "parse-asn1": "^5.0.0", + "randombytes": "^2.0.1", + "safe-buffer": "^5.1.2" + } + }, + "node_modules/public-encrypt/node_modules/bn.js": { + "version": "4.12.0", + "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.12.0.tgz", + "integrity": "sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + } + }, + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dependencies": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + }, + "node_modules/punycode": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.1.tgz", + "integrity": "sha512-vYt7UD1U9Wg6138shLtLOvdAu+8DsC/ilFtEVHcH+wydcSpNE20AfSOduf6MkRFahL5FY7X1oU7nKVZFtfq8Fg==", + "engines": { + "node": ">=6" + } + }, + "node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/query-string": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", + "integrity": "sha512-O2XLNDBIg1DnTOa+2XrIwSiXEV8h2KImXUnjhhn2+UsvZ+Es2uyd5CCRTNQlDGbzUQOW3aYCBx9rVA6dzsiY7Q==", + "dependencies": { + "object-assign": "^4.1.0", + "strict-uri-encode": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/querystring-es3": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", + "integrity": "sha512-773xhDQnZBMFobEiztv8LIl70ch5MSF/jUQVlhwFyBILqq96anmoctVIYz+ZRp0qbCKATTn6ev02M3r7Ga5vqA==", + "engines": { + "node": ">=0.4.x" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/randomfill": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", + "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", + "dependencies": { + "randombytes": "^2.0.5", + "safe-buffer": "^5.1.0" + } + }, + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/rc9": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/rc9/-/rc9-2.1.1.tgz", + "integrity": "sha512-lNeOl38Ws0eNxpO3+wD1I9rkHGQyj1NU1jlzv4go2CtEnEQEUfqnIvZG7W+bC/aXdJ27n5x/yUjb6RoT9tko+Q==", + "dependencies": { + "defu": "^6.1.2", + "destr": "^2.0.0", + "flat": "^5.0.2" + } + }, + "node_modules/rc9/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-cache/node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==" + }, + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dependencies": { + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.1.tgz", + "integrity": "sha512-dYnhHh0nJoMfnkZs6GmmhFknAGRrLznOu5nc9ML+EJxGvrx6H7teuevqVqCuPcPK//3eDrrjQhehXVx9cnkGdw==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dependencies": { + "@babel/runtime": "^7.8.4" + } + }, + "node_modules/regex-not": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", + "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", + "dependencies": { + "extend-shallow": "^3.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", + "dependencies": { + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "dependencies": { + "jsesc": "~0.5.0" + }, + "bin": { + "regjsparser": "bin/parser" + } + }, + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", + "bin": { + "jsesc": "bin/jsesc" + } + }, + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/remove-trailing-separator": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", + "integrity": "sha512-/hS+Y0u3aOfIETiaiirUFwDBDzmXPvO+jAfKTitUngIPzdKc6Z0LoFjM/CK5PL4C+eKwHohlHAb6H0VFfmmUsw==", + "optional": true + }, + "node_modules/renderkid": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-2.0.7.tgz", + "integrity": "sha512-oCcFyxaMrKsKcTY59qnCAtmDVSLfPbrv6A3tVbPdFMMrv5jaK10V6m40cKsoPNhAqN6rmHW9sswW4o3ruSrwUQ==", + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^3.0.1" + } + }, + "node_modules/renderkid/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/renderkid/node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "dependencies": { + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" + } + }, + "node_modules/renderkid/node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" + }, + "funding": { + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "dependencies": { + "domelementtype": "^2.2.0" + }, + "engines": { + "node": ">= 4" + }, + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "dependencies": { + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" + }, + "funding": { + "url": "https://github.com/fb55/domutils?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" + } + }, + "node_modules/renderkid/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha512-VhumSSbBqDTP8p2ZLKj40UjBCV4+v8bUSEpUb4KjRgWk9pbqGF4REFj6KEagidb2f/M6AzC0EmFyDNGaw9OCzg==", + "dependencies": { + "ansi-regex": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-element": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.4.tgz", + "integrity": "sha512-LFiNfRcSu7KK3evMyYOuCzv3L10TW7yC1G2/+StMjK8Y6Vqd2MG7r/Qjw4ghtuCOjFvlnms/iMmLqpvW/ES/WQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/repeat-string": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", + "integrity": "sha512-PV0dzCYDNfRi1jCDbJzpW7jNNDRuCOG/jI5ctQcGKt/clZD+YcPS3yIlWuTJMmESC8aevCFmWJy5wjAFgNqN6w==", + "engines": { + "node": ">=0.10" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/require-from-string": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/require-from-string/-/require-from-string-2.0.2.tgz", + "integrity": "sha512-Xf0nWe6RseziFMu+Ap9biiUbmplq6S9/p+7w7YXP/JBHhrUDDUhwa+vANyubuqfZWTveU//DYVGsDG7RKL/vEw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/requires-port": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", + "integrity": "sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==" + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-url": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", + "integrity": "sha512-ZuF55hVUQaaczgOIwqWzkEcEidmlD/xl44x1UZnhOXcYuFN2S6+rcxpG+C1N3So0wvNI3DmJICUFfu2SxhBmvg==", + "deprecated": "https://github.com/lydell/resolve-url#deprecated" + }, + "node_modules/resolve.exports": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-1.1.1.tgz", + "integrity": "sha512-/NtpHNDN7jWhAaQ9BvBUYZ6YTXsRBgfqWFWP7BZBaoMJO/I3G5OFzvTuWNlZC3aPjins1F+TNrLKsGbH4rfsRQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/restore-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-3.1.0.tgz", + "integrity": "sha512-l+sSefzHpj5qimhFSE5a8nufZYAM3sBSVMAPtYkmC+4EH2anSGaEMXSD0izRQbu9nfyQ9y5JrVmp7E8oZrUjvA==", + "dependencies": { + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ret": { + "version": "0.1.15", + "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", + "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", + "engines": { + "node": ">=0.12" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/ripemd160": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", + "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", + "dependencies": { + "hash-base": "^3.0.0", + "inherits": "^2.0.1" + } + }, + "node_modules/run-async": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-2.4.1.tgz", + "integrity": "sha512-tvVnVv01b8c1RrA6Ep7JkStj85Guv/YrMcwqYQnwjsAS2cTmmPGBBjAjpCW7RrSodNSoE2/qg9O4bceNvUuDgQ==", + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/run-queue": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/run-queue/-/run-queue-1.0.3.tgz", + "integrity": "sha512-ntymy489o0/QQplUDnpYAYUsO50K9SBrIVaKCWDOJzYJts0f9WH9RFJkyagebkw5+y1oi00R7ynNW/d12GBumg==", + "dependencies": { + "aproba": "^1.1.1" + } + }, + "node_modules/rxjs": { + "version": "6.6.7", + "resolved": "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz", + "integrity": "sha512-hTdwr+7yYNIT5n4AMYp85KA6yw2Va0FLa3Rguvbpa4W3I5xynaBZo41cM3XM+4Q6fRMj3sBYIR1VAmZMXYJvRQ==", + "dependencies": { + "tslib": "^1.9.0" + }, + "engines": { + "npm": ">=2.0.0" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-array-concat/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==" + }, + "node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==" + }, + "node_modules/safe-regex": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", + "integrity": "sha512-aJXcif4xnaNUzvUuC5gcb46oTS7zvg4jpMTnuqtrEPlR3vFr4pxtdTwaF1Qs3Enjn9HK+ZlwQui+a7z0SywIzg==", + "dependencies": { + "ret": "~0.1.10" + } + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" + }, + "node_modules/schema-utils": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-2.7.1.tgz", + "integrity": "sha512-SHiNtMOUGWBQJwzISiVYKu82GiV4QYGePp3odlY1tuKO7gPtphAT5R/py0fA6xtbgLL/RvtJZnU9b8s0F1q0Xg==", + "dependencies": { + "@types/json-schema": "^7.0.5", + "ajv": "^6.12.4", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 8.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scule": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/scule/-/scule-0.2.1.tgz", + "integrity": "sha512-M9gnWtn3J0W+UhJOHmBxBTwv8mZCan5i1Himp60t6vvZcor0wr+IM0URKmIglsWJ7bRujNAVVN77fp+uZaWoKg==" + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/send": { + "version": "0.18.0", + "resolved": "https://registry.npmjs.org/send/-/send-0.18.0.tgz", + "integrity": "sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==", + "dependencies": { + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "mime": "1.6.0", + "ms": "2.1.3", + "on-finished": "2.4.1", + "range-parser": "~1.2.1", + "statuses": "2.0.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/send/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/send/node_modules/debug/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/send/node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/send/node_modules/ms": { + "version": "2.1.3", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", + "integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==" + }, + "node_modules/send/node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dependencies": { + "ee-first": "1.1.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/send/node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/serve-placeholder": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/serve-placeholder/-/serve-placeholder-2.0.1.tgz", + "integrity": "sha512-rUzLlXk4uPFnbEaIz3SW8VISTxMuONas88nYWjAWaM2W9VDbt9tyFOr3lq8RhVOFrT3XISoBw8vni5una8qMnQ==", + "dependencies": { + "defu": "^6.0.0" + } + }, + "node_modules/serve-placeholder/node_modules/defu": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.3.tgz", + "integrity": "sha512-Vy2wmG3NTkmHNg/kzpuvHhkqeIx3ODWqasgCRbKtbXEN0G+HpEEv9BtJLp7ZG1CZloFaC41Ah3ZFbq7aqCqMeQ==" + }, + "node_modules/serve-static": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.15.0.tgz", + "integrity": "sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==", + "dependencies": { + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "parseurl": "~1.3.3", + "send": "0.18.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/server-destroy": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/server-destroy/-/server-destroy-1.0.1.tgz", + "integrity": "sha512-rb+9B5YBIEzYcD6x2VKidaa+cqYBJQKnU4oe4E3ANwRRN56yk/ua1YCJT1n21NTS8w6CcOclAKNP3PhdCXKYtQ==" + }, + "node_modules/set-function-length": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/set-function-length/-/set-function-length-1.1.1.tgz", + "integrity": "sha512-VoaqjbBJKiWtg4yRcKBQ7g7wnGnLV3M8oLvVWwOk2PdYY6PEFegR1vezXR0tw6fZGF9csVakIRjrJiy2veSBFQ==", + "dependencies": { + "define-data-property": "^1.1.1", + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/set-value": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", + "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-extendable": "^0.1.1", + "is-plain-object": "^2.0.3", + "split-string": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/set-value/node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "dependencies": { + "isobject": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/setimmediate": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", + "integrity": "sha512-MATJdZp8sLqDl/68LfQmbP8zKPLQNV6BIZoIgrscFDQ+RsvK/BxeDQOgyxKKoh0y/8h3BqVFnCqQ/gd+reiIXA==" + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==" + }, + "node_modules/sha.js": { + "version": "2.4.11", + "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", + "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", + "dependencies": { + "inherits": "^2.0.1", + "safe-buffer": "^5.0.1" + }, + "bin": { + "sha.js": "bin.js" + } + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==" + }, + "node_modules/sirv": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/sirv/-/sirv-2.0.3.tgz", + "integrity": "sha512-O9jm9BsID1P+0HOi81VpXPoDxYP374pkOLzACAoyUQ/3OUVndNpsz6wMnY2z+yOxzbllCKZrM+9QrWsv4THnyA==", + "dependencies": { + "@polka/url": "^1.0.0-next.20", + "mrmime": "^1.0.0", + "totalist": "^3.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "engines": { + "node": ">=8" + } + }, + "node_modules/snapdragon": { + "version": "0.8.2", + "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", + "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", + "dependencies": { + "base": "^0.11.1", + "debug": "^2.2.0", + "define-property": "^0.2.5", + "extend-shallow": "^2.0.1", + "map-cache": "^0.2.2", + "source-map": "^0.5.6", + "source-map-resolve": "^0.5.0", + "use": "^3.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", + "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", + "dependencies": { + "define-property": "^1.0.0", + "isobject": "^3.0.0", + "snapdragon-util": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-node/node_modules/define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", + "integrity": "sha512-cZTYKFWspt9jZsMscWo8sc/5lbPC9Q0N5nBLgb+Yd915iL3udB1uFgS3B8YCx66UVHq018DAVFoee7x+gxggeA==", + "dependencies": { + "is-descriptor": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", + "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", + "dependencies": { + "kind-of": "^3.2.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon-util/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "dependencies": { + "ms": "2.0.0" + } + }, + "node_modules/snapdragon/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/snapdragon/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/snapdragon/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==" + }, + "node_modules/snapdragon/node_modules/source-map": { + "version": "0.5.7", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", + "integrity": "sha512-LbrmJOMUSdEVxIKvdcJzQC+nQhe8FUZQTXQy6+I75skNgn3OoQ0DZA8YnFa7gp8tqtL3KPf1kmo0R5DoApeSGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", + "integrity": "sha512-vzn8aSqKgytVik0iwdBEi+zevbTYZogewTUM6dtpmGwEcdzbub/TX4bCzRhebDCRC3QzXgJsLRKB2V/Oof7HXg==", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sort-keys/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-list-map": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-2.0.1.tgz", + "integrity": "sha512-qnQ7gVMxGNxsiL4lEuJwe/To8UnK7fAnmbGEEH8RpLouuKbeEm0lhbQVFIrNSuB+G7tVrAlVsZgETT5nljf+Iw==" + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-resolve": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.3.tgz", + "integrity": "sha512-Htz+RnsXWk5+P2slx5Jh3Q66vhQj1Cllm0zvnaY98+NFx+Dv2CF/f5O/t8x+KaNdrdIAsruNzoh/KpialbqAnw==", + "deprecated": "See https://github.com/lydell/source-map-resolve#deprecated", + "dependencies": { + "atob": "^2.1.2", + "decode-uri-component": "^0.2.0", + "resolve-url": "^0.2.1", + "source-map-url": "^0.4.0", + "urix": "^0.1.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/source-map-url": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.1.tgz", + "integrity": "sha512-cPiFOTLUKvJFIg4SKVScy4ilPPW6rFgMgfuZJPNoDuMs3nC1HbMUycBoJw77xFIp6z1UJQJOfx6C9GMH80DiTw==", + "deprecated": "See https://github.com/lydell/source-map-url#deprecated" + }, + "node_modules/split-string": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", + "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", + "dependencies": { + "extend-shallow": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/stable": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/stable/-/stable-0.1.8.tgz", + "integrity": "sha512-ji9qxRnOVfcuLDySj9qzhGSEFVobyt1kIOSkj1qZzYLzq7Tos/oUUWvotUPQLlrsidqsK6tBH89Bc9kL5zHA6w==", + "deprecated": "Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility" + }, + "node_modules/stack-trace": { + "version": "0.0.10", + "resolved": "https://registry.npmjs.org/stack-trace/-/stack-trace-0.0.10.tgz", + "integrity": "sha512-KGzahc7puUKkzyMt+IqAep+TVNbKP+k2Lmwhub39m1AsTSkaDutx56aDCo+HLDzf/D26BIHTJWNiTG1KAJiQCg==", + "engines": { + "node": "*" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/stackframe": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/stackframe/-/stackframe-1.3.4.tgz", + "integrity": "sha512-oeVtt7eWQS+Na6F//S4kJ2K2VbRlS9D43mAlMyVpVWovy9o+jfgH8O9agzANzaiLjclA0oYzUXEM4PurhSUChw==" + }, + "node_modules/static-extend": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", + "integrity": "sha512-72E9+uLc27Mt718pMHt9VMNiAL4LMsmDbBva8mxWUCkT07fSzEGMYUCk0XWY6lp0j6RBAG4cJ3mWuZv2OE3s0g==", + "dependencies": { + "define-property": "^0.2.5", + "object-copy": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/define-property": { + "version": "0.2.5", + "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", + "integrity": "sha512-Rr7ADjQZenceVOAKop6ALkkRAmH1A4Gx9hV/7ZujPUN2rkATqFO0JZLZInbAjpZYoJ1gUx8MRMQVkYemcbMSTA==", + "dependencies": { + "is-descriptor": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/static-extend/node_modules/is-descriptor": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.7.tgz", + "integrity": "sha512-C3grZTvObeN1xud4cRWl366OMXZTj0+HGyk4hvfpx4ZHt1Pb60ANSXqCK7pdOTeUQpRzECBSTphqvD7U+l22Eg==", + "dependencies": { + "is-accessor-descriptor": "^1.0.1", + "is-data-descriptor": "^1.0.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/statuses": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", + "integrity": "sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==", + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/std-env": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/std-env/-/std-env-3.6.0.tgz", + "integrity": "sha512-aFZ19IgVmhdB2uX599ve2kE6BIE3YMnQ6Gp6BURhW/oIzpXGKr878TQfAQZn1+i0Flcc/UKUy1gOlcfaUBCryg==" + }, + "node_modules/stream-browserify": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", + "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", + "dependencies": { + "inherits": "~2.0.1", + "readable-stream": "^2.0.2" + } + }, + "node_modules/stream-each": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/stream-each/-/stream-each-1.2.3.tgz", + "integrity": "sha512-vlMC2f8I2u/bZGqkdfLQW/13Zihpej/7PmSiMQsbYddxuTsJp8vRe2x2FvVExZg7FaOds43ROAuFJwPR4MTZLw==", + "dependencies": { + "end-of-stream": "^1.1.0", + "stream-shift": "^1.0.0" + } + }, + "node_modules/stream-http": { + "version": "2.8.3", + "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", + "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", + "dependencies": { + "builtin-status-codes": "^3.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.3.6", + "to-arraybuffer": "^1.0.0", + "xtend": "^4.0.0" + } + }, + "node_modules/stream-shift": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.1.tgz", + "integrity": "sha512-AiisoFqQ0vbGcZgQPY1cdP2I76glaVA/RauYR4G4thNFgkTqr90yXTo4LYX60Jl+sIlPNHHdGSwo01AvbKUSVQ==" + }, + "node_modules/strict-uri-encode": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", + "integrity": "sha512-R3f198pcvnB+5IpnBlRkphuE9n46WyVl8I39W/ZUTZLz4nqSP/oLYUrcnJrw462Ds8he4YKMov2efsTIw1BDGQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/style-resources-loader": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/style-resources-loader/-/style-resources-loader-1.5.0.tgz", + "integrity": "sha512-fIfyvQ+uvXaCBGGAgfh+9v46ARQB1AWdaop2RpQw0PBVuROsTBqGvx8dj0kxwjGOAyq3vepe4AOK3M6+Q/q2jw==", + "dependencies": { + "glob": "^7.2.0", + "loader-utils": "^2.0.0", + "schema-utils": "^2.7.0", + "tslib": "^2.3.1" + }, + "engines": { + "node": ">=8.9" + }, + "peerDependencies": { + "webpack": "^3.0.0 || ^4.0.0 || ^5.0.0" + } + }, + "node_modules/style-resources-loader/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==" + }, + "node_modules/stylehacks": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/stylehacks/-/stylehacks-6.0.1.tgz", + "integrity": "sha512-jTqG2aIoX2fYg0YsGvqE4ooE/e75WmaEjnNiP6Ag7irLtHxML8NJRxRxS0HyDpde8DRGuEXTFVHVfR5Tmbxqzg==", + "dependencies": { + "browserslist": "^4.21.4", + "postcss-selector-parser": "^6.0.4" + }, + "engines": { + "node": "^14 || ^16 || >=18.0" + }, + "peerDependencies": { + "postcss": "^8.4.31" + } + }, + "node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-hyperlinks": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/supports-hyperlinks/-/supports-hyperlinks-2.3.0.tgz", + "integrity": "sha512-RpsAZlpWcDwOPQA22aCH4J0t7L8JmAvsCxfOSEwm7cQs3LshN36QaTkwd70DnBOXDWGssw2eUoc8CaRWT0XunA==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/svg-tags": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/svg-tags/-/svg-tags-1.0.0.tgz", + "integrity": "sha512-ovssysQTa+luh7A5Weu3Rta6FJlFBBbInjOh722LIt6klpU2/HtdUbszju/G4devcvk8PGt7FCLv5wftu3THUA==" + }, + "node_modules/svgo": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/svgo/-/svgo-3.1.0.tgz", + "integrity": "sha512-R5SnNA89w1dYgNv570591F66v34b3eQShpIBcQtZtM5trJwm1VvxbIoMpRYY3ybTAutcKTLEmTsdnaknOHbiQA==", + "dependencies": { + "@trysound/sax": "0.2.0", + "commander": "^7.2.0", + "css-select": "^5.1.0", + "css-tree": "^2.2.1", + "css-what": "^6.1.0", + "csso": "5.0.5", + "picocolors": "^1.0.0" + }, + "bin": { + "svgo": "bin/svgo" + }, + "engines": { + "node": ">=14.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/svgo" + } + }, + "node_modules/svgo/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/tapable": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", + "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==" + }, + "node_modules/terminal-link": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/terminal-link/-/terminal-link-2.1.1.tgz", + "integrity": "sha512-un0FmiRUQNr5PJqy9kP7c40F5BOfpGlYTrxonDChEZB7pzZxRNp/bt+ymiy9/npwXya9KH99nJ/GXFIiUkYGFQ==", + "dev": true, + "dependencies": { + "ansi-escapes": "^4.2.1", + "supports-hyperlinks": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/terser": { + "version": "4.8.1", + "resolved": "https://registry.npmjs.org/terser/-/terser-4.8.1.tgz", + "integrity": "sha512-4GnLC0x667eJG0ewJTa6z/yXrbLGv80D9Ru6HIpCQmO+Q4PfEtBFi0ObSckqwL6VyQv/7ENJieXHo2ANmdQwgw==", + "dependencies": { + "commander": "^2.20.0", + "source-map": "~0.6.1", + "source-map-support": "~0.5.12" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-4.2.3.tgz", + "integrity": "sha512-jTgXh40RnvOrLQNgIkwEKnQ8rmHjHK4u+6UBEi+W+FPmvb+uo+chJXntKe7/3lW5mNysgSWD60KyesnhW8D6MQ==", + "dependencies": { + "cacache": "^15.0.5", + "find-cache-dir": "^3.3.1", + "jest-worker": "^26.5.0", + "p-limit": "^3.0.2", + "schema-utils": "^3.0.0", + "serialize-javascript": "^5.0.1", + "source-map": "^0.6.1", + "terser": "^5.3.4", + "webpack-sources": "^1.4.3" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "26.6.2", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-26.6.2.tgz", + "integrity": "sha512-KWYVV1c4i+jbMpaBC+U++4Va0cp8OisU185o73T1vo99hqi7w8tSJfUXYswwqqrjzwxa6KpRK54WhPvwf5w6PQ==", + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^7.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/terser-webpack-plugin/node_modules/serialize-javascript": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-5.0.1.tgz", + "integrity": "sha512-SaaNal9imEO737H2c05Og0/8LUXG7EnsZyMa8MzkmuHoELfT6txuj0cMqRj6zfPKnmQ1yasR4PCJc8x+M4JSPA==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/terser": { + "version": "5.26.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.26.0.tgz", + "integrity": "sha512-dytTGoE2oHgbNV9nTzgBEPaqAWvcJNl66VZ0BkJqlvp71IjO8CxdBx/ykCNb47cLnCmCvRZ6ZR0tLkqvZCdVBQ==", + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/thread-loader": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-3.0.4.tgz", + "integrity": "sha512-ByaL2TPb+m6yArpqQUZvP+5S1mZtXsEP7nWKKlAUTm7fCml8kB5s1uI3+eHRP2bk5mVYfRSBI7FFf+tWEyLZwA==", + "dependencies": { + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^4.1.0", + "loader-utils": "^2.0.0", + "neo-async": "^2.6.2", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.27.0 || ^5.0.0" + } + }, + "node_modules/thread-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/through": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", + "integrity": "sha512-w89qg7PI8wAdvX60bMDP+bFoD5Dvhm9oLheFp5O4a2QF0cSBGsBX4qZmadPMvVqlLJBBci+WqGGOAPvcDeNSVg==" + }, + "node_modules/through2": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/through2/-/through2-2.0.5.tgz", + "integrity": "sha512-/mrRod8xqpA+IHSLyGCQ2s8SPHiCDEeQJSep1jqLYeEUClOFG2Qsh+4FU6G9VeqpZnGW/Su8LQGc4YKni5rYSQ==", + "dependencies": { + "readable-stream": "~2.3.6", + "xtend": "~4.0.1" + } + }, + "node_modules/time-fix-plugin": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/time-fix-plugin/-/time-fix-plugin-2.0.7.tgz", + "integrity": "sha512-uVFet1LQToeUX0rTcSiYVYVoGuBpc8gP/2jnlUzuHMHe+gux6XLsNzxLUweabMwiUj5ejhoIMsUI55nVSEa/Vw==", + "peerDependencies": { + "webpack": ">=4.0.0" + } + }, + "node_modules/timers-browserify": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.12.tgz", + "integrity": "sha512-9phl76Cqm6FhSX9Xe1ZUAMLtm1BLkKj2Qd5ApyWkXzsMRaA7dgr81kf4wJmQf/hAvg8EEyJxDo3du/0KlhPiKQ==", + "dependencies": { + "setimmediate": "^1.0.4" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmp": { + "version": "0.0.33", + "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.33.tgz", + "integrity": "sha512-jRCJlojKnZ3addtTOjdIqoRuPEKBvNXcGYqzO6zWZX8KfKEpnGY5jfggJQ3EjKuu8D4bJRr0y+cYJFmYbImXGw==", + "dependencies": { + "os-tmpdir": "~1.0.2" + }, + "engines": { + "node": ">=0.6.0" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-arraybuffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", + "integrity": "sha512-okFlQcoGTi4LQBG/PgSYblw9VOyptsz2KJZqc6qtgGdes8VktzUQkj4BI2blit072iS8VODNcMA+tvnS9dnuMA==" + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "engines": { + "node": ">=4" + } + }, + "node_modules/to-object-path": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", + "integrity": "sha512-9mWHdnGRuh3onocaHzukyvCZhzvr6tiflAy/JRFXcJX0TjgfWA9pk9t8CMbzmBE4Jfw58pXbkngtBtqYxzNEyg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-object-path/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", + "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", + "dependencies": { + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "regex-not": "^1.0.2", + "safe-regex": "^1.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "engines": { + "node": ">=0.6" + } + }, + "node_modules/totalist": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/totalist/-/totalist-3.0.1.tgz", + "integrity": "sha512-sf4i37nQ2LBx4m3wB74y+ubopq6W/dIzXg0FDGjsYnZHVa1Da8FH853wlL2gtUhg+xJXjfk3kUZS3BRoQeoQBQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==" + }, + "node_modules/ts-pnp": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/ts-pnp/-/ts-pnp-1.2.0.tgz", + "integrity": "sha512-csd+vJOb/gkzvcCHgTGSChYpy5f1/XKNsmvBGO4JXS+z1v2HobugDz4s1IeFXM3wZB44uczs+eazB5Q/ccdhQw==", + "engines": { + "node": ">=6" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==" + }, + "node_modules/tty-browserify": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", + "integrity": "sha512-JVa5ijo+j/sOoHGjw0sxw734b1LhBkQ3bvUGNdxnVXDCX81Yx7TFgnZygxrIIWn23hbfTaMYLwRmAxFyDuFmIw==" + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typedarray": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", + "integrity": "sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA==" + }, + "node_modules/ua-parser-js": { + "version": "1.0.37", + "resolved": "https://registry.npmjs.org/ua-parser-js/-/ua-parser-js-1.0.37.tgz", + "integrity": "sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/ua-parser-js" + }, + { + "type": "paypal", + "url": "https://paypal.me/faisalman" + }, + { + "type": "github", + "url": "https://github.com/sponsors/faisalman" + } + ], + "engines": { + "node": "*" + } + }, + "node_modules/ufo": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.3.2.tgz", + "integrity": "sha512-o+ORpgGwaYQXgqGDwd+hkS4PuZ3QnmqMMxRuajK/a38L6fTpcE5GPIfrf+L/KemFzfUpeUQc1rRS1iDBozvnFA==" + }, + "node_modules/uglify-js": { + "version": "3.17.4", + "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", + "integrity": "sha512-T9q82TJI9e/C1TAxYvfb16xO120tMVFZrGA3f9/P4424DNu6ypK103y0GPFVa17yotwSyZW5iYXgjYHkGrJW/g==", + "bin": { + "uglifyjs": "bin/uglifyjs" + }, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==" + }, + "node_modules/unfetch": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-5.0.0.tgz", + "integrity": "sha512-3xM2c89siXg0nHvlmYsQ2zkLASvVMBisZm5lF3gFDqfF2xonNStDJyMpvaOBe0a1Edxmqrf2E0HBdmy9QyZaeg==" + }, + "node_modules/unicode-canonical-property-names-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-canonical-property-names-ecmascript/-/unicode-canonical-property-names-ecmascript-2.0.0.tgz", + "integrity": "sha512-yY5PpDlfVIU5+y/BSCxAJRBIS1Zc2dDG3Ujq+sR0U+JjUevW2JhocOF+soROYDSaAezOzOKuyyixhD6mBknSmQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-ecmascript": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-ecmascript/-/unicode-match-property-ecmascript-2.0.0.tgz", + "integrity": "sha512-5kaZCrbp5mmbz5ulBkDkbY0SsPOjKqVS35VpL9ulMPfSl0J0Xsm+9Evphv9CoIZFwre7aJoa94AY6seMKGVN5Q==", + "dependencies": { + "unicode-canonical-property-names-ecmascript": "^2.0.0", + "unicode-property-aliases-ecmascript": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-match-property-value-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-match-property-value-ecmascript/-/unicode-match-property-value-ecmascript-2.1.0.tgz", + "integrity": "sha512-qxkjQt6qjg/mYscYMC0XKRn3Rh0wFPlfxB0xkt9CfyTvpX1Ra0+rAmdX2QyAobptSEvuy4RtpPRui6XkV+8wjA==", + "engines": { + "node": ">=4" + } + }, + "node_modules/unicode-property-aliases-ecmascript": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/unicode-property-aliases-ecmascript/-/unicode-property-aliases-ecmascript-2.1.0.tgz", + "integrity": "sha512-6t3foTQI9qne+OZoVQB/8x8rk2k1eVy1gRXhV3oFQ5T6R1dqQ1xtin3XqSlx3+ATBkliTaR/hHyJBm+LVPNM8w==", + "engines": { + "node": ">=4" + } + }, + "node_modules/union-value": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", + "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", + "dependencies": { + "arr-union": "^3.1.0", + "get-value": "^2.0.6", + "is-extendable": "^0.1.1", + "set-value": "^2.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/union-value/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/universalify": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.1.tgz", + "integrity": "sha512-gptHNQghINnc/vTGIk0SOFGFNXw7JVrlRUtConJRlvaw6DuX0wO5Jeko9sWrMBhh+PsYAZ7oXAiOnf/UKogyiw==", + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/unset-value": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", + "integrity": "sha512-PcA2tsuGSF9cnySLHTLSh2qrQiJ70mn+r+Glzxv2TWZblxsxCC52BDlZoPCsz7STd9pN7EZetkWZBAvk4cgZdQ==", + "dependencies": { + "has-value": "^0.3.1", + "isobject": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", + "integrity": "sha512-gpG936j8/MzaeID5Yif+577c17TxaDmhuyVgSwtnL/q8UUTySg8Mecb+8Cf1otgLoD7DDH75axp86ER7LFsf3Q==", + "dependencies": { + "get-value": "^2.0.3", + "has-values": "^0.1.4", + "isobject": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-value/node_modules/isobject": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", + "integrity": "sha512-+OUdGJlgjOBZDfxnDjYYG6zp487z0JGNQq3cYQYg5f5hKR+syHMsaztzGeml/4kGG55CSpKSpWTY+jYGgsHLgA==", + "dependencies": { + "isarray": "1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/unset-value/node_modules/has-values": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", + "integrity": "sha512-J8S0cEdWuQbqD9//tlZxiMuMNmxB8PlEwvYwuxsTmR1G5RXUePEX/SJn7aD0GMLieuZYSwNH0cQuJGwnYunXRQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/upath": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/upath/-/upath-2.0.1.tgz", + "integrity": "sha512-1uEe95xksV1O0CYKXo8vQvN1JEbtJp7lb7C5U9HMsIp6IVwntkH/oNUzyVNQSd4S1sYk2FpSSW44FqMc8qee5w==", + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/upper-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", + "integrity": "sha512-WRbjgmYzgXkCV7zNVpy5YgrHgbBv126rMALQQMrmzOVC4GM2waQ9x7xtm8VU+1yF2kWyPzI9zbZ48n4vSxwfSA==" + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/urix": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", + "integrity": "sha512-Am1ousAhSLBeB9cG/7k7r2R0zj50uDRlZHPGbazid5s9rlF1F/QKYObEKSIunSjIOkJZqwRRLpvewjEkM7pSqg==", + "deprecated": "Please see https://github.com/lydell/urix#deprecated" + }, + "node_modules/url": { + "version": "0.11.3", + "resolved": "https://registry.npmjs.org/url/-/url-0.11.3.tgz", + "integrity": "sha512-6hxOLGfZASQK/cijlZnZJTq8OXAkt/3YGfQX45vvMYXpZoo8NdWZcY73K108Jf759lS1Bv/8wXnHDTSz17dSRw==", + "dependencies": { + "punycode": "^1.4.1", + "qs": "^6.11.2" + } + }, + "node_modules/url-loader": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-4.1.1.tgz", + "integrity": "sha512-3BTV812+AVHHOJQO8O5MkWgZ5aosP7GnROJwvzLS9hWDj00lZ6Z0wNak423Lp9PBZN05N+Jk/N5Si8jRAlGyWA==", + "dependencies": { + "loader-utils": "^2.0.0", + "mime-types": "^2.1.27", + "schema-utils": "^3.0.0" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "file-loader": "*", + "webpack": "^4.0.0 || ^5.0.0" + }, + "peerDependenciesMeta": { + "file-loader": { + "optional": true + } + } + }, + "node_modules/url-loader/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/url/node_modules/punycode": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", + "integrity": "sha512-jmYNElW7yvO7TV33CjSmvSiE2yco3bV2czu/OzDKdMNVZQWfxCblURLhf+47syQRBntjfLdd/H0egrzIG+oaFQ==" + }, + "node_modules/use": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", + "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/util": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", + "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", + "dependencies": { + "inherits": "2.0.3" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==" + }, + "node_modules/util.promisify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/util.promisify/-/util.promisify-1.0.0.tgz", + "integrity": "sha512-i+6qA2MPhvoKLuxnJNpXAGhg7HphQOSUq2LKMZD0m15EiskXUkMvKdF4Uui0WYeCUGea+o2cw/ZuwehtfsrNkA==", + "dependencies": { + "define-properties": "^1.1.2", + "object.getownpropertydescriptors": "^2.0.3" + } + }, + "node_modules/util/node_modules/inherits": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", + "integrity": "sha512-x00IRNXNy63jwGkJmzPigoySHbaqpNuzKbBOmzK+g2OdZpQ9w+sxCN+VSB3ja7IAge2OP2qpfxTjeNcyjmW1uw==" + }, + "node_modules/utila": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/utila/-/utila-0.4.0.tgz", + "integrity": "sha512-Z0DbgELS9/L/75wZbro8xAnT50pBVFQZ+hUEueGDU5FN51YSCYM+jdxsfCiHjwNP/4LCDD0i/graKpeBnOXKRA==" + }, + "node_modules/utils-merge": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", + "integrity": "sha512-pMZTvIkT1d+TFGvDOqodOclx0QWkkgi6Tdoa8gC8ffGAAqz9pzPTZWAybbsHHoED/ztMtkv/VoYTYyShUn81hA==", + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/v8-to-istanbul": { + "version": "9.2.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.2.0.tgz", + "integrity": "sha512-/EH/sDgxU2eGxajKdwLCDmQ4FWq+kpi3uCmBGpw1xJtnAxEjlD8j8PEiGWpCIMIs3ciNAgH0d3TTJiUkYzyZjA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^2.0.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vm-browserify": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.2.tgz", + "integrity": "sha512-2ham8XPWTONajOR0ohOKOHXkm3+gaBmGut3SRuu75xLd/RRaY6vqgh8NBYYk7+RW3u5AtzPQZG8F10LHkl0lAQ==" + }, + "node_modules/vue": { + "version": "2.7.15", + "resolved": "https://registry.npmjs.org/vue/-/vue-2.7.15.tgz", + "integrity": "sha512-a29fsXd2G0KMRqIFTpRgpSbWaNBK3lpCTOLuGLEDnlHWdjB8fwl6zyYZ8xCrqkJdatwZb4mGHiEfJjnw0Q6AwQ==", + "dependencies": { + "@vue/compiler-sfc": "2.7.15", + "csstype": "^3.1.0" + } + }, + "node_modules/vue-analytics": { + "version": "5.22.1", + "resolved": "https://registry.npmjs.org/vue-analytics/-/vue-analytics-5.22.1.tgz", + "integrity": "sha512-HPKQMN7gfcUqS5SxoO0VxqLRRSPkG1H1FqglsHccz6BatBatNtm/Vyy8brApktZxNCfnAkrSVDpxg3/FNDeOgQ==", + "deprecated": "Sorry but vue-analytics is no longer maintained. I would suggest you switch to vue-gtag, with love, the guy who made the package." + }, + "node_modules/vue-chartjs": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/vue-chartjs/-/vue-chartjs-4.1.2.tgz", + "integrity": "sha512-QSggYjeFv/L4jFSBQpX8NzrAvX0B+Ha6nDgxkTG8tEXxYOOTwKI4phRLe+B4f+REnkmg7hgPY24R0cixZJyXBg==", + "peerDependencies": { + "chart.js": "^3.7.0", + "vue": "^3.0.0-0 || ^2.6.0" + } + }, + "node_modules/vue-client-only": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/vue-client-only/-/vue-client-only-2.1.0.tgz", + "integrity": "sha512-vKl1skEKn8EK9f8P2ZzhRnuaRHLHrlt1sbRmazlvsx6EiC3A8oWF8YCBrMJzoN+W3OnElwIGbVjsx6/xelY1AA==" + }, + "node_modules/vue-functional-data-merge": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/vue-functional-data-merge/-/vue-functional-data-merge-3.1.0.tgz", + "integrity": "sha512-leT4kdJVQyeZNY1kmnS1xiUlQ9z1B/kdBFCILIjYYQDqZgLqCLa0UhjSSeRX6c3mUe6U5qYeM8LrEqkHJ1B4LA==" + }, + "node_modules/vue-gtag": { + "version": "1.16.1", + "resolved": "https://registry.npmjs.org/vue-gtag/-/vue-gtag-1.16.1.tgz", + "integrity": "sha512-5vs0pSGxdqrfXqN1Qwt0ZFXG0iTYjRMu/saddc7QIC5yp+DKgjWQRpGYVa7Pq+KbThxwzzMfo0sGi7ISa6NowA==", + "peerDependencies": { + "vue": "^2.0.0" + } + }, + "node_modules/vue-hot-reload-api": { + "version": "2.3.4", + "resolved": "https://registry.npmjs.org/vue-hot-reload-api/-/vue-hot-reload-api-2.3.4.tgz", + "integrity": "sha512-BXq3jwIagosjgNVae6tkHzzIk6a8MHFtzAdwhnV5VlvPTFxDCvIttgSiHWjdGoTJvXtmRu5HacExfdarRcFhog==" + }, + "node_modules/vue-loader": { + "version": "15.11.1", + "resolved": "https://registry.npmjs.org/vue-loader/-/vue-loader-15.11.1.tgz", + "integrity": "sha512-0iw4VchYLePqJfJu9s62ACWUXeSqM30SQqlIftbYWM3C+jpPcEHKSPUZBLjSF9au4HTHQ/naF6OGnO3Q/qGR3Q==", + "dependencies": { + "@vue/component-compiler-utils": "^3.1.0", + "hash-sum": "^1.0.2", + "loader-utils": "^1.1.0", + "vue-hot-reload-api": "^2.3.0", + "vue-style-loader": "^4.1.0" + }, + "peerDependencies": { + "css-loader": "*", + "webpack": "^3.0.0 || ^4.1.0 || ^5.0.0-0" + }, + "peerDependenciesMeta": { + "cache-loader": { + "optional": true + }, + "prettier": { + "optional": true + }, + "vue-template-compiler": { + "optional": true + } + } + }, + "node_modules/vue-loader/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==" + }, + "node_modules/vue-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/vue-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/vue-meta": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/vue-meta/-/vue-meta-2.4.0.tgz", + "integrity": "sha512-XEeZUmlVeODclAjCNpWDnjgw+t3WA6gdzs6ENoIAgwO1J1d5p1tezDhtteLUFwcaQaTtayRrsx7GL6oXp/m2Jw==", + "dependencies": { + "deepmerge": "^4.2.2" + } + }, + "node_modules/vue-no-ssr": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/vue-no-ssr/-/vue-no-ssr-1.1.1.tgz", + "integrity": "sha512-ZMjqRpWabMPqPc7gIrG0Nw6vRf1+itwf0Itft7LbMXs2g3Zs/NFmevjZGN1x7K3Q95GmIjWbQZTVerxiBxI+0g==" + }, + "node_modules/vue-router": { + "version": "3.6.5", + "resolved": "https://registry.npmjs.org/vue-router/-/vue-router-3.6.5.tgz", + "integrity": "sha512-VYXZQLtjuvKxxcshuRAwjHnciqZVoXAjTjcqBTz4rKc8qih9g9pI3hbDjmqXaHdgL3v8pV6P8Z335XvHzESxLQ==" + }, + "node_modules/vue-server-renderer": { + "version": "2.7.15", + "resolved": "https://registry.npmjs.org/vue-server-renderer/-/vue-server-renderer-2.7.15.tgz", + "integrity": "sha512-5Wy6ls7ErawmgxlogoScTDOQzqBp4+B9CKV1Dl4280xVPBs1+iHpghW1nlKNd1JWKI3O2s4X4vwmg1C7Rvy7oA==", + "dependencies": { + "chalk": "^4.1.2", + "hash-sum": "^2.0.0", + "he": "^1.2.0", + "lodash.template": "^4.5.0", + "lodash.uniq": "^4.5.0", + "resolve": "^1.22.0", + "serialize-javascript": "^6.0.0", + "source-map": "0.5.6" + } + }, + "node_modules/vue-server-renderer/node_modules/source-map": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.6.tgz", + "integrity": "sha512-MjZkVp0NHr5+TPihLcadqnlVoGIoWo4IBHptutGh9wI3ttUYvCG26HkSuDi+K6lsZ25syXJXcctwgyVCt//xqA==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/vue-style-loader": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/vue-style-loader/-/vue-style-loader-4.1.3.tgz", + "integrity": "sha512-sFuh0xfbtpRlKfm39ss/ikqs9AbKCoXZBpHeVZ8Tx650o0k0q/YCM7FRvigtxpACezfq6af+a7JeqVTWvncqDg==", + "dependencies": { + "hash-sum": "^1.0.2", + "loader-utils": "^1.0.2" + } + }, + "node_modules/vue-style-loader/node_modules/hash-sum": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hash-sum/-/hash-sum-1.0.2.tgz", + "integrity": "sha512-fUs4B4L+mlt8/XAtSOGMUO1TXmAelItBPtJG7CyHJfYTdDjwisntGO2JQz7oUsatOY9o68+57eziUVNw/mRHmA==" + }, + "node_modules/vue-style-loader/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/vue-style-loader/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/vue-template-compiler": { + "version": "2.7.15", + "resolved": "https://registry.npmjs.org/vue-template-compiler/-/vue-template-compiler-2.7.15.tgz", + "integrity": "sha512-yQxjxMptBL7UAog00O8sANud99C6wJF+7kgbcwqkvA38vCGF7HWE66w0ZFnS/kX5gSoJr/PQ4/oS3Ne2pW37Og==", + "dependencies": { + "de-indent": "^1.0.2", + "he": "^1.2.0" + } + }, + "node_modules/vue-template-es2015-compiler": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/vue-template-es2015-compiler/-/vue-template-es2015-compiler-1.9.1.tgz", + "integrity": "sha512-4gDntzrifFnCEvyoO8PqyJDmguXgVPxKiIxrBKjIowvL9l+N66196+72XVYR8BBf1Uv1Fgt3bGevJ+sEmxfZzw==" + }, + "node_modules/vuex": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/vuex/-/vuex-3.6.2.tgz", + "integrity": "sha512-ETW44IqCgBpVomy520DT5jf8n0zoCac+sxWnn+hMe/CzaSejb/eVw2YToiXYX+Ex/AuHHia28vWTq4goAexFbw==", + "peerDependencies": { + "vue": "^2.0.0" + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/watchpack-chokidar2": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/watchpack-chokidar2/-/watchpack-chokidar2-2.0.1.tgz", + "integrity": "sha512-nCFfBIPKr5Sh61s4LPpy1Wtfi0HE8isJ3d2Yb5/Ppw2P2B/3eVSEBjKfN0fmHJSK14+31KwMKmcrzs2GM4P0Ww==", + "optional": true, + "dependencies": { + "chokidar": "^2.1.8" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", + "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", + "optional": true, + "dependencies": { + "micromatch": "^3.1.4", + "normalize-path": "^2.1.1" + } + }, + "node_modules/watchpack-chokidar2/node_modules/anymatch/node_modules/normalize-path": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", + "integrity": "sha512-3pKJwH184Xo/lnH6oyP1q2pMd7HcypqqmRs91/6/i2CGtWwIKGCkOOMTm/zXbgTEWHw1uNpNi/igc3ePOYHb6w==", + "optional": true, + "dependencies": { + "remove-trailing-separator": "^1.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/binary-extensions": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", + "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "optional": true, + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/chokidar": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", + "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", + "deprecated": "Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies", + "optional": true, + "dependencies": { + "anymatch": "^2.0.0", + "async-each": "^1.0.1", + "braces": "^2.3.2", + "glob-parent": "^3.1.0", + "inherits": "^2.0.3", + "is-binary-path": "^1.0.0", + "is-glob": "^4.0.0", + "normalize-path": "^3.0.0", + "path-is-absolute": "^1.0.0", + "readdirp": "^2.2.1", + "upath": "^1.1.1" + }, + "optionalDependencies": { + "fsevents": "^1.2.7" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "optional": true, + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "optional": true, + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/fsevents": { + "version": "1.2.13", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.13.tgz", + "integrity": "sha512-oWb1Z6mkHIskLzEJ/XWX0srkpkTQ7vaopMQkyaEIoq0fmtFVxOthb8cCxeT+p3ynTdkk/RZwbgG4brR5BeWECw==", + "deprecated": "The v1 package contains DANGEROUS / INSECURE binaries. Upgrade to safe fsevents v2", + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "dependencies": { + "bindings": "^1.5.0", + "nan": "^2.12.1" + }, + "engines": { + "node": ">= 4.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", + "integrity": "sha512-E8Ak/2+dZY6fnzlR7+ueWvhsH1SjHr4jjss4YS/h4py44jY9MhK/VFdaZJAWDz6BbL21KeteKxFSFpq8OS5gVA==", + "optional": true, + "dependencies": { + "is-glob": "^3.1.0", + "path-dirname": "^1.0.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/glob-parent/node_modules/is-glob": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", + "integrity": "sha512-UFpDDrPgM6qpnFNI+rh/p3bUaq9hKLZN8bMUWzxmcnZVS3omf4IPK+BrewlnWjO1WmUsMYuSjKh4UJuV4+Lqmw==", + "optional": true, + "dependencies": { + "is-extglob": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-binary-path": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", + "integrity": "sha512-9fRVlXc0uCxEDj1nQzaWONSpbTfx0FmJfzHF7pwlI8DkWGoHBBea4Pg5Ky0ojwwxQmnSifgbKkI06Qv0Ljgj+Q==", + "optional": true, + "dependencies": { + "binary-extensions": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "optional": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "optional": true, + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "optional": true, + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "optional": true, + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/readdirp": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", + "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", + "optional": true, + "dependencies": { + "graceful-fs": "^4.1.11", + "micromatch": "^3.1.10", + "readable-stream": "^2.0.2" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/watchpack-chokidar2/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "optional": true, + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/watchpack-chokidar2/node_modules/upath": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", + "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", + "optional": true, + "engines": { + "node": ">=4", + "yarn": "*" + } + }, + "node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==" + }, + "node_modules/webpack": { + "version": "4.47.0", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-4.47.0.tgz", + "integrity": "sha512-td7fYwgLSrky3fI1EuU5cneU4+pbH6GgOfuKNS1tNPcfdGinGELAqsb/BP4nnvZyKSG2i/xFGU7+n2PvZA8HJQ==", + "dependencies": { + "@webassemblyjs/ast": "1.9.0", + "@webassemblyjs/helper-module-context": "1.9.0", + "@webassemblyjs/wasm-edit": "1.9.0", + "@webassemblyjs/wasm-parser": "1.9.0", + "acorn": "^6.4.1", + "ajv": "^6.10.2", + "ajv-keywords": "^3.4.1", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^4.5.0", + "eslint-scope": "^4.0.3", + "json-parse-better-errors": "^1.0.2", + "loader-runner": "^2.4.0", + "loader-utils": "^1.2.3", + "memory-fs": "^0.4.1", + "micromatch": "^3.1.10", + "mkdirp": "^0.5.3", + "neo-async": "^2.6.1", + "node-libs-browser": "^2.2.1", + "schema-utils": "^1.0.0", + "tapable": "^1.1.3", + "terser-webpack-plugin": "^1.4.3", + "watchpack": "^1.7.4", + "webpack-sources": "^1.4.1" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=6.11.5" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + }, + "webpack-command": { + "optional": true + } + } + }, + "node_modules/webpack-bundle-analyzer": { + "version": "4.10.1", + "resolved": "https://registry.npmjs.org/webpack-bundle-analyzer/-/webpack-bundle-analyzer-4.10.1.tgz", + "integrity": "sha512-s3P7pgexgT/HTUSYgxJyn28A+99mmLq4HsJepMPzu0R8ImJc52QNqaFYW1Z2z2uIb1/J3eYgaAWVpaC+v/1aAQ==", + "dependencies": { + "@discoveryjs/json-ext": "0.5.7", + "acorn": "^8.0.4", + "acorn-walk": "^8.0.0", + "commander": "^7.2.0", + "debounce": "^1.2.1", + "escape-string-regexp": "^4.0.0", + "gzip-size": "^6.0.0", + "html-escaper": "^2.0.2", + "is-plain-object": "^5.0.0", + "opener": "^1.5.2", + "picocolors": "^1.0.0", + "sirv": "^2.0.3", + "ws": "^7.3.1" + }, + "bin": { + "webpack-bundle-analyzer": "lib/bin/analyzer.js" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/acorn": { + "version": "8.11.2", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.2.tgz", + "integrity": "sha512-nc0Axzp/0FILLEVsm4fNwLCwMttvhEI263QtVPQcbpfZZ3ts0hLsZGOpE6czNlid7CJ9MlyH8reXkpsf3YUY4w==", + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/commander": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz", + "integrity": "sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==", + "engines": { + "node": ">= 10" + } + }, + "node_modules/webpack-bundle-analyzer/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack-dev-middleware": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-5.3.3.tgz", + "integrity": "sha512-hj5CYrY0bZLB+eTO+x/j67Pkrquiy7kWepMHmUMoPsmcUaeEnQJqFzHJOyxgWlq746/wUuA64p9ta34Kyb01pA==", + "dependencies": { + "colorette": "^2.0.10", + "memfs": "^3.4.3", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^4.0.0 || ^5.0.0" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" + } + }, + "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==" + }, + "node_modules/webpack-dev-middleware/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", + "dependencies": { + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/webpack-hot-middleware": { + "version": "2.25.4", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.4.tgz", + "integrity": "sha512-IRmTspuHM06aZh98OhBJtqLpeWFM8FXJS5UYpKYxCJzyFoyWj1w6VGFfomZU7OPA55dMLrQK0pRT1eQ3PACr4w==", + "dependencies": { + "ansi-html-community": "0.0.8", + "html-entities": "^2.1.0", + "strip-ansi": "^6.0.0" + } + }, + "node_modules/webpack-node-externals": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/webpack-node-externals/-/webpack-node-externals-3.0.0.tgz", + "integrity": "sha512-LnL6Z3GGDPht/AigwRh2dvL9PQPFQ8skEpVrWZXLWBYmqcaojHNN0onvHzie6rq7EWKrrBfPYqNEzTJgiwEQDQ==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack-sources": { + "version": "1.4.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-1.4.3.tgz", + "integrity": "sha512-lgTS3Xhv1lCOKo7SA5TjKXMjpSM4sBjNV5+q2bqesbSPs5FjGmU6jjtBSkX9b4qW87vDIsCIlUPOEhbZrMdjeQ==", + "dependencies": { + "source-list-map": "^2.0.0", + "source-map": "~0.6.1" + } + }, + "node_modules/webpack/node_modules/braces": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", + "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", + "dependencies": { + "arr-flatten": "^1.1.0", + "array-unique": "^0.3.2", + "extend-shallow": "^2.0.1", + "fill-range": "^4.0.0", + "isobject": "^3.0.1", + "repeat-element": "^1.1.2", + "snapdragon": "^0.8.1", + "snapdragon-node": "^2.0.1", + "split-string": "^3.0.2", + "to-regex": "^3.0.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/braces/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/cacache": { + "version": "12.0.4", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-12.0.4.tgz", + "integrity": "sha512-a0tMB40oefvuInr4Cwb3GerbL9xTj1D5yg0T5xrjGCGyfvbxseIXX7BAO/u/hIXdafzOI5JC3wDwHyf24buOAQ==", + "dependencies": { + "bluebird": "^3.5.5", + "chownr": "^1.1.1", + "figgy-pudding": "^3.5.1", + "glob": "^7.1.4", + "graceful-fs": "^4.1.15", + "infer-owner": "^1.0.3", + "lru-cache": "^5.1.1", + "mississippi": "^3.0.0", + "mkdirp": "^0.5.1", + "move-concurrently": "^1.0.1", + "promise-inflight": "^1.0.1", + "rimraf": "^2.6.3", + "ssri": "^6.0.1", + "unique-filename": "^1.1.1", + "y18n": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/chownr": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-1.1.4.tgz", + "integrity": "sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==" + }, + "node_modules/webpack/node_modules/fill-range": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", + "integrity": "sha512-VcpLTWqWDiTerugjj8e3+esbg+skS3M9e54UuR3iCeIDMXCLTsAH8hTSzDQU/X6/6t3eYkOKoZSef2PlU6U1XQ==", + "dependencies": { + "extend-shallow": "^2.0.1", + "is-number": "^3.0.0", + "repeat-string": "^1.6.1", + "to-regex-range": "^2.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/fill-range/node_modules/extend-shallow": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", + "integrity": "sha512-zCnTtlxNoAiDc3gqY2aYAWFx7XWWiasuF2K8Me5WbN8otHKTUKBwjPtNpRs/rbUZm7KxWAaNj7P1a/p52GbVug==", + "dependencies": { + "is-extendable": "^0.1.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/is-extendable": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", + "integrity": "sha512-5BMULNob1vgFX6EjQw5izWDxrecWK9AM72rugNr0TFldMOi0fj6Jk+zeKIt0xGj4cEfQIJth4w3OKWOJ4f+AFw==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", + "integrity": "sha512-4cboCqIpliH+mAvFNegjZQ4kgKc3ZUhQVr3HvWbSh5q3WH2v82ct+T2Y1hdU5Gdtorx/cLifQjqCbL7bpznLTg==", + "dependencies": { + "kind-of": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/is-number/node_modules/kind-of": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", + "integrity": "sha512-NOW9QQXMoZGg/oqnVNoNTTIFEIid1627WCffUBJEdMxYApq7mNE7CpzucIPc+ZQg25Phej7IJSmX3hO+oblOtQ==", + "dependencies": { + "is-buffer": "^1.1.5" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/webpack/node_modules/loader-runner": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", + "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", + "engines": { + "node": ">=4.3.0 <5.0.0 || >=5.10" + } + }, + "node_modules/webpack/node_modules/loader-utils": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.4.2.tgz", + "integrity": "sha512-I5d00Pd/jwMD2QCduo657+YM/6L3KZu++pmX9VFncxaxvHcru9jx1lBaFft+r4Mt2jK0Yhp41XlRAihzPxHNCg==", + "dependencies": { + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^1.0.1" + }, + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/webpack/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/memory-fs": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", + "integrity": "sha512-cda4JKCxReDXFXRqOHPQscuIYg1PvxbE2S2GP45rnwfEK+vZaXC8C1OFvdHIbgw0DLzowXGVoxLaAmlgRy14GQ==", + "dependencies": { + "errno": "^0.1.3", + "readable-stream": "^2.0.1" + } + }, + "node_modules/webpack/node_modules/micromatch": { + "version": "3.1.10", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", + "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", + "dependencies": { + "arr-diff": "^4.0.0", + "array-unique": "^0.3.2", + "braces": "^2.3.1", + "define-property": "^2.0.2", + "extend-shallow": "^3.0.2", + "extglob": "^2.0.4", + "fragment-cache": "^0.2.1", + "kind-of": "^6.0.2", + "nanomatch": "^1.2.9", + "object.pick": "^1.3.0", + "regex-not": "^1.0.0", + "snapdragon": "^0.8.1", + "to-regex": "^3.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/webpack/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "engines": { + "node": ">=4" + } + }, + "node_modules/webpack/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/webpack/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + } + }, + "node_modules/webpack/node_modules/schema-utils": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-1.0.0.tgz", + "integrity": "sha512-i27Mic4KovM/lnGsy8whRCHhc7VicJajAjTrYg11K9zfZXnYIt4k5F+kZkwjnrhKzLic/HLU4j11mjsz2G/75g==", + "dependencies": { + "ajv": "^6.1.0", + "ajv-errors": "^1.0.0", + "ajv-keywords": "^3.1.0" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/webpack/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/webpack/node_modules/serialize-javascript": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-4.0.0.tgz", + "integrity": "sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==", + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/webpack/node_modules/ssri": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-6.0.2.tgz", + "integrity": "sha512-cepbSq/neFK7xB6A50KHN0xHDotYzq58wWCa5LeWqnPrHG8GzfEjO/4O8kpmcGW+oaxkvhEJCWgbgNk4/ZV93Q==", + "dependencies": { + "figgy-pudding": "^3.5.1" + } + }, + "node_modules/webpack/node_modules/terser-webpack-plugin": { + "version": "1.4.5", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-1.4.5.tgz", + "integrity": "sha512-04Rfe496lN8EYruwi6oPQkG0vo8C+HT49X687FZnpPF0qMAIHONI6HEXYPKDOE8e5HjXTyKfqRd/agHtH0kOtw==", + "dependencies": { + "cacache": "^12.0.2", + "find-cache-dir": "^2.1.0", + "is-wsl": "^1.1.0", + "schema-utils": "^1.0.0", + "serialize-javascript": "^4.0.0", + "source-map": "^0.6.1", + "terser": "^4.1.2", + "webpack-sources": "^1.4.0", + "worker-farm": "^1.7.0" + }, + "engines": { + "node": ">= 6.9.0" + }, + "peerDependencies": { + "webpack": "^4.0.0" + } + }, + "node_modules/webpack/node_modules/to-regex-range": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", + "integrity": "sha512-ZZWNfCjUokXXDGXFpZehJIkZqq91BcULFq/Pi7M5i4JnxXdhMKAK682z8bCW3o8Hj1wuuzoKcW3DfVzaP6VuNg==", + "dependencies": { + "is-number": "^3.0.0", + "repeat-string": "^1.6.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/webpack/node_modules/watchpack": { + "version": "1.7.5", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.7.5.tgz", + "integrity": "sha512-9P3MWk6SrKjHsGkLT2KHXdQ/9SNkyoJbabxnKOoJepsvJjJG8uYTR3yTPxPQvNDI3w4Nz1xnE0TLHK4RIVe/MQ==", + "dependencies": { + "graceful-fs": "^4.1.2", + "neo-async": "^2.5.0" + }, + "optionalDependencies": { + "chokidar": "^3.4.1", + "watchpack-chokidar2": "^2.0.1" + } + }, + "node_modules/webpack/node_modules/y18n": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-4.0.3.tgz", + "integrity": "sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==" + }, + "node_modules/webpackbar": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/webpackbar/-/webpackbar-5.0.2.tgz", + "integrity": "sha512-BmFJo7veBDgQzfWXl/wwYXr/VFus0614qZ8i9znqcl9fnEdiVkdbi0TedLQ6xAK92HZHDJ0QmyQ0fmuZPAgCYQ==", + "dependencies": { + "chalk": "^4.1.0", + "consola": "^2.15.3", + "pretty-time": "^1.1.0", + "std-env": "^3.0.1" + }, + "engines": { + "node": ">=12" + }, + "peerDependencies": { + "webpack": "3 || 4 || 5" + } + }, + "node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.13.tgz", + "integrity": "sha512-P5Nra0qjSncduVPEAr7xhoF5guty49ArDTwzJ/yNuPIbZppyRxFQsRCWrocxIY+CnMVG+qfbU2FmDKyvSGClow==", + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.4", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/widest-line": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", + "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", + "dependencies": { + "string-width": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/worker-farm": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/worker-farm/-/worker-farm-1.7.0.tgz", + "integrity": "sha512-rvw3QTZc8lAxyVrqcSGVm5yP/IJ2UcB3U0graE3LCFoZ0Yn2x4EoVSqJKdB/T5M+FLcRPjz4TDacRf3OCfNUzw==", + "dependencies": { + "errno": "~0.1.7" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==" + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/write-json-file": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/write-json-file/-/write-json-file-2.3.0.tgz", + "integrity": "sha512-84+F0igFp2dPD6UpAQjOUX3CdKUOqUzn6oE9sDBNzUXINR5VceJ1rauZltqQB/bcYsx3EpKys4C7/PivKUAiWQ==", + "dependencies": { + "detect-indent": "^5.0.0", + "graceful-fs": "^4.1.2", + "make-dir": "^1.0.0", + "pify": "^3.0.0", + "sort-keys": "^2.0.0", + "write-file-atomic": "^2.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-json-file/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/write-json-file/node_modules/make-dir": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-1.3.0.tgz", + "integrity": "sha512-2w31R7SJtieJJnQtGc7RVL2StM2vGYVfqUOvUDxH6bC6aJTxPxTF0GnIgCyu7tjockiUWAYQRbxa7vKn34s5sQ==", + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-json-file/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "engines": { + "node": ">=4" + } + }, + "node_modules/write-json-file/node_modules/sort-keys": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-2.0.0.tgz", + "integrity": "sha512-/dPCrG1s3ePpWm6yBbxZq5Be1dXGLyLn9Z791chDC3NFrpkVbWGzkBwPN1knaciexFXgRJ7hzdnwZ4stHSDmjg==", + "dependencies": { + "is-plain-obj": "^1.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/write-json-file/node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" + } + }, + "node_modules/ws": { + "version": "7.5.9", + "resolved": "https://registry.npmjs.org/ws/-/ws-7.5.9.tgz", + "integrity": "sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==", + "engines": { + "node": ">=8.3.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": "^5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/xtend": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", + "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", + "engines": { + "node": ">=0.4" + } + }, + "node_modules/xxhashjs": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/xxhashjs/-/xxhashjs-0.2.2.tgz", + "integrity": "sha512-AkTuIuVTET12tpsVIQo+ZU6f/qDmKuRUcjaqR+OIvm+aCBsZ95i7UVY5WJ9TMsSaZ0DA2WxoZ4acu0sPH+OKAw==", + "dependencies": { + "cuint": "^0.2.2" + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==" + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/pvtoolsOld/package.json b/pvtoolsOld/package.json new file mode 100644 index 0000000..ae89921 --- /dev/null +++ b/pvtoolsOld/package.json @@ -0,0 +1,36 @@ +{ + "name": "pvtools", + "version": "1.0.0", + "private": true, + "scripts": { + "dev": "nuxt", + "build": "nuxt build", + "start": "nuxt start", + "generate": "nuxt generate", + "test": "jest --watch" + }, + "dependencies": { + "@fortawesome/fontawesome-svg-core": "^6.5.1", + "@fortawesome/free-solid-svg-icons": "^6.5.1", + "@fortawesome/vue-fontawesome": "^2.0.10", + "@nuxtjs/axios": "^5.13.6", + "@nuxtjs/google-analytics": "^2.4.0", + "bootstrap": "^4.6.2", + "bootstrap-vue": "^2.21.2", + "chart.js": "^3.9.1", + "core-js": "^3.34.0", + "nuxt": "^2.17.2", + "papaparse": "^5.4.1", + "vue": "^2.7.15", + "vue-chartjs": "^4.1.2", + "vue-gtag": "^1.16.1", + "vue-server-renderer": "^2.7.15", + "vue-template-compiler": "^2.7.15", + "webpack": "^4.47.0" + }, + "devDependencies": { + "csv-parse": "^5.5.2", + "jest": "^28.1.3", + "prettier": "^3.1.1" + } +} diff --git a/pvtools/pages/consumptionProfiles/index.vue b/pvtoolsOld/pages/consumptionProfiles/index.vue similarity index 100% rename from pvtools/pages/consumptionProfiles/index.vue rename to pvtoolsOld/pages/consumptionProfiles/index.vue diff --git a/pvtoolsOld/pages/impress/index.vue b/pvtoolsOld/pages/impress/index.vue new file mode 100644 index 0000000..24f754c --- /dev/null +++ b/pvtoolsOld/pages/impress/index.vue @@ -0,0 +1,767 @@ + + diff --git a/pvtools/pages/index.vue b/pvtoolsOld/pages/index.vue similarity index 54% rename from pvtools/pages/index.vue rename to pvtoolsOld/pages/index.vue index 5c631b3..a9a621f 100644 --- a/pvtools/pages/index.vue +++ b/pvtoolsOld/pages/index.vue @@ -81,7 +81,7 @@ versuchen Sie es erneut. @@ -91,7 +91,7 @@ type="number" step="1" /> - Es wird ein individueller Verbrauch genutzt @@ -282,7 +282,7 @@ {{ 'Vorlage herunterladen für das o.g. Vergleichsjahr ' + - this.input.year + input.year }} {{ this.importCsvErrorMessage }}{{ importCsvErrorMessage }} Aktiviere CSV Datei Deaktiviere Datei @@ -617,7 +617,7 @@ -